azalea/Cargo.lock

2283 lines
53 KiB
Text
Raw Normal View History

2021-12-06 06:28:40 +00:00
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
2021-12-17 05:33:06 +00:00
[[package]]
name = "adler"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
2022-04-25 00:28:29 +00:00
[[package]]
name = "aes"
2022-04-30 01:20:56 +00:00
version = "0.8.1"
2022-04-25 00:28:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-30 01:20:56 +00:00
checksum = "bfe0133578c0986e1fe3dfcd4af1cc5b2dd6c3dbf534d69916ce16a2701d40ba"
2022-04-25 00:28:29 +00:00
dependencies = [
"cfg-if",
"cipher",
"cpufeatures",
]
[[package]]
name = "ahash"
Physics (#11) * Put physics module in azalea-entity * port aabb * add more stuff to PositionXYZ * azalea-physics * important collision things * more physics stuff * backup because i'm about to delete shapes * more shape stuff * CubeVoxelShape * no compile errors??? insane * impl VoxelShape for ArrayVoxelShape * Shapes stuff * collide_x but it doesn't work yet * binary_search * it compiles * Entity has bounding box * Update discrete_voxel_shape.rs * Entity::make_bounding_box * ok i'm about to merge az-entity and az-world might be a terrible idea which is why i'm committing first * ok so i moved entity to world * on_pos and move_entity compiles * add send_position * move collision stuff to collision module in az-physics * dimension is no longer an Option * start trying to do collision for the client * collision works :tada: * start adding palette resizing * get_and_set (pain) * it compiles but probably won't work * add a test * remove printlns * add more tests for palette stuff * ClientboundMoveVec3Packet -> ClientboundMoveEntityPosPacket i think i changed this on accident once * palette resizing works todo: remove the printlns * Remove printlns in palette.rs * fix issues from merge * fixes + work a bit more on physics * Better entities (#19) * well it compiles * add tests to entity storage * add suggestions in azalea-brigadier * this probably causes ub * fix brigadiersuggestions * get rid of entityid * test From<EntityMut> for EntityRef * don't mention other libraries since there's too many * fix warnings * do todos in brigadier suggestions * work on physics * more physics stuff * remove trait feature on az-block i think rust gets confused and compiles the macro without the feature * bump ahash * aes tests in az-crypto * optimize aes's deps * fix crashes * fix section_index for negative numbers and test * fix BlockPos protocol implementation * remove some debug prints * prepare to add ai_step * make ai step work * clippy
2022-08-30 01:41:01 +00:00
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
Physics (#11) * Put physics module in azalea-entity * port aabb * add more stuff to PositionXYZ * azalea-physics * important collision things * more physics stuff * backup because i'm about to delete shapes * more shape stuff * CubeVoxelShape * no compile errors??? insane * impl VoxelShape for ArrayVoxelShape * Shapes stuff * collide_x but it doesn't work yet * binary_search * it compiles * Entity has bounding box * Update discrete_voxel_shape.rs * Entity::make_bounding_box * ok i'm about to merge az-entity and az-world might be a terrible idea which is why i'm committing first * ok so i moved entity to world * on_pos and move_entity compiles * add send_position * move collision stuff to collision module in az-physics * dimension is no longer an Option * start trying to do collision for the client * collision works :tada: * start adding palette resizing * get_and_set (pain) * it compiles but probably won't work * add a test * remove printlns * add more tests for palette stuff * ClientboundMoveVec3Packet -> ClientboundMoveEntityPosPacket i think i changed this on accident once * palette resizing works todo: remove the printlns * Remove printlns in palette.rs * fix issues from merge * fixes + work a bit more on physics * Better entities (#19) * well it compiles * add tests to entity storage * add suggestions in azalea-brigadier * this probably causes ub * fix brigadiersuggestions * get rid of entityid * test From<EntityMut> for EntityRef * don't mention other libraries since there's too many * fix warnings * do todos in brigadier suggestions * work on physics * more physics stuff * remove trait feature on az-block i think rust gets confused and compiles the macro without the feature * bump ahash * aes tests in az-crypto * optimize aes's deps * fix crashes * fix section_index for negative numbers and test * fix BlockPos protocol implementation * remove some debug prints * prepare to add ai_step * make ai step work * clippy
2022-08-30 01:41:01 +00:00
checksum = "57e6e951cfbb2db8de1828d49073a113a29fd7117b1596caa781a258c7e38d72"
dependencies = [
Physics (#11) * Put physics module in azalea-entity * port aabb * add more stuff to PositionXYZ * azalea-physics * important collision things * more physics stuff * backup because i'm about to delete shapes * more shape stuff * CubeVoxelShape * no compile errors??? insane * impl VoxelShape for ArrayVoxelShape * Shapes stuff * collide_x but it doesn't work yet * binary_search * it compiles * Entity has bounding box * Update discrete_voxel_shape.rs * Entity::make_bounding_box * ok i'm about to merge az-entity and az-world might be a terrible idea which is why i'm committing first * ok so i moved entity to world * on_pos and move_entity compiles * add send_position * move collision stuff to collision module in az-physics * dimension is no longer an Option * start trying to do collision for the client * collision works :tada: * start adding palette resizing * get_and_set (pain) * it compiles but probably won't work * add a test * remove printlns * add more tests for palette stuff * ClientboundMoveVec3Packet -> ClientboundMoveEntityPosPacket i think i changed this on accident once * palette resizing works todo: remove the printlns * Remove printlns in palette.rs * fix issues from merge * fixes + work a bit more on physics * Better entities (#19) * well it compiles * add tests to entity storage * add suggestions in azalea-brigadier * this probably causes ub * fix brigadiersuggestions * get rid of entityid * test From<EntityMut> for EntityRef * don't mention other libraries since there's too many * fix warnings * do todos in brigadier suggestions * work on physics * more physics stuff * remove trait feature on az-block i think rust gets confused and compiles the macro without the feature * bump ahash * aes tests in az-crypto * optimize aes's deps * fix crashes * fix section_index for negative numbers and test * fix BlockPos protocol implementation * remove some debug prints * prepare to add ai_step * make ai step work * clippy
2022-08-30 01:41:01 +00:00
"cfg-if",
"getrandom",
"once_cell",
"version_check",
]
2022-09-20 04:05:05 +00:00
[[package]]
name = "aho-corasick"
version = "0.7.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b4f55bd91a0978cbfd91c457a164bab8b4001c833b7f323132c0a4e1922dd44e"
dependencies = [
"memchr",
]
[[package]]
name = "anyhow"
2022-09-20 04:05:05 +00:00
version = "1.0.65"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-20 04:05:05 +00:00
checksum = "98161a4e3e2184da77bb14f02184cdd111e83bbbcc9979dfee3c44b9a85f5602"
2021-12-17 05:33:06 +00:00
[[package]]
name = "async-compression"
2022-05-27 05:23:55 +00:00
version = "0.3.14"
2021-12-17 05:33:06 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-27 05:23:55 +00:00
checksum = "345fd392ab01f746c717b1357165b76f0b67a60192007b234058c9045fdcf695"
2021-12-17 05:33:06 +00:00
dependencies = [
"flate2",
"futures-core",
"memchr",
"pin-project-lite",
"tokio",
]
2021-12-06 06:28:40 +00:00
[[package]]
name = "async-recursion"
2022-06-24 09:08:38 +00:00
version = "1.0.0"
2021-12-06 06:28:40 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-24 09:08:38 +00:00
checksum = "2cda8f4bcc10624c4e85bc66b3f452cca98cfa5ca002dc83a16aad2367641bea"
2021-12-06 06:28:40 +00:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "async-trait"
version = "0.1.57"
2021-12-06 06:28:40 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "76464446b8bc32758d7e88ee1a804d9914cd9b1cb264c029899680b0be29826f"
2021-12-06 06:28:40 +00:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
2021-12-19 19:07:54 +00:00
[[package]]
name = "atty"
version = "0.2.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
dependencies = [
"hermit-abi",
"libc",
"winapi",
]
2021-12-06 06:28:40 +00:00
[[package]]
name = "autocfg"
2022-04-29 05:40:47 +00:00
version = "1.1.0"
2021-12-06 06:28:40 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-29 05:40:47 +00:00
checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
2021-12-06 06:28:40 +00:00
2022-09-05 15:38:40 +00:00
[[package]]
name = "azalea"
version = "0.1.0"
dependencies = [
"anyhow",
"async-trait",
2022-10-02 20:02:27 +00:00
"azalea-client",
"azalea-protocol",
"env_logger",
"parking_lot 0.12.1",
"thiserror",
"tokio",
]
2022-09-05 15:38:40 +00:00
2021-12-16 23:51:05 +00:00
[[package]]
name = "azalea-auth"
version = "0.1.0"
dependencies = [
"azalea-buf",
"azalea-crypto",
"chrono",
"env_logger",
"log",
"num-bigint",
"reqwest",
"serde",
"serde_json",
"thiserror",
"tokio",
2021-12-16 23:51:05 +00:00
"uuid",
]
2022-05-27 21:04:22 +00:00
[[package]]
name = "azalea-block"
version = "0.1.0"
2022-05-28 00:34:09 +00:00
dependencies = [
"azalea-block-macros",
2022-09-05 16:44:48 +00:00
"azalea-buf",
]
[[package]]
name = "azalea-block-macros"
version = "0.1.0"
dependencies = [
"proc-macro2",
"quote",
"syn",
2022-05-28 00:34:09 +00:00
]
2022-05-27 21:04:22 +00:00
2022-01-09 06:14:39 +00:00
[[package]]
name = "azalea-brigadier"
version = "0.1.0"
2022-06-23 20:12:17 +00:00
[[package]]
name = "azalea-buf"
version = "0.1.0"
dependencies = [
2022-08-30 02:14:42 +00:00
"azalea-buf-macros",
2022-06-23 20:12:17 +00:00
"byteorder",
"serde_json",
"thiserror",
2022-06-23 20:12:17 +00:00
"tokio",
2022-06-24 00:17:04 +00:00
"uuid",
2022-06-23 20:12:17 +00:00
]
2022-08-30 02:14:42 +00:00
[[package]]
name = "azalea-buf-macros"
version = "0.1.0"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
2021-12-16 05:10:55 +00:00
[[package]]
name = "azalea-chat"
version = "0.1.1"
2021-12-16 05:10:55 +00:00
dependencies = [
2022-06-23 20:12:17 +00:00
"azalea-buf",
2022-05-08 23:38:22 +00:00
"azalea-language",
2021-12-16 05:10:55 +00:00
"lazy_static",
"serde",
"serde_json",
]
[[package]]
name = "azalea-client"
version = "0.1.0"
dependencies = [
"anyhow",
2022-04-25 00:28:29 +00:00
"azalea-auth",
Physics (#11) * Put physics module in azalea-entity * port aabb * add more stuff to PositionXYZ * azalea-physics * important collision things * more physics stuff * backup because i'm about to delete shapes * more shape stuff * CubeVoxelShape * no compile errors??? insane * impl VoxelShape for ArrayVoxelShape * Shapes stuff * collide_x but it doesn't work yet * binary_search * it compiles * Entity has bounding box * Update discrete_voxel_shape.rs * Entity::make_bounding_box * ok i'm about to merge az-entity and az-world might be a terrible idea which is why i'm committing first * ok so i moved entity to world * on_pos and move_entity compiles * add send_position * move collision stuff to collision module in az-physics * dimension is no longer an Option * start trying to do collision for the client * collision works :tada: * start adding palette resizing * get_and_set (pain) * it compiles but probably won't work * add a test * remove printlns * add more tests for palette stuff * ClientboundMoveVec3Packet -> ClientboundMoveEntityPosPacket i think i changed this on accident once * palette resizing works todo: remove the printlns * Remove printlns in palette.rs * fix issues from merge * fixes + work a bit more on physics * Better entities (#19) * well it compiles * add tests to entity storage * add suggestions in azalea-brigadier * this probably causes ub * fix brigadiersuggestions * get rid of entityid * test From<EntityMut> for EntityRef * don't mention other libraries since there's too many * fix warnings * do todos in brigadier suggestions * work on physics * more physics stuff * remove trait feature on az-block i think rust gets confused and compiles the macro without the feature * bump ahash * aes tests in az-crypto * optimize aes's deps * fix crashes * fix section_index for negative numbers and test * fix BlockPos protocol implementation * remove some debug prints * prepare to add ai_step * make ai step work * clippy
2022-08-30 01:41:01 +00:00
"azalea-block",
2022-09-05 06:04:16 +00:00
"azalea-chat",
"azalea-core",
"azalea-crypto",
Physics (#11) * Put physics module in azalea-entity * port aabb * add more stuff to PositionXYZ * azalea-physics * important collision things * more physics stuff * backup because i'm about to delete shapes * more shape stuff * CubeVoxelShape * no compile errors??? insane * impl VoxelShape for ArrayVoxelShape * Shapes stuff * collide_x but it doesn't work yet * binary_search * it compiles * Entity has bounding box * Update discrete_voxel_shape.rs * Entity::make_bounding_box * ok i'm about to merge az-entity and az-world might be a terrible idea which is why i'm committing first * ok so i moved entity to world * on_pos and move_entity compiles * add send_position * move collision stuff to collision module in az-physics * dimension is no longer an Option * start trying to do collision for the client * collision works :tada: * start adding palette resizing * get_and_set (pain) * it compiles but probably won't work * add a test * remove printlns * add more tests for palette stuff * ClientboundMoveVec3Packet -> ClientboundMoveEntityPosPacket i think i changed this on accident once * palette resizing works todo: remove the printlns * Remove printlns in palette.rs * fix issues from merge * fixes + work a bit more on physics * Better entities (#19) * well it compiles * add tests to entity storage * add suggestions in azalea-brigadier * this probably causes ub * fix brigadiersuggestions * get rid of entityid * test From<EntityMut> for EntityRef * don't mention other libraries since there's too many * fix warnings * do todos in brigadier suggestions * work on physics * more physics stuff * remove trait feature on az-block i think rust gets confused and compiles the macro without the feature * bump ahash * aes tests in az-crypto * optimize aes's deps * fix crashes * fix section_index for negative numbers and test * fix BlockPos protocol implementation * remove some debug prints * prepare to add ai_step * make ai step work * clippy
2022-08-30 01:41:01 +00:00
"azalea-physics",
2021-12-16 05:10:55 +00:00
"azalea-protocol",
2022-05-02 23:07:06 +00:00
"azalea-world",
2022-09-19 19:53:16 +00:00
"log",
"parking_lot 0.12.1",
"thiserror",
2022-04-29 05:40:47 +00:00
"tokio",
2022-06-25 04:10:59 +00:00
"uuid",
2021-12-16 05:10:55 +00:00
]
[[package]]
name = "azalea-core"
version = "0.1.0"
dependencies = [
2022-06-23 20:12:17 +00:00
"azalea-buf",
2021-12-18 16:04:10 +00:00
"azalea-chat",
2022-04-26 15:13:47 +00:00
"azalea-nbt",
2021-12-16 05:10:55 +00:00
"uuid",
]
[[package]]
name = "azalea-crypto"
version = "0.1.0"
dependencies = [
"aes",
2022-06-23 20:12:17 +00:00
"azalea-buf",
"cfb8",
2022-08-28 20:08:43 +00:00
"criterion",
"num-bigint",
"rand",
"rsa_public_encrypt_pkcs1",
"sha-1",
2022-07-11 04:43:09 +00:00
"uuid",
]
2022-05-08 23:38:22 +00:00
[[package]]
name = "azalea-language"
version = "0.1.0"
dependencies = [
"lazy_static",
"serde",
"serde_json",
]
2021-12-18 23:02:23 +00:00
[[package]]
name = "azalea-nbt"
version = "0.1.0"
dependencies = [
"ahash",
2022-06-23 20:12:17 +00:00
"azalea-buf",
2021-12-18 23:02:23 +00:00
"byteorder",
2021-12-19 19:07:54 +00:00
"criterion",
2021-12-19 02:33:16 +00:00
"flate2",
2021-12-18 23:02:23 +00:00
"num-derive",
"num-traits",
]
Physics (#11) * Put physics module in azalea-entity * port aabb * add more stuff to PositionXYZ * azalea-physics * important collision things * more physics stuff * backup because i'm about to delete shapes * more shape stuff * CubeVoxelShape * no compile errors??? insane * impl VoxelShape for ArrayVoxelShape * Shapes stuff * collide_x but it doesn't work yet * binary_search * it compiles * Entity has bounding box * Update discrete_voxel_shape.rs * Entity::make_bounding_box * ok i'm about to merge az-entity and az-world might be a terrible idea which is why i'm committing first * ok so i moved entity to world * on_pos and move_entity compiles * add send_position * move collision stuff to collision module in az-physics * dimension is no longer an Option * start trying to do collision for the client * collision works :tada: * start adding palette resizing * get_and_set (pain) * it compiles but probably won't work * add a test * remove printlns * add more tests for palette stuff * ClientboundMoveVec3Packet -> ClientboundMoveEntityPosPacket i think i changed this on accident once * palette resizing works todo: remove the printlns * Remove printlns in palette.rs * fix issues from merge * fixes + work a bit more on physics * Better entities (#19) * well it compiles * add tests to entity storage * add suggestions in azalea-brigadier * this probably causes ub * fix brigadiersuggestions * get rid of entityid * test From<EntityMut> for EntityRef * don't mention other libraries since there's too many * fix warnings * do todos in brigadier suggestions * work on physics * more physics stuff * remove trait feature on az-block i think rust gets confused and compiles the macro without the feature * bump ahash * aes tests in az-crypto * optimize aes's deps * fix crashes * fix section_index for negative numbers and test * fix BlockPos protocol implementation * remove some debug prints * prepare to add ai_step * make ai step work * clippy
2022-08-30 01:41:01 +00:00
[[package]]
name = "azalea-physics"
version = "0.1.0"
dependencies = [
"azalea-block",
"azalea-core",
"azalea-world",
All block shapes & collisions (#22) * start adding shapes * add more collision stuff * DiscreteCubeMerger * more mergers * start adding BitSetDiscreteVoxelShape::join * i love rust :smiley: :smiley: :smiley: * r * IT COMPILES???? * fix warning * fix error * fix more clippy issues * add box_shape * more shape stuff * make DiscreteVoxelShape an enum * Update shape.rs * also make VoxelShape an enum * implement BitSet::clear * add more missing things * it compiles W * start block shape codegen * optimize shape codegen * make az-block/blocks.rs look better (broken) * almost new block macro * make the codegen not generate 'type' * try to fix * work more on the blocks macro * wait it compiles * fix clippy issues * shapes codegen works * well it's almost working * simplify some shape codegen * enum type names are correct * W it compiles * cargo check no longer warns * fix some clippy issues * start making it so the shape impl is on BlockStates * insane code * new impl compiles * fix wrong find_bits + TESTS PASS! * add a test for slab collision * fix clippy issues * ok rust * fix error that happens when on stairs * add test for top slabs * start adding join_is_not_empty * add more to join_is_not_empty * top slabs still don't work!! * x..=0 doesn't work in rust :smiley: :smiley: :smiley: :smiley: :smiley: :smiley: :smiley: :smiley: :smiley: :smiley: :smiley: :smiley: :smiley: :smiley: * remove comment since i added more useful names * remove some printlns * fix walls in some configurations erroring * fix some warnings * change comment to \`\`\`ignore instead of \`\`\`no_run * players are .6 wide not .8 * fix clippy's complaints * i missed one clippy warning
2022-10-02 17:29:47 +00:00
"lazy_static",
2022-08-31 20:11:34 +00:00
"uuid",
Physics (#11) * Put physics module in azalea-entity * port aabb * add more stuff to PositionXYZ * azalea-physics * important collision things * more physics stuff * backup because i'm about to delete shapes * more shape stuff * CubeVoxelShape * no compile errors??? insane * impl VoxelShape for ArrayVoxelShape * Shapes stuff * collide_x but it doesn't work yet * binary_search * it compiles * Entity has bounding box * Update discrete_voxel_shape.rs * Entity::make_bounding_box * ok i'm about to merge az-entity and az-world might be a terrible idea which is why i'm committing first * ok so i moved entity to world * on_pos and move_entity compiles * add send_position * move collision stuff to collision module in az-physics * dimension is no longer an Option * start trying to do collision for the client * collision works :tada: * start adding palette resizing * get_and_set (pain) * it compiles but probably won't work * add a test * remove printlns * add more tests for palette stuff * ClientboundMoveVec3Packet -> ClientboundMoveEntityPosPacket i think i changed this on accident once * palette resizing works todo: remove the printlns * Remove printlns in palette.rs * fix issues from merge * fixes + work a bit more on physics * Better entities (#19) * well it compiles * add tests to entity storage * add suggestions in azalea-brigadier * this probably causes ub * fix brigadiersuggestions * get rid of entityid * test From<EntityMut> for EntityRef * don't mention other libraries since there's too many * fix warnings * do todos in brigadier suggestions * work on physics * more physics stuff * remove trait feature on az-block i think rust gets confused and compiles the macro without the feature * bump ahash * aes tests in az-crypto * optimize aes's deps * fix crashes * fix section_index for negative numbers and test * fix BlockPos protocol implementation * remove some debug prints * prepare to add ai_step * make ai step work * clippy
2022-08-30 01:41:01 +00:00
]
2021-12-16 05:10:55 +00:00
[[package]]
name = "azalea-protocol"
version = "0.1.0"
dependencies = [
2021-12-17 05:33:06 +00:00
"async-compression",
2021-12-16 05:10:55 +00:00
"async-recursion",
2021-12-16 23:51:05 +00:00
"azalea-auth",
2022-09-05 16:44:48 +00:00
"azalea-block",
"azalea-brigadier",
2022-06-23 20:12:17 +00:00
"azalea-buf",
2021-12-16 05:10:55 +00:00
"azalea-chat",
2021-12-16 23:51:05 +00:00
"azalea-core",
"azalea-crypto",
2021-12-20 21:22:02 +00:00
"azalea-nbt",
"azalea-protocol-macros",
2022-09-05 16:44:48 +00:00
"azalea-registry",
Physics (#11) * Put physics module in azalea-entity * port aabb * add more stuff to PositionXYZ * azalea-physics * important collision things * more physics stuff * backup because i'm about to delete shapes * more shape stuff * CubeVoxelShape * no compile errors??? insane * impl VoxelShape for ArrayVoxelShape * Shapes stuff * collide_x but it doesn't work yet * binary_search * it compiles * Entity has bounding box * Update discrete_voxel_shape.rs * Entity::make_bounding_box * ok i'm about to merge az-entity and az-world might be a terrible idea which is why i'm committing first * ok so i moved entity to world * on_pos and move_entity compiles * add send_position * move collision stuff to collision module in az-physics * dimension is no longer an Option * start trying to do collision for the client * collision works :tada: * start adding palette resizing * get_and_set (pain) * it compiles but probably won't work * add a test * remove printlns * add more tests for palette stuff * ClientboundMoveVec3Packet -> ClientboundMoveEntityPosPacket i think i changed this on accident once * palette resizing works todo: remove the printlns * Remove printlns in palette.rs * fix issues from merge * fixes + work a bit more on physics * Better entities (#19) * well it compiles * add tests to entity storage * add suggestions in azalea-brigadier * this probably causes ub * fix brigadiersuggestions * get rid of entityid * test From<EntityMut> for EntityRef * don't mention other libraries since there's too many * fix warnings * do todos in brigadier suggestions * work on physics * more physics stuff * remove trait feature on az-block i think rust gets confused and compiles the macro without the feature * bump ahash * aes tests in az-crypto * optimize aes's deps * fix crashes * fix section_index for negative numbers and test * fix BlockPos protocol implementation * remove some debug prints * prepare to add ai_step * make ai step work * clippy
2022-08-30 01:41:01 +00:00
"azalea-world",
2021-12-16 05:10:55 +00:00
"byteorder",
"bytes",
"flate2",
"futures",
"futures-util",
2022-09-09 19:27:59 +00:00
"log",
2021-12-16 05:10:55 +00:00
"serde",
"serde_json",
2022-06-25 05:13:00 +00:00
"thiserror",
2021-12-16 05:10:55 +00:00
"tokio",
2022-06-25 05:13:00 +00:00
"tokio-util",
2021-12-16 05:10:55 +00:00
"trust-dns-resolver",
2021-12-16 23:55:45 +00:00
"uuid",
2021-12-16 05:10:55 +00:00
]
[[package]]
name = "azalea-protocol-macros"
version = "0.1.0"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "azalea-registry"
version = "0.1.0"
dependencies = [
2022-09-05 16:44:48 +00:00
"azalea-buf",
"azalea-registry-macros",
]
[[package]]
name = "azalea-registry-macros"
version = "0.1.0"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
2022-05-01 23:59:07 +00:00
[[package]]
name = "azalea-world"
version = "0.1.0"
2022-05-02 05:24:29 +00:00
dependencies = [
2022-06-17 04:38:51 +00:00
"azalea-block",
2022-06-24 00:17:04 +00:00
"azalea-buf",
Physics (#11) * Put physics module in azalea-entity * port aabb * add more stuff to PositionXYZ * azalea-physics * important collision things * more physics stuff * backup because i'm about to delete shapes * more shape stuff * CubeVoxelShape * no compile errors??? insane * impl VoxelShape for ArrayVoxelShape * Shapes stuff * collide_x but it doesn't work yet * binary_search * it compiles * Entity has bounding box * Update discrete_voxel_shape.rs * Entity::make_bounding_box * ok i'm about to merge az-entity and az-world might be a terrible idea which is why i'm committing first * ok so i moved entity to world * on_pos and move_entity compiles * add send_position * move collision stuff to collision module in az-physics * dimension is no longer an Option * start trying to do collision for the client * collision works :tada: * start adding palette resizing * get_and_set (pain) * it compiles but probably won't work * add a test * remove printlns * add more tests for palette stuff * ClientboundMoveVec3Packet -> ClientboundMoveEntityPosPacket i think i changed this on accident once * palette resizing works todo: remove the printlns * Remove printlns in palette.rs * fix issues from merge * fixes + work a bit more on physics * Better entities (#19) * well it compiles * add tests to entity storage * add suggestions in azalea-brigadier * this probably causes ub * fix brigadiersuggestions * get rid of entityid * test From<EntityMut> for EntityRef * don't mention other libraries since there's too many * fix warnings * do todos in brigadier suggestions * work on physics * more physics stuff * remove trait feature on az-block i think rust gets confused and compiles the macro without the feature * bump ahash * aes tests in az-crypto * optimize aes's deps * fix crashes * fix section_index for negative numbers and test * fix BlockPos protocol implementation * remove some debug prints * prepare to add ai_step * make ai step work * clippy
2022-08-30 01:41:01 +00:00
"azalea-chat",
2022-05-03 05:33:32 +00:00
"azalea-core",
"azalea-nbt",
2022-09-11 00:46:01 +00:00
"azalea-registry",
"log",
2022-06-18 04:55:11 +00:00
"nohash-hasher",
"thiserror",
2022-06-25 04:10:59 +00:00
"uuid",
2022-05-02 05:24:29 +00:00
]
2022-05-01 23:59:07 +00:00
[[package]]
name = "base64"
version = "0.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd"
2021-12-06 06:28:40 +00:00
[[package]]
name = "bitflags"
version = "1.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
2022-01-02 00:59:38 +00:00
[[package]]
name = "block-buffer"
version = "0.10.2"
2022-01-02 00:59:38 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0bf7fe51849ea569fd452f37822f606a5cabb684dc918707a0193fd4664ff324"
2022-01-02 00:59:38 +00:00
dependencies = [
"generic-array",
]
2021-12-06 06:28:40 +00:00
[[package]]
name = "bot"
version = "0.1.0"
dependencies = [
2022-09-20 04:05:05 +00:00
"anyhow",
"azalea",
2022-09-20 04:05:05 +00:00
"env_logger",
"parking_lot 0.12.1",
2021-12-06 06:28:40 +00:00
"tokio",
2022-06-20 06:19:59 +00:00
"uuid",
2021-12-06 06:28:40 +00:00
]
2021-12-19 19:07:54 +00:00
[[package]]
name = "bstr"
version = "0.2.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ba3569f383e8f1598449f1a423e72e99569137b47740b1da11ef19af3d5c3223"
dependencies = [
"lazy_static",
"memchr",
"regex-automata",
"serde",
]
[[package]]
name = "bumpalo"
2022-06-11 22:18:57 +00:00
version = "3.10.0"
2021-12-19 19:07:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-11 22:18:57 +00:00
checksum = "37ccbd214614c6783386c1af30caf03192f17891059cecc394b4fb119e363de3"
2021-12-19 19:07:54 +00:00
2021-12-06 06:28:40 +00:00
[[package]]
name = "byteorder"
version = "1.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
[[package]]
name = "bytes"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c4872d67bab6358e59559027aa3b9157c53d9358c51423c17554809a8858e0f8"
2021-12-19 19:07:54 +00:00
[[package]]
name = "cast"
version = "0.2.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4c24dab4283a142afa2fdca129b80ad2c6284e073930f964c3a1293c225ee39a"
dependencies = [
"rustc_version",
]
[[package]]
name = "cc"
version = "1.0.73"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2fff2a6927b3bb87f9595d67196a70493f627687a71d87a0d692242c33f58c11"
2022-04-25 00:28:29 +00:00
[[package]]
name = "cfb8"
2022-04-30 01:20:56 +00:00
version = "0.8.1"
2022-04-25 00:28:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-30 01:20:56 +00:00
checksum = "014c0a0e1ad0dae6a86c082db2f9bd7fe8c2c734227047d0d8b4d4a3a094a1e1"
2022-04-25 00:28:29 +00:00
dependencies = [
"cipher",
]
2021-12-06 06:28:40 +00:00
[[package]]
name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
2022-04-25 00:28:29 +00:00
[[package]]
name = "chrono"
version = "0.4.22"
2022-04-25 00:28:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bfd4d1b31faaa3a89d7934dbded3111da0d2ef28e3ebccdb4f0179f5929d1ef1"
2022-04-25 00:28:29 +00:00
dependencies = [
"num-integer",
"num-traits",
]
[[package]]
name = "cipher"
2022-04-30 01:20:56 +00:00
version = "0.4.3"
2022-04-25 00:28:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-30 01:20:56 +00:00
checksum = "d1873270f8f7942c191139cb8a40fd228da6c3fd2fc376d7e92d47aa14aeb59e"
2022-04-25 00:28:29 +00:00
dependencies = [
2022-04-30 01:20:56 +00:00
"crypto-common",
"inout",
2022-04-25 00:28:29 +00:00
]
2021-12-19 19:07:54 +00:00
[[package]]
name = "clap"
version = "2.34.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c"
dependencies = [
"bitflags",
"textwrap",
"unicode-width",
]
[[package]]
name = "core-foundation"
version = "0.9.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146"
dependencies = [
"core-foundation-sys",
"libc",
]
[[package]]
name = "core-foundation-sys"
version = "0.8.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc"
2022-01-02 00:59:38 +00:00
[[package]]
name = "cpufeatures"
2022-05-27 05:23:55 +00:00
version = "0.2.2"
2022-01-02 00:59:38 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-27 05:23:55 +00:00
checksum = "59a6001667ab124aebae2a495118e11d30984c3a653e99d86d58971708cf5e4b"
2022-01-02 00:59:38 +00:00
dependencies = [
"libc",
]
2021-12-17 05:33:06 +00:00
[[package]]
name = "crc32fast"
2022-05-27 05:23:55 +00:00
version = "1.3.2"
2021-12-17 05:33:06 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-27 05:23:55 +00:00
checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d"
2021-12-17 05:33:06 +00:00
dependencies = [
"cfg-if",
]
2021-12-19 19:07:54 +00:00
[[package]]
name = "criterion"
version = "0.3.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1604dafd25fba2fe2d5895a9da139f8dc9b319a5fe5354ca137cbbce4e178d10"
dependencies = [
"atty",
"cast",
"clap",
"criterion-plot",
"csv",
"itertools",
"lazy_static",
"num-traits",
"oorandom",
"plotters",
"rayon",
"regex",
"serde",
"serde_cbor",
"serde_derive",
"serde_json",
"tinytemplate",
"walkdir",
]
[[package]]
name = "criterion-plot"
version = "0.4.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d00996de9f2f7559f7f4dc286073197f83e92256a59ed395f9aac01fe717da57"
dependencies = [
"cast",
"itertools",
]
[[package]]
name = "crossbeam-channel"
2022-05-27 05:23:55 +00:00
version = "0.5.4"
2021-12-19 19:07:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-27 05:23:55 +00:00
checksum = "5aaa7bd5fb665c6864b5f963dd9097905c54125909c7aa94c9e18507cdbe6c53"
2021-12-19 19:07:54 +00:00
dependencies = [
"cfg-if",
"crossbeam-utils",
]
[[package]]
name = "crossbeam-deque"
version = "0.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6455c0ca19f0d2fbf751b908d5c55c1f5cbc65e03c4225427254b46890bdde1e"
dependencies = [
"cfg-if",
"crossbeam-epoch",
"crossbeam-utils",
]
[[package]]
name = "crossbeam-epoch"
2022-05-27 05:23:55 +00:00
version = "0.9.8"
2021-12-19 19:07:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-27 05:23:55 +00:00
checksum = "1145cf131a2c6ba0615079ab6a638f7e1973ac9c2634fcbeaaad6114246efe8c"
2021-12-19 19:07:54 +00:00
dependencies = [
2022-05-27 05:23:55 +00:00
"autocfg",
2021-12-19 19:07:54 +00:00
"cfg-if",
"crossbeam-utils",
"lazy_static",
"memoffset",
"scopeguard",
]
[[package]]
name = "crossbeam-utils"
2022-05-27 05:23:55 +00:00
version = "0.8.8"
2021-12-19 19:07:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-27 05:23:55 +00:00
checksum = "0bf124c720b7686e3c2663cf54062ab0f68a88af2fb6a030e87e30bf721fcb38"
2021-12-19 19:07:54 +00:00
dependencies = [
"cfg-if",
"lazy_static",
]
2022-01-02 00:59:38 +00:00
[[package]]
name = "crypto-common"
2022-04-25 00:28:29 +00:00
version = "0.1.3"
2022-01-02 00:59:38 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-25 00:28:29 +00:00
checksum = "57952ca27b5e3606ff4dd79b0020231aaf9d6aa76dc05fd30137538c50bd3ce8"
2022-01-02 00:59:38 +00:00
dependencies = [
"generic-array",
2022-04-25 00:28:29 +00:00
"typenum",
2022-01-02 00:59:38 +00:00
]
2021-12-19 19:07:54 +00:00
[[package]]
name = "csv"
version = "1.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "22813a6dc45b335f9bade10bf7271dc477e81113e89eb251a0bc2a8a81c536e1"
dependencies = [
"bstr",
"csv-core",
2022-05-08 23:38:22 +00:00
"itoa 0.4.8",
2021-12-19 19:07:54 +00:00
"ryu",
"serde",
]
[[package]]
name = "csv-core"
version = "0.1.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2b2466559f260f48ad25fe6317b3c8dac77b5bdb5763ac7d9d6103530663bc90"
dependencies = [
"memchr",
]
2021-12-06 06:28:40 +00:00
[[package]]
name = "data-encoding"
version = "2.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3ee2393c4a91429dffb4bedf19f4d6abf27d8a732c8ce4980305d782e5426d57"
2022-01-02 00:59:38 +00:00
[[package]]
name = "digest"
version = "0.10.3"
2022-01-02 00:59:38 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f2fb860ca6fafa5552fb6d0e816a69c8e49f0908bf524e30a90d97c85892d506"
2022-01-02 00:59:38 +00:00
dependencies = [
"block-buffer",
"crypto-common",
]
2021-12-19 19:07:54 +00:00
[[package]]
name = "either"
version = "1.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457"
[[package]]
name = "encoding_rs"
version = "0.8.31"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9852635589dc9f9ea1b6fe9f05b50ef208c85c834a562f0c6abb1c475736ec2b"
dependencies = [
"cfg-if",
]
2021-12-06 06:28:40 +00:00
[[package]]
name = "enum-as-inner"
2022-06-25 05:13:00 +00:00
version = "0.3.4"
2021-12-06 06:28:40 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-25 05:13:00 +00:00
checksum = "570d109b813e904becc80d8d5da38376818a143348413f7149f1340fe04754d4"
2021-12-06 06:28:40 +00:00
dependencies = [
"heck",
"proc-macro2",
"quote",
"syn",
]
2022-09-20 04:05:05 +00:00
[[package]]
name = "env_logger"
version = "0.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c90bf5f19754d10198ccb95b70664fc925bd1fc090a0fd9a6ebc54acc8cd6272"
dependencies = [
"atty",
"humantime",
"log",
"regex",
"termcolor",
]
[[package]]
name = "fastrand"
version = "1.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a7a407cfaa3385c4ae6b23e84623d48c2798d06e3e6a1878f7f59f17b3f86499"
dependencies = [
"instant",
]
2021-12-17 05:33:06 +00:00
[[package]]
name = "flate2"
2022-06-11 22:18:57 +00:00
version = "1.0.24"
2021-12-17 05:33:06 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-11 22:18:57 +00:00
checksum = "f82b0f4c27ad9f8bfd1f3208d882da2b09c301bc1c828fd3a00d0216d2fbbff6"
2021-12-17 05:33:06 +00:00
dependencies = [
"crc32fast",
"miniz_oxide",
]
[[package]]
name = "fnv"
version = "1.0.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
[[package]]
name = "foreign-types"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
dependencies = [
"foreign-types-shared",
]
[[package]]
name = "foreign-types-shared"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
2021-12-06 06:28:40 +00:00
[[package]]
name = "form_urlencoded"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5fc25a87fa4fd2094bffb06925852034d90a17f0d1e05197d4956d3555752191"
dependencies = [
"matches",
"percent-encoding",
]
[[package]]
name = "futures"
version = "0.3.24"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7f21eda599937fba36daeb58a22e8f5cee2d14c4a17b5b7739c7c8e5e3b8230c"
dependencies = [
"futures-channel",
"futures-core",
"futures-executor",
"futures-io",
"futures-sink",
"futures-task",
"futures-util",
]
2021-12-06 06:28:40 +00:00
[[package]]
name = "futures-channel"
version = "0.3.24"
2021-12-06 06:28:40 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "30bdd20c28fadd505d0fd6712cdfcb0d4b5648baf45faef7f852afb2399bb050"
2021-12-06 06:28:40 +00:00
dependencies = [
"futures-core",
"futures-sink",
2021-12-06 06:28:40 +00:00
]
[[package]]
name = "futures-core"
version = "0.3.24"
2021-12-06 06:28:40 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4e5aa3de05362c3fb88de6531e6296e85cde7739cccad4b9dfeeb7f6ebce56bf"
[[package]]
name = "futures-executor"
version = "0.3.24"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9ff63c23854bee61b6e9cd331d523909f238fc7636290b96826e9cfa5faa00ab"
dependencies = [
"futures-core",
"futures-task",
"futures-util",
]
2021-12-06 06:28:40 +00:00
[[package]]
name = "futures-io"
version = "0.3.24"
2021-12-06 06:28:40 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bbf4d2a7a308fd4578637c0b17c7e1c7ba127b8f6ba00b29f717e9655d85eb68"
[[package]]
name = "futures-macro"
version = "0.3.24"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "42cd15d1c7456c04dbdf7e88bcd69760d74f3a798d6444e16974b505b0e62f17"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
2021-12-06 06:28:40 +00:00
2022-06-25 05:13:00 +00:00
[[package]]
name = "futures-sink"
version = "0.3.24"
2022-06-25 05:13:00 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "21b20ba5a92e727ba30e72834706623d94ac93a725410b6a6b6fbc1b07f7ba56"
2022-06-25 05:13:00 +00:00
2021-12-06 06:28:40 +00:00
[[package]]
name = "futures-task"
version = "0.3.24"
2021-12-06 06:28:40 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a6508c467c73851293f390476d4491cf4d227dbabcd4170f3bb6044959b294f1"
2021-12-06 06:28:40 +00:00
[[package]]
name = "futures-util"
version = "0.3.24"
2021-12-06 06:28:40 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "44fb6cb1be61cc1d2e43b262516aafcf63b241cffdb1d3fa115f91d9c7b09c90"
2021-12-06 06:28:40 +00:00
dependencies = [
"futures-channel",
2021-12-06 06:28:40 +00:00
"futures-core",
"futures-io",
"futures-macro",
"futures-sink",
2021-12-06 06:28:40 +00:00
"futures-task",
"memchr",
2021-12-06 06:28:40 +00:00
"pin-project-lite",
"pin-utils",
"slab",
]
2022-01-02 00:59:38 +00:00
[[package]]
name = "generic-array"
2022-05-27 05:23:55 +00:00
version = "0.14.5"
2022-01-02 00:59:38 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-27 05:23:55 +00:00
checksum = "fd48d33ec7f05fbfa152300fdad764757cbded343c1aa1cff2fbaf4134851803"
2022-01-02 00:59:38 +00:00
dependencies = [
"typenum",
"version_check",
]
2021-12-06 06:28:40 +00:00
[[package]]
name = "getrandom"
2022-05-27 05:23:55 +00:00
version = "0.2.6"
2021-12-06 06:28:40 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-27 05:23:55 +00:00
checksum = "9be70c98951c83b8d2f8f60d7065fa6d5146873094452a1008da8c2f1e4205ad"
2021-12-06 06:28:40 +00:00
dependencies = [
"cfg-if",
"libc",
"wasi 0.10.0+wasi-snapshot-preview1",
]
[[package]]
name = "h2"
version = "0.3.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5ca32592cf21ac7ccab1825cd87f6c9b3d9022c44d086172ed0966bec8af30be"
dependencies = [
"bytes",
"fnv",
"futures-core",
"futures-sink",
"futures-util",
"http",
"indexmap",
"slab",
"tokio",
"tokio-util",
"tracing",
2021-12-06 06:28:40 +00:00
]
2021-12-19 19:07:54 +00:00
[[package]]
name = "half"
version = "1.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eabb4a44450da02c90444cf74558da904edde8fb4e9035a9a6a4e15445af0bd7"
[[package]]
name = "hashbrown"
version = "0.12.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
2021-12-06 06:28:40 +00:00
[[package]]
name = "heck"
2022-05-27 05:23:55 +00:00
version = "0.4.0"
2021-12-06 06:28:40 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-27 05:23:55 +00:00
checksum = "2540771e65fc8cb83cd6e8a237f70c319bd5c29f78ed1084ba5d50eeac86f7f9"
2021-12-06 06:28:40 +00:00
[[package]]
name = "hermit-abi"
version = "0.1.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
dependencies = [
"libc",
]
[[package]]
name = "hostname"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3c731c3e10504cc8ed35cfe2f1db4c9274c3d35fa486e3b31df46f068ef3e867"
dependencies = [
"libc",
"match_cfg",
"winapi",
]
[[package]]
name = "http"
version = "0.2.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "75f43d41e26995c17e71ee126451dd3941010b0514a81a9d11f3b341debc2399"
dependencies = [
"bytes",
"fnv",
"itoa 1.0.2",
]
[[package]]
name = "http-body"
version = "0.4.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1"
dependencies = [
"bytes",
"http",
"pin-project-lite",
]
[[package]]
name = "httparse"
version = "1.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904"
[[package]]
name = "httpdate"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421"
2022-09-20 04:05:05 +00:00
[[package]]
name = "humantime"
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
[[package]]
name = "hyper"
version = "0.14.20"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "02c929dc5c39e335a03c405292728118860721b10190d98c2a0f0efd5baafbac"
dependencies = [
"bytes",
"futures-channel",
"futures-core",
"futures-util",
"h2",
"http",
"http-body",
"httparse",
"httpdate",
"itoa 1.0.2",
"pin-project-lite",
"socket2 0.4.4",
"tokio",
"tower-service",
"tracing",
"want",
]
[[package]]
name = "hyper-tls"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905"
dependencies = [
"bytes",
"hyper",
"native-tls",
"tokio",
"tokio-native-tls",
]
2021-12-06 06:28:40 +00:00
[[package]]
name = "idna"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "418a0a6fab821475f634efe3ccc45c013f742efe03d853e8d3355d5cb850ecf8"
dependencies = [
"matches",
"unicode-bidi",
"unicode-normalization",
]
[[package]]
name = "indexmap"
version = "1.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "10a35a97730320ffe8e2d410b5d3b69279b98d2c14bdb8b70ea89ecf7888d41e"
dependencies = [
"autocfg",
"hashbrown",
]
2022-04-30 01:20:56 +00:00
[[package]]
name = "inout"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a0c10553d664a4d0bcff9f4215d0aac67a639cc68ef660840afe309b807bc9f5"
dependencies = [
"generic-array",
]
2022-06-25 05:13:00 +00:00
[[package]]
name = "instant"
version = "0.1.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
dependencies = [
"cfg-if",
]
2021-12-06 06:28:40 +00:00
[[package]]
name = "ipconfig"
2022-06-25 05:13:00 +00:00
version = "0.2.2"
2021-12-06 06:28:40 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-25 05:13:00 +00:00
checksum = "f7e2f18aece9709094573a9f24f483c4f65caa4298e2f7ae1b71cc65d853fad7"
2021-12-06 06:28:40 +00:00
dependencies = [
2022-06-25 05:13:00 +00:00
"socket2 0.3.19",
2021-12-06 06:28:40 +00:00
"widestring",
"winapi",
"winreg 0.6.2",
2021-12-06 06:28:40 +00:00
]
[[package]]
name = "ipnet"
2022-05-27 05:23:55 +00:00
version = "2.5.0"
2021-12-06 06:28:40 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-27 05:23:55 +00:00
checksum = "879d54834c8c76457ef4293a689b2a8c59b076067ad77b15efafbb05f92a592b"
2021-12-06 06:28:40 +00:00
2021-12-19 19:07:54 +00:00
[[package]]
name = "itertools"
version = "0.10.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a9a9d19fa1e79b6215ff29b9d6880b706147f16e9b1dbb1e4e5947b5b02bc5e3"
dependencies = [
"either",
]
2021-12-08 06:41:42 +00:00
[[package]]
name = "itoa"
version = "0.4.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4"
2022-05-08 23:38:22 +00:00
[[package]]
name = "itoa"
2022-05-27 05:23:55 +00:00
version = "1.0.2"
2022-05-08 23:38:22 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-27 05:23:55 +00:00
checksum = "112c678d4050afce233f4f2852bb2eb519230b3cf12f33585275537d7e41578d"
2022-05-08 23:38:22 +00:00
2021-12-19 19:07:54 +00:00
[[package]]
name = "js-sys"
2022-05-27 05:23:55 +00:00
version = "0.3.57"
2021-12-19 19:07:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-27 05:23:55 +00:00
checksum = "671a26f820db17c2a2750743f1dd03bafd15b98c9f30c7c2628c024c05d73397"
2021-12-19 19:07:54 +00:00
dependencies = [
"wasm-bindgen",
]
2021-12-06 06:28:40 +00:00
[[package]]
name = "lazy_static"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
[[package]]
name = "libc"
2022-05-27 05:23:55 +00:00
version = "0.2.126"
2021-12-06 06:28:40 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-27 05:23:55 +00:00
checksum = "349d5a591cd28b49e1d1037471617a32ddcda5731b99419008085f72d5a53836"
2021-12-06 06:28:40 +00:00
[[package]]
name = "linked-hash-map"
version = "0.5.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7fb9b38af92608140b86b693604b9ffcc5824240a484d1ecd4795bacb2fe88f3"
[[package]]
name = "lock_api"
2022-04-29 05:40:47 +00:00
version = "0.4.7"
2021-12-06 06:28:40 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-29 05:40:47 +00:00
checksum = "327fa5b6a6940e4699ec49a9beae1ea4845c6bab9314e4f84ac68742139d8c53"
2021-12-06 06:28:40 +00:00
dependencies = [
2022-04-29 05:40:47 +00:00
"autocfg",
2021-12-06 06:28:40 +00:00
"scopeguard",
]
[[package]]
name = "log"
2022-05-27 05:23:55 +00:00
version = "0.4.17"
2021-12-06 06:28:40 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-27 05:23:55 +00:00
checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
2021-12-06 06:28:40 +00:00
dependencies = [
"cfg-if",
]
[[package]]
name = "lru-cache"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "31e24f1ad8321ca0e8a1e0ac13f23cb668e6f5466c2c57319f6a5cf1cc8e3b1c"
dependencies = [
"linked-hash-map",
]
[[package]]
name = "match_cfg"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ffbee8634e0d45d258acb448e7eaab3fce7a0a467395d4d9f228e3c1f01fb2e4"
[[package]]
name = "matches"
version = "0.1.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f"
[[package]]
name = "memchr"
2022-05-27 05:23:55 +00:00
version = "2.5.0"
2021-12-06 06:28:40 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-27 05:23:55 +00:00
checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
2021-12-06 06:28:40 +00:00
2021-12-19 19:07:54 +00:00
[[package]]
name = "memoffset"
version = "0.6.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce"
dependencies = [
"autocfg",
]
[[package]]
name = "mime"
version = "0.3.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2a60c7ce501c71e03a9c9c0d35b861413ae925bd979cc7a4e30d060069aaac8d"
2021-12-17 05:33:06 +00:00
[[package]]
name = "miniz_oxide"
2022-06-11 22:18:57 +00:00
version = "0.5.3"
2021-12-17 05:33:06 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-11 22:18:57 +00:00
checksum = "6f5c75688da582b8ffc1f1799e9db273f32133c49e048f614d22ec3256773ccc"
2021-12-17 05:33:06 +00:00
dependencies = [
"adler",
]
2021-12-06 06:28:40 +00:00
[[package]]
name = "mio"
version = "0.8.4"
2021-12-06 06:28:40 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "57ee1c23c7c63b0c9250c339ffdc69255f110b298b901b9f6c82547b7b87caaf"
2021-12-06 06:28:40 +00:00
dependencies = [
"libc",
"log",
2022-04-29 05:40:47 +00:00
"wasi 0.11.0+wasi-snapshot-preview1",
2022-05-27 05:23:55 +00:00
"windows-sys",
2021-12-06 06:28:40 +00:00
]
[[package]]
name = "native-tls"
version = "0.2.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fd7e2f3618557f980e0b17e8856252eee3c97fa12c54dff0ca290fb6266ca4a9"
dependencies = [
"lazy_static",
"libc",
"log",
"openssl",
"openssl-probe",
"openssl-sys",
"schannel",
"security-framework",
"security-framework-sys",
"tempfile",
]
2022-06-18 04:55:11 +00:00
[[package]]
name = "nohash-hasher"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2bf50223579dc7cdcfb3bfcacf7069ff68243f8c363f62ffa99cf000a6b9c451"
2022-04-25 00:28:29 +00:00
[[package]]
name = "num"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "43db66d1170d347f9a065114077f7dccb00c1b9478c89384490a3425279a4606"
dependencies = [
"num-bigint",
"num-complex",
"num-integer",
"num-iter",
"num-rational",
"num-traits",
]
2022-01-02 00:59:38 +00:00
[[package]]
name = "num-bigint"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f93ab6289c7b344a8a9f60f88d80aa20032336fe78da341afc91c8a2341fc75f"
dependencies = [
"autocfg",
"num-integer",
"num-traits",
]
2022-04-25 00:28:29 +00:00
[[package]]
name = "num-complex"
version = "0.4.1"
2022-04-25 00:28:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "97fbc387afefefd5e9e39493299f3069e14a140dd34dc19b4c1c1a8fddb6a790"
2022-04-25 00:28:29 +00:00
dependencies = [
"num-traits",
]
2021-12-18 23:02:23 +00:00
[[package]]
name = "num-derive"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "876a53fff98e03a936a674b29568b0e605f06b29372c2489ff4de23f1949743d"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
2022-01-02 00:59:38 +00:00
[[package]]
name = "num-integer"
2022-05-27 05:23:55 +00:00
version = "0.1.45"
2022-01-02 00:59:38 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-27 05:23:55 +00:00
checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9"
2022-01-02 00:59:38 +00:00
dependencies = [
"autocfg",
"num-traits",
]
2022-04-25 00:28:29 +00:00
[[package]]
name = "num-iter"
version = "0.1.43"
2022-04-25 00:28:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7d03e6c028c5dc5cac6e2dec0efda81fc887605bb3d884578bb6d6bf7514e252"
2022-04-25 00:28:29 +00:00
dependencies = [
"autocfg",
"num-integer",
"num-traits",
]
[[package]]
name = "num-rational"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d41702bd167c2df5520b384281bc111a4b5efcf7fbc4c9c222c815b07e0a6a6a"
dependencies = [
"autocfg",
"num-bigint",
"num-integer",
"num-traits",
]
2021-12-18 23:02:23 +00:00
[[package]]
name = "num-traits"
2022-05-27 05:23:55 +00:00
version = "0.2.15"
2021-12-18 23:02:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-27 05:23:55 +00:00
checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd"
2021-12-18 23:02:23 +00:00
dependencies = [
"autocfg",
]
2021-12-06 06:28:40 +00:00
[[package]]
name = "num_cpus"
2022-05-27 05:23:55 +00:00
version = "1.13.1"
2021-12-06 06:28:40 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-27 05:23:55 +00:00
checksum = "19e64526ebdee182341572e50e9ad03965aa510cd94427a4549448f285e957a1"
2021-12-06 06:28:40 +00:00
dependencies = [
"hermit-abi",
"libc",
]
2022-04-29 05:40:47 +00:00
[[package]]
name = "once_cell"
version = "1.15.0"
2022-04-29 05:40:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e82dad04139b71a90c080c8463fe0dc7902db5192d939bd0950f074d014339e1"
2022-04-29 05:40:47 +00:00
2021-12-19 19:07:54 +00:00
[[package]]
name = "oorandom"
version = "11.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0ab1bc2a289d34bd04a330323ac98a1b4bc82c9d9fcb1e66b63caa84da26b575"
[[package]]
name = "openssl"
version = "0.10.42"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "12fc0523e3bd51a692c8850d075d74dc062ccf251c0110668cbd921917118a13"
dependencies = [
"bitflags",
"cfg-if",
"foreign-types",
"libc",
"once_cell",
"openssl-macros",
"openssl-sys",
]
[[package]]
name = "openssl-macros"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b501e44f11665960c7e7fcf062c7d96a14ade4aa98116c004b2e37b5be7d736c"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "openssl-probe"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
[[package]]
name = "openssl-sys"
version = "0.9.76"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5230151e44c0f05157effb743e8d517472843121cf9243e8b81393edb5acd9ce"
dependencies = [
"autocfg",
"cc",
"libc",
"pkg-config",
"vcpkg",
]
2021-12-06 06:28:40 +00:00
[[package]]
name = "parking_lot"
2022-06-25 05:13:00 +00:00
version = "0.11.2"
2021-12-06 06:28:40 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-25 05:13:00 +00:00
checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99"
2021-12-06 06:28:40 +00:00
dependencies = [
2022-06-25 05:13:00 +00:00
"instant",
2021-12-06 06:28:40 +00:00
"lock_api",
"parking_lot_core 0.8.5",
]
[[package]]
name = "parking_lot"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
dependencies = [
"lock_api",
"parking_lot_core 0.9.3",
2021-12-06 06:28:40 +00:00
]
[[package]]
name = "parking_lot_core"
2022-06-25 05:13:00 +00:00
version = "0.8.5"
2021-12-06 06:28:40 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-25 05:13:00 +00:00
checksum = "d76e8e1493bcac0d2766c42737f34458f1c8c50c0d23bcb24ea953affb273216"
2021-12-06 06:28:40 +00:00
dependencies = [
"cfg-if",
2022-06-25 05:13:00 +00:00
"instant",
2021-12-06 06:28:40 +00:00
"libc",
"redox_syscall",
"smallvec",
2022-06-25 05:13:00 +00:00
"winapi",
2021-12-06 06:28:40 +00:00
]
[[package]]
name = "parking_lot_core"
version = "0.9.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "09a279cbf25cb0757810394fbc1e359949b59e348145c643a939a525692e6929"
dependencies = [
"cfg-if",
"libc",
"redox_syscall",
"smallvec",
"windows-sys",
]
2021-12-06 06:28:40 +00:00
[[package]]
name = "percent-encoding"
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e"
[[package]]
name = "pin-project-lite"
2022-05-27 05:23:55 +00:00
version = "0.2.9"
2021-12-06 06:28:40 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-27 05:23:55 +00:00
checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116"
2021-12-06 06:28:40 +00:00
[[package]]
name = "pin-utils"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
[[package]]
name = "pkg-config"
version = "0.3.25"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1df8c4ec4b0627e53bdf214615ad287367e482558cf84b109250b37464dc03ae"
2021-12-19 19:07:54 +00:00
[[package]]
name = "plotters"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "32a3fd9ec30b9749ce28cd91f255d569591cdf937fe280c312143e3c4bad6f2a"
dependencies = [
"num-traits",
"plotters-backend",
"plotters-svg",
"wasm-bindgen",
"web-sys",
]
[[package]]
name = "plotters-backend"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d88417318da0eaf0fdcdb51a0ee6c3bed624333bff8f946733049380be67ac1c"
[[package]]
name = "plotters-svg"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "521fa9638fa597e1dc53e9412a4f9cefb01187ee1f7413076f9e6749e2885ba9"
dependencies = [
"plotters-backend",
]
2021-12-06 06:28:40 +00:00
[[package]]
name = "ppv-lite86"
2022-05-27 05:23:55 +00:00
version = "0.2.16"
2021-12-06 06:28:40 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-27 05:23:55 +00:00
checksum = "eb9f9e6e233e5c4a35559a617bf40a4ec447db2e84c20b55a6f83167b7e57872"
2021-12-06 06:28:40 +00:00
[[package]]
name = "proc-macro2"
2022-05-28 00:34:09 +00:00
version = "1.0.39"
2021-12-06 06:28:40 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-28 00:34:09 +00:00
checksum = "c54b25569025b7fc9651de43004ae593a75ad88543b17178aa5e1b9c4f15f56f"
2021-12-06 06:28:40 +00:00
dependencies = [
2022-05-28 00:34:09 +00:00
"unicode-ident",
2021-12-06 06:28:40 +00:00
]
[[package]]
name = "quick-error"
version = "1.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
[[package]]
name = "quote"
2022-05-28 00:34:09 +00:00
version = "1.0.18"
2021-12-06 06:28:40 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-28 00:34:09 +00:00
checksum = "a1feb54ed693b93a84e14094943b84b7c4eae204c512b7ccb95ab0c66d278ad1"
2021-12-06 06:28:40 +00:00
dependencies = [
"proc-macro2",
]
[[package]]
name = "rand"
2022-05-27 05:23:55 +00:00
version = "0.8.5"
2021-12-06 06:28:40 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-27 05:23:55 +00:00
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
2021-12-06 06:28:40 +00:00
dependencies = [
"libc",
"rand_chacha",
"rand_core",
]
[[package]]
name = "rand_chacha"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
dependencies = [
"ppv-lite86",
"rand_core",
]
[[package]]
name = "rand_core"
version = "0.6.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d34f1408f55294453790c48b2f1ebbb1c5b4b7563eb1f418bcfcfdbb06ebb4e7"
dependencies = [
"getrandom",
]
2021-12-19 19:07:54 +00:00
[[package]]
name = "rayon"
2022-05-27 05:23:55 +00:00
version = "1.5.3"
2021-12-19 19:07:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-27 05:23:55 +00:00
checksum = "bd99e5772ead8baa5215278c9b15bf92087709e9c1b2d1f97cdb5a183c933a7d"
2021-12-19 19:07:54 +00:00
dependencies = [
"autocfg",
"crossbeam-deque",
"either",
"rayon-core",
]
[[package]]
name = "rayon-core"
2022-05-27 05:23:55 +00:00
version = "1.9.3"
2021-12-19 19:07:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-27 05:23:55 +00:00
checksum = "258bcdb5ac6dad48491bb2992db6b7cf74878b0384908af124823d118c99683f"
2021-12-19 19:07:54 +00:00
dependencies = [
"crossbeam-channel",
"crossbeam-deque",
"crossbeam-utils",
"num_cpus",
]
2021-12-06 06:28:40 +00:00
[[package]]
name = "redox_syscall"
2022-05-27 05:23:55 +00:00
version = "0.2.13"
2021-12-06 06:28:40 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-27 05:23:55 +00:00
checksum = "62f25bc4c7e55e0b0b7a1d43fb893f4fa1361d0abe38b9ce4f323c2adfe6ef42"
2021-12-06 06:28:40 +00:00
dependencies = [
"bitflags",
]
2021-12-19 19:07:54 +00:00
[[package]]
name = "regex"
2022-05-27 05:23:55 +00:00
version = "1.5.6"
2021-12-19 19:07:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-27 05:23:55 +00:00
checksum = "d83f127d94bdbcda4c8cc2e50f6f84f4b611f69c902699ca385a39c3a75f9ff1"
2021-12-19 19:07:54 +00:00
dependencies = [
2022-09-20 04:05:05 +00:00
"aho-corasick",
"memchr",
2021-12-19 19:07:54 +00:00
"regex-syntax",
]
[[package]]
name = "regex-automata"
version = "0.1.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
[[package]]
name = "regex-syntax"
2022-05-27 05:23:55 +00:00
version = "0.6.26"
2021-12-19 19:07:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-27 05:23:55 +00:00
checksum = "49b3de9ec5dc0a3417da371aab17d729997c15010e7fd24ff707773a33bddb64"
2021-12-19 19:07:54 +00:00
[[package]]
name = "remove_dir_all"
version = "0.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7"
dependencies = [
"winapi",
]
[[package]]
name = "reqwest"
version = "0.11.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "431949c384f4e2ae07605ccaa56d1d9d2ecdb5cadd4f9577ccfab29f2e5149fc"
dependencies = [
"base64",
"bytes",
"encoding_rs",
"futures-core",
"futures-util",
"h2",
"http",
"http-body",
"hyper",
"hyper-tls",
"ipnet",
"js-sys",
"log",
"mime",
"native-tls",
"once_cell",
"percent-encoding",
"pin-project-lite",
"serde",
"serde_json",
"serde_urlencoded",
"tokio",
"tokio-native-tls",
"tower-service",
"url",
"wasm-bindgen",
"wasm-bindgen-futures",
"web-sys",
"winreg 0.10.1",
]
2021-12-06 06:28:40 +00:00
[[package]]
name = "resolv-conf"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "52e44394d2086d010551b14b53b1f24e31647570cd1deb0379e2c21b329aba00"
dependencies = [
"hostname",
"quick-error",
]
2022-04-25 00:28:29 +00:00
[[package]]
name = "rsa_public_encrypt_pkcs1"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b3e9243a1f8b312c5535c09de102cc061416515201b194ee4f0a9a76da20ebf4"
dependencies = [
"num",
"rand",
"simple_asn1",
]
2021-12-19 19:07:54 +00:00
[[package]]
name = "rustc_version"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
dependencies = [
"semver",
]
2021-12-08 06:41:42 +00:00
[[package]]
name = "ryu"
2022-05-27 05:23:55 +00:00
version = "1.0.10"
2021-12-08 06:41:42 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-27 05:23:55 +00:00
checksum = "f3f6f92acf49d1b98f7a81226834412ada05458b7364277387724a237f062695"
2021-12-08 06:41:42 +00:00
2021-12-19 19:07:54 +00:00
[[package]]
name = "same-file"
version = "1.0.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
dependencies = [
"winapi-util",
]
[[package]]
name = "schannel"
version = "0.1.20"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "88d6731146462ea25d9244b2ed5fd1d716d25c52e4d54aa4fb0f3c4e9854dbe2"
dependencies = [
"lazy_static",
"windows-sys",
]
2021-12-06 06:28:40 +00:00
[[package]]
name = "scopeguard"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
[[package]]
name = "security-framework"
version = "2.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2bc1bb97804af6631813c55739f771071e0f2ed33ee20b68c86ec505d906356c"
dependencies = [
"bitflags",
"core-foundation",
"core-foundation-sys",
"libc",
"security-framework-sys",
]
[[package]]
name = "security-framework-sys"
version = "2.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0160a13a177a45bfb43ce71c01580998474f556ad854dcbca936dd2841a5c556"
dependencies = [
"core-foundation-sys",
"libc",
]
2021-12-19 19:07:54 +00:00
[[package]]
name = "semver"
2022-06-11 22:18:57 +00:00
version = "1.0.10"
2021-12-19 19:07:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-11 22:18:57 +00:00
checksum = "a41d061efea015927ac527063765e73601444cdc344ba855bc7bd44578b25e1c"
2021-12-19 19:07:54 +00:00
2021-12-08 06:41:42 +00:00
[[package]]
name = "serde"
version = "1.0.145"
2021-12-08 06:41:42 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "728eb6351430bccb993660dfffc5a72f91ccc1295abaa8ce19b27ebe4f75568b"
2021-12-11 21:17:42 +00:00
dependencies = [
"serde_derive",
]
2021-12-19 19:07:54 +00:00
[[package]]
name = "serde_cbor"
version = "0.11.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2bef2ebfde456fb76bbcf9f59315333decc4fda0b2b44b420243c11e0f5ec1f5"
dependencies = [
"half",
"serde",
]
2021-12-11 21:17:42 +00:00
[[package]]
name = "serde_derive"
version = "1.0.145"
2021-12-11 21:17:42 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "81fa1584d3d1bcacd84c277a0dfe21f5b0f6accf4a23d04d4c6d61f1af522b4c"
2021-12-11 21:17:42 +00:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
2021-12-08 06:41:42 +00:00
[[package]]
name = "serde_json"
version = "1.0.86"
2021-12-08 06:41:42 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "41feea4228a6f1cd09ec7a3593a682276702cd67b5273544757dae23c096f074"
2021-12-08 06:41:42 +00:00
dependencies = [
2022-05-27 05:23:55 +00:00
"itoa 1.0.2",
2021-12-08 06:41:42 +00:00
"ryu",
"serde",
]
[[package]]
name = "serde_urlencoded"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
dependencies = [
"form_urlencoded",
"itoa 1.0.2",
"ryu",
"serde",
]
2022-01-02 00:59:38 +00:00
[[package]]
name = "sha-1"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "028f48d513f9678cda28f6e4064755b3fbb2af6acd672f2c209b62323f7aea0f"
dependencies = [
"cfg-if",
"cpufeatures",
"digest",
]
[[package]]
name = "signal-hook-registry"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e51e73328dc4ac0c7ccbda3a494dfa03df1de2f46018127f60c693f2648455b0"
dependencies = [
"libc",
]
2022-04-25 00:28:29 +00:00
[[package]]
name = "simple_asn1"
version = "0.5.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8eb4ea60fb301dc81dfc113df680571045d375ab7345d171c5dc7d7e13107a80"
dependencies = [
"chrono",
"num-bigint",
"num-traits",
"thiserror",
]
2021-12-06 06:28:40 +00:00
[[package]]
name = "slab"
2022-05-27 05:23:55 +00:00
version = "0.4.6"
2021-12-06 06:28:40 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-27 05:23:55 +00:00
checksum = "eb703cfe953bccee95685111adeedb76fabe4e97549a58d16f03ea7b9367bb32"
2021-12-06 06:28:40 +00:00
[[package]]
name = "smallvec"
2022-05-27 05:23:55 +00:00
version = "1.8.0"
2021-12-06 06:28:40 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-27 05:23:55 +00:00
checksum = "f2dd574626839106c320a323308629dcb1acfc96e32a8cba364ddc61ac23ee83"
2021-12-06 06:28:40 +00:00
2022-06-25 05:13:00 +00:00
[[package]]
name = "socket2"
version = "0.3.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "122e570113d28d773067fab24266b66753f6ea915758651696b6e35e49f88d6e"
dependencies = [
"cfg-if",
"libc",
"winapi",
]
2022-04-29 05:40:47 +00:00
[[package]]
name = "socket2"
version = "0.4.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "66d72b759436ae32898a2af0a14218dbf55efde3feeb170eb623637db85ee1e0"
dependencies = [
"libc",
"winapi",
]
2021-12-06 06:28:40 +00:00
[[package]]
name = "syn"
2022-06-11 22:18:57 +00:00
version = "1.0.96"
2021-12-06 06:28:40 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-11 22:18:57 +00:00
checksum = "0748dd251e24453cb8717f0354206b91557e4ec8703673a4b30208f2abaf1ebf"
2021-12-06 06:28:40 +00:00
dependencies = [
"proc-macro2",
"quote",
2022-05-28 00:34:09 +00:00
"unicode-ident",
2021-12-06 06:28:40 +00:00
]
[[package]]
name = "tempfile"
version = "3.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4"
dependencies = [
"cfg-if",
"fastrand",
"libc",
"redox_syscall",
"remove_dir_all",
"winapi",
]
2022-09-20 04:05:05 +00:00
[[package]]
name = "termcolor"
version = "1.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bab24d30b911b2376f3a13cc2cd443142f0c81dda04c118693e35b3835757755"
dependencies = [
"winapi-util",
]
2021-12-19 19:07:54 +00:00
[[package]]
name = "textwrap"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
dependencies = [
"unicode-width",
]
2021-12-06 06:28:40 +00:00
[[package]]
name = "thiserror"
version = "1.0.37"
2021-12-06 06:28:40 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "10deb33631e3c9018b9baf9dcbbc4f737320d2b576bac10f6aefa048fa407e3e"
2021-12-06 06:28:40 +00:00
dependencies = [
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
version = "1.0.37"
2021-12-06 06:28:40 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "982d17546b47146b28f7c22e3d08465f6b8903d0ea13c1660d9d84a6e7adcdbb"
2021-12-06 06:28:40 +00:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
2021-12-19 19:07:54 +00:00
[[package]]
name = "tinytemplate"
version = "1.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
dependencies = [
"serde",
"serde_json",
]
2021-12-06 06:28:40 +00:00
[[package]]
name = "tinyvec"
2022-05-27 05:23:55 +00:00
version = "1.6.0"
2021-12-06 06:28:40 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-27 05:23:55 +00:00
checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
2021-12-06 06:28:40 +00:00
dependencies = [
"tinyvec_macros",
]
[[package]]
name = "tinyvec_macros"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
[[package]]
name = "tokio"
version = "1.21.2"
2021-12-06 06:28:40 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a9e03c497dc955702ba729190dc4aac6f2a0ce97f913e5b1b5912fc5039d9099"
2021-12-06 06:28:40 +00:00
dependencies = [
"autocfg",
2021-12-06 06:28:40 +00:00
"bytes",
"libc",
"memchr",
"mio",
"num_cpus",
"parking_lot 0.12.1",
2021-12-06 06:28:40 +00:00
"pin-project-lite",
"signal-hook-registry",
2022-06-25 05:13:00 +00:00
"socket2 0.4.4",
2021-12-07 06:09:49 +00:00
"tokio-macros",
2021-12-06 06:28:40 +00:00
"winapi",
]
2021-12-07 06:09:49 +00:00
[[package]]
name = "tokio-macros"
2022-06-11 22:18:57 +00:00
version = "1.8.0"
2021-12-07 06:09:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-11 22:18:57 +00:00
checksum = "9724f9a975fb987ef7a3cd9be0350edcbe130698af5b8f7a631e23d42d052484"
2021-12-07 06:09:49 +00:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "tokio-native-tls"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f7d995660bd2b7f8c1568414c1126076c13fbb725c40112dc0120b78eb9b717b"
dependencies = [
"native-tls",
"tokio",
]
2022-06-25 05:13:00 +00:00
[[package]]
name = "tokio-util"
version = "0.7.4"
2022-06-25 05:13:00 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0bb2e075f03b3d66d8d8785356224ba688d2906a371015e225beeb65ca92c740"
2022-06-25 05:13:00 +00:00
dependencies = [
"bytes",
"futures-core",
"futures-sink",
"pin-project-lite",
"tokio",
"tracing",
]
[[package]]
name = "tower-service"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52"
[[package]]
name = "tracing"
version = "0.1.35"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a400e31aa60b9d44a52a8ee0343b5b18566b03a8321e0d321f695cf56e940160"
dependencies = [
"cfg-if",
"pin-project-lite",
"tracing-core",
]
[[package]]
name = "tracing-core"
version = "0.1.28"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7b7358be39f2f274f322d2aaed611acc57f382e8eb1e5b48cb9ae30933495ce7"
dependencies = [
"once_cell",
2022-06-25 05:13:00 +00:00
]
2021-12-06 06:28:40 +00:00
[[package]]
name = "trust-dns-proto"
2022-06-25 05:13:00 +00:00
version = "0.20.4"
2021-12-06 06:28:40 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-25 05:13:00 +00:00
checksum = "ca94d4e9feb6a181c690c4040d7a24ef34018d8313ac5044a61d21222ae24e31"
2021-12-06 06:28:40 +00:00
dependencies = [
"async-trait",
"cfg-if",
"data-encoding",
"enum-as-inner",
"futures-channel",
"futures-io",
"futures-util",
"idna",
"ipnet",
"lazy_static",
"log",
"rand",
"smallvec",
"thiserror",
"tinyvec",
"tokio",
"url",
]
[[package]]
name = "trust-dns-resolver"
2022-06-25 05:13:00 +00:00
version = "0.20.4"
2021-12-06 06:28:40 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-25 05:13:00 +00:00
checksum = "ecae383baad9995efaa34ce8e57d12c3f305e545887472a492b838f4b5cfb77a"
2021-12-06 06:28:40 +00:00
dependencies = [
"cfg-if",
"futures-util",
"ipconfig",
"lazy_static",
"log",
"lru-cache",
"parking_lot 0.11.2",
2021-12-06 06:28:40 +00:00
"resolv-conf",
"smallvec",
"thiserror",
"tokio",
"trust-dns-proto",
]
[[package]]
name = "try-lock"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642"
2022-01-02 00:59:38 +00:00
[[package]]
name = "typenum"
version = "1.15.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987"
2021-12-06 06:28:40 +00:00
[[package]]
name = "unicode-bidi"
2022-05-27 05:23:55 +00:00
version = "0.3.8"
2021-12-06 06:28:40 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-27 05:23:55 +00:00
checksum = "099b7128301d285f79ddd55b9a83d5e6b9e97c92e0ea0daebee7263e932de992"
[[package]]
name = "unicode-ident"
version = "1.0.0"
2021-12-06 06:28:40 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-28 00:34:09 +00:00
checksum = "d22af068fba1eb5edcb4aea19d382b2a3deb4c8f9d475c589b6ada9e0fd493ee"
2021-12-06 06:28:40 +00:00
[[package]]
name = "unicode-normalization"
version = "0.1.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d54590932941a9e9266f0832deed84ebe1bf2e4c9e4a3554d393d18f5e854bf9"
dependencies = [
"tinyvec",
]
2021-12-19 19:07:54 +00:00
[[package]]
name = "unicode-width"
version = "0.1.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3ed742d4ea2bd1176e236172c8429aaf54486e7ac098db29ffe6529e0ce50973"
2021-12-06 06:28:40 +00:00
[[package]]
name = "url"
version = "2.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a507c383b2d33b5fc35d1861e77e6b383d158b2da5e14fe51b83dfedf6fd578c"
dependencies = [
"form_urlencoded",
"idna",
"matches",
"percent-encoding",
]
2021-12-16 05:07:10 +00:00
[[package]]
name = "uuid"
version = "1.1.2"
2021-12-16 05:07:10 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dd6469f4314d5f1ffec476e05f17cc9a78bc7a27a6a857842170bdf8d6f98d2f"
2021-12-16 05:07:10 +00:00
[[package]]
name = "vcpkg"
version = "0.2.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
2022-01-02 00:59:38 +00:00
[[package]]
name = "version_check"
2022-05-27 05:23:55 +00:00
version = "0.9.4"
2022-01-02 00:59:38 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-27 05:23:55 +00:00
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
2022-01-02 00:59:38 +00:00
2021-12-19 19:07:54 +00:00
[[package]]
name = "walkdir"
version = "2.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "808cf2735cd4b6866113f648b791c6adc5714537bc222d9347bb203386ffda56"
dependencies = [
"same-file",
"winapi",
"winapi-util",
]
[[package]]
name = "want"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0"
dependencies = [
"log",
"try-lock",
]
2021-12-06 06:28:40 +00:00
[[package]]
name = "wasi"
version = "0.10.0+wasi-snapshot-preview1"
2021-12-06 06:28:40 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f"
2021-12-06 06:28:40 +00:00
2022-04-29 05:40:47 +00:00
[[package]]
name = "wasi"
version = "0.11.0+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
2021-12-19 19:07:54 +00:00
[[package]]
name = "wasm-bindgen"
2022-05-27 05:23:55 +00:00
version = "0.2.80"
2021-12-19 19:07:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-27 05:23:55 +00:00
checksum = "27370197c907c55e3f1a9fbe26f44e937fe6451368324e009cba39e139dc08ad"
2021-12-19 19:07:54 +00:00
dependencies = [
"cfg-if",
"wasm-bindgen-macro",
]
[[package]]
name = "wasm-bindgen-backend"
2022-05-27 05:23:55 +00:00
version = "0.2.80"
2021-12-19 19:07:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-27 05:23:55 +00:00
checksum = "53e04185bfa3a779273da532f5025e33398409573f348985af9a1cbf3774d3f4"
2021-12-19 19:07:54 +00:00
dependencies = [
"bumpalo",
"lazy_static",
"log",
"proc-macro2",
"quote",
"syn",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-futures"
version = "0.4.30"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6f741de44b75e14c35df886aff5f1eb73aa114fa5d4d00dcd37b5e01259bf3b2"
dependencies = [
"cfg-if",
"js-sys",
"wasm-bindgen",
"web-sys",
]
2021-12-19 19:07:54 +00:00
[[package]]
name = "wasm-bindgen-macro"
2022-05-27 05:23:55 +00:00
version = "0.2.80"
2021-12-19 19:07:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-27 05:23:55 +00:00
checksum = "17cae7ff784d7e83a2fe7611cfe766ecf034111b49deb850a3dc7699c08251f5"
2021-12-19 19:07:54 +00:00
dependencies = [
"quote",
"wasm-bindgen-macro-support",
]
[[package]]
name = "wasm-bindgen-macro-support"
2022-05-27 05:23:55 +00:00
version = "0.2.80"
2021-12-19 19:07:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-27 05:23:55 +00:00
checksum = "99ec0dc7a4756fffc231aab1b9f2f578d23cd391390ab27f952ae0c9b3ece20b"
2021-12-19 19:07:54 +00:00
dependencies = [
"proc-macro2",
"quote",
"syn",
"wasm-bindgen-backend",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-shared"
2022-05-27 05:23:55 +00:00
version = "0.2.80"
2021-12-19 19:07:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-27 05:23:55 +00:00
checksum = "d554b7f530dee5964d9a9468d95c1f8b8acae4f282807e7d27d4b03099a46744"
2021-12-19 19:07:54 +00:00
[[package]]
name = "web-sys"
2022-05-27 05:23:55 +00:00
version = "0.3.57"
2021-12-19 19:07:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-27 05:23:55 +00:00
checksum = "7b17e741662c70c8bd24ac5c5b18de314a2c26c32bf8346ee1e6f53de919c283"
2021-12-19 19:07:54 +00:00
dependencies = [
"js-sys",
"wasm-bindgen",
]
2021-12-06 06:28:40 +00:00
[[package]]
name = "widestring"
2022-06-25 05:13:00 +00:00
version = "0.4.3"
2021-12-06 06:28:40 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-25 05:13:00 +00:00
checksum = "c168940144dd21fd8046987c16a46a33d5fc84eec29ef9dcddc2ac9e31526b7c"
2021-12-06 06:28:40 +00:00
[[package]]
name = "winapi"
version = "0.3.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
dependencies = [
"winapi-i686-pc-windows-gnu",
"winapi-x86_64-pc-windows-gnu",
]
[[package]]
name = "winapi-i686-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
2021-12-19 19:07:54 +00:00
[[package]]
name = "winapi-util"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
dependencies = [
"winapi",
]
2021-12-06 06:28:40 +00:00
[[package]]
name = "winapi-x86_64-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
2022-05-27 05:23:55 +00:00
[[package]]
name = "windows-sys"
version = "0.36.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ea04155a16a59f9eab786fe12a4a450e75cdb175f9e0d80da1e17db09f55b8d2"
dependencies = [
"windows_aarch64_msvc",
"windows_i686_gnu",
"windows_i686_msvc",
"windows_x86_64_gnu",
"windows_x86_64_msvc",
]
[[package]]
name = "windows_aarch64_msvc"
version = "0.36.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9bb8c3fd39ade2d67e9874ac4f3db21f0d710bee00fe7cab16949ec184eeaa47"
[[package]]
name = "windows_i686_gnu"
version = "0.36.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "180e6ccf01daf4c426b846dfc66db1fc518f074baa793aa7d9b9aaeffad6a3b6"
[[package]]
name = "windows_i686_msvc"
version = "0.36.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e2e7917148b2812d1eeafaeb22a97e4813dfa60a3f8f78ebe204bcc88f12f024"
[[package]]
name = "windows_x86_64_gnu"
version = "0.36.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4dcd171b8776c41b97521e5da127a2d86ad280114807d0b2ab1e462bc764d9e1"
[[package]]
name = "windows_x86_64_msvc"
version = "0.36.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c811ca4a8c853ef420abd8592ba53ddbbac90410fab6903b3e79972a631f7680"
2021-12-06 06:28:40 +00:00
[[package]]
name = "winreg"
2022-06-25 05:13:00 +00:00
version = "0.6.2"
2021-12-06 06:28:40 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-25 05:13:00 +00:00
checksum = "b2986deb581c4fe11b621998a5e53361efe6b48a151178d0cd9eeffa4dc6acc9"
2021-12-06 06:28:40 +00:00
dependencies = [
"winapi",
]
[[package]]
name = "winreg"
version = "0.10.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d"
dependencies = [
"winapi",
]