azalea/Cargo.lock

1593 lines
38 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",
]
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"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d7d78656ba01f1b93024b7c3a0467f1608e4be67d725749fdcd7d2c7678fd7a2"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "async-trait"
2022-05-27 05:23:55 +00:00
version = "0.1.53"
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 = "ed6aa3524a2dfcf9fe180c51eae2b58738348d819517ceadf95789c51fff7600"
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
2021-12-16 23:51:05 +00:00
[[package]]
name = "azalea-auth"
version = "0.1.0"
dependencies = [
"uuid",
]
2022-01-09 06:14:39 +00:00
[[package]]
name = "azalea-brigadier"
version = "0.1.0"
2021-12-16 05:10:55 +00:00
[[package]]
name = "azalea-chat"
version = "0.1.0"
dependencies = [
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 = [
2022-04-25 00:28:29 +00:00
"azalea-auth",
"azalea-core",
"azalea-crypto",
2021-12-16 05:10:55 +00:00
"azalea-protocol",
2022-05-02 23:07:06 +00:00
"azalea-world",
2022-04-29 05:40:47 +00:00
"tokio",
2021-12-16 05:10:55 +00:00
]
[[package]]
name = "azalea-core"
version = "0.1.0"
dependencies = [
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",
"cfb8",
"num-bigint",
"rand",
"rsa_public_encrypt_pkcs1",
"sha-1",
]
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 = [
"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",
]
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",
"azalea-brigadier",
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",
2021-12-16 05:10:55 +00:00
"byteorder",
"bytes",
"flate2",
2022-01-02 05:55:19 +00:00
"num-derive",
"num-traits",
"packet-macros",
2021-12-16 05:10:55 +00:00
"serde",
"serde_json",
"thiserror",
"tokio",
"tokio-util",
"trust-dns-resolver",
2021-12-16 23:55:45 +00:00
"uuid",
2021-12-16 05:10:55 +00:00
]
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-05-03 05:33:32 +00:00
"azalea-core",
"azalea-nbt",
2022-05-02 05:24:29 +00:00
"azalea-protocol",
]
2022-05-01 23:59:07 +00:00
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 = [
2021-12-16 05:10:55 +00:00
"azalea-client",
2022-05-06 04:33:08 +00:00
"azalea-core",
2021-12-16 05:10:55 +00:00
"azalea-protocol",
2021-12-06 06:28:40 +00:00
"tokio",
]
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-05-27 05:23:55 +00:00
version = "3.9.1"
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 = "a4a45a46ab1f2412e53d3a0ade76ffad2025804294569aae387231a0cd6e0899"
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",
]
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.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "670ad68c9088c2a963aaa298cb369688cf3f9465ce5e2d4ca10e6e0098a1ce73"
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",
]
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"
2021-12-06 06:28:40 +00:00
[[package]]
name = "enum-as-inner"
2022-05-27 05:23:55 +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-05-27 05:23:55 +00:00
checksum = "570d109b813e904becc80d8d5da38376818a143348413f7149f1340fe04754d4"
2021-12-06 06:28:40 +00:00
dependencies = [
"heck",
"proc-macro2",
"quote",
"syn",
]
2021-12-17 05:33:06 +00:00
[[package]]
name = "flate2"
version = "1.0.23"
2021-12-17 05:33:06 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b39522e96686d38f4bc984b9198e3a0613264abaebaff2c5c918bfa6b6da09af"
2021-12-17 05:33:06 +00:00
dependencies = [
"cfg-if",
"crc32fast",
"libc",
"miniz_oxide",
]
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-channel"
2022-05-27 05:23:55 +00:00
version = "0.3.21"
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 = "c3083ce4b914124575708913bca19bfe887522d6e2e6d0952943f5eac4a74010"
2021-12-06 06:28:40 +00:00
dependencies = [
"futures-core",
]
[[package]]
name = "futures-core"
2022-05-27 05:23:55 +00:00
version = "0.3.21"
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 = "0c09fd04b7e4073ac7156a9539b57a484a8ea920f79c7c675d05d289ab6110d3"
2021-12-06 06:28:40 +00:00
[[package]]
name = "futures-io"
2022-05-27 05:23:55 +00:00
version = "0.3.21"
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 = "fc4045962a5a5e935ee2fdedaa4e08284547402885ab326734432bed5d12966b"
2021-12-06 06:28:40 +00:00
[[package]]
name = "futures-sink"
2022-05-27 05:23:55 +00:00
version = "0.3.21"
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 = "21163e139fa306126e6eedaf49ecdb4588f939600f0b1e770f4205ee4b7fa868"
2021-12-06 06:28:40 +00:00
[[package]]
name = "futures-task"
2022-05-27 05:23:55 +00:00
version = "0.3.21"
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 = "57c66a976bf5909d801bbef33416c41372779507e7a6b3a5e25e4749c58f776a"
2021-12-06 06:28:40 +00:00
[[package]]
name = "futures-util"
2022-05-27 05:23:55 +00:00
version = "0.3.21"
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 = "d8b7abd5d659d9b90c8cba917f6ec750a74e2dc23902ef9cd4cc8c8b22e6036a"
2021-12-06 06:28:40 +00:00
dependencies = [
"futures-core",
"futures-task",
"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",
2022-05-27 05:23:55 +00:00
"wasi 0.10.2+wasi-snapshot-preview1",
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"
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 = "idna"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "418a0a6fab821475f634efe3ccc45c013f742efe03d853e8d3355d5cb850ecf8"
dependencies = [
"matches",
"unicode-bidi",
"unicode-normalization",
]
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",
]
2021-12-06 06:28:40 +00:00
[[package]]
name = "instant"
version = "0.1.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
dependencies = [
"cfg-if",
]
[[package]]
name = "ipconfig"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f7e2f18aece9709094573a9f24f483c4f65caa4298e2f7ae1b71cc65d853fad7"
dependencies = [
2022-04-29 05:40:47 +00:00
"socket2 0.3.19",
2021-12-06 06:28:40 +00:00
"widestring",
"winapi",
"winreg",
]
[[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",
]
2021-12-17 05:33:06 +00:00
[[package]]
name = "miniz_oxide"
version = "0.5.1"
2021-12-17 05:33:06 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d2b29bd4bc3f33391105ebee3589c19197c4271e3e5a9ec9bfe8127eeff8f082"
2021-12-17 05:33:06 +00:00
dependencies = [
"adler",
]
2021-12-06 06:28:40 +00:00
[[package]]
name = "mio"
2022-05-27 05:23:55 +00:00
version = "0.8.3"
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 = "713d550d9b44d89174e066b7a6217ae06234c10cb47819a88290d2b353c31799"
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
]
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"
2022-05-27 05:23:55 +00:00
version = "1.12.0"
2022-04-29 05:40:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-27 05:23:55 +00:00
checksum = "7709cef83f0c1f58f666e746a08b21e0085f7440fa6a29cc194d68aac97a4225"
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"
2022-01-02 05:55:19 +00:00
[[package]]
name = "packet-macros"
version = "0.1.0"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
2021-12-06 06:28:40 +00:00
[[package]]
name = "parking_lot"
version = "0.11.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99"
dependencies = [
"instant",
"lock_api",
"parking_lot_core",
]
[[package]]
name = "parking_lot_core"
version = "0.8.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d76e8e1493bcac0d2766c42737f34458f1c8c50c0d23bcb24ea953affb273216"
dependencies = [
"cfg-if",
"instant",
"libc",
"redox_syscall",
"smallvec",
"winapi",
]
[[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"
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-27 05:23:55 +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-27 05:23:55 +00:00
checksum = "c54b25569025b7fc9651de43004ae593a75ad88543b17178aa5e1b9c4f15f56f"
2021-12-06 06:28:40 +00:00
dependencies = [
2022-05-27 05:23:55 +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-27 05:23:55 +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-27 05:23:55 +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 = [
"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
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",
]
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"
2021-12-19 19:07:54 +00:00
[[package]]
name = "semver"
2022-05-27 05:23:55 +00:00
version = "1.0.9"
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 = "8cb243bdfdb5936c8dc3c45762a19d12ab4550cdc753bc247637d4ec35a040fd"
2021-12-19 19:07:54 +00:00
2021-12-08 06:41:42 +00:00
[[package]]
name = "serde"
2022-05-08 23:38:22 +00:00
version = "1.0.137"
2021-12-08 06:41:42 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-08 23:38:22 +00:00
checksum = "61ea8d54c77f8315140a05f4c7237403bf38b72704d031543aa1d16abbf517d1"
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"
2022-05-08 23:38:22 +00:00
version = "1.0.137"
2021-12-11 21:17:42 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-08 23:38:22 +00:00
checksum = "1f26faba0c3959972377d3b2d306ee9f71faee9714294e41bb777f83f88578be"
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"
2022-05-08 23:38:22 +00:00
version = "1.0.81"
2021-12-08 06:41:42 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-08 23:38:22 +00:00
checksum = "9b7ce2b32a1aed03c558dc61a5cd328f15aff2dbc17daad8fb8af04d2100e15c"
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",
]
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",
]
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
[[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-05-27 05:23:55 +00:00
version = "1.0.95"
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 = "fbaf6116ab8924f39d52792136fb74fd60a80194cf1b1c6ffa6453eef1c3f942"
2021-12-06 06:28:40 +00:00
dependencies = [
"proc-macro2",
"quote",
2022-05-27 05:23:55 +00:00
"unicode-ident",
2021-12-06 06:28:40 +00:00
]
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"
2022-05-27 05:23:55 +00:00
version = "1.0.31"
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 = "bd829fe32373d27f76265620b5309d0340cb8550f523c1dda251d6298069069a"
2021-12-06 06:28:40 +00:00
dependencies = [
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
2022-05-27 05:23:55 +00:00
version = "1.0.31"
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 = "0396bc89e626244658bef819e22d0cc459e795a5ebe878e6ec336d1674a8d79a"
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"
2022-05-08 23:38:22 +00:00
version = "1.18.2"
2021-12-06 06:28:40 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-08 23:38:22 +00:00
checksum = "4903bf0427cf68dddd5aa6a93220756f8be0c34fcfa9f5e6191e103e15a31395"
2021-12-06 06:28:40 +00:00
dependencies = [
"bytes",
"libc",
"memchr",
"mio",
"num_cpus",
2022-04-29 05:40:47 +00:00
"once_cell",
2021-12-06 06:28:40 +00:00
"pin-project-lite",
2022-04-29 05:40:47 +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"
2021-12-18 23:02:23 +00:00
version = "1.7.0"
2021-12-07 06:09:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-18 23:02:23 +00:00
checksum = "b557f72f448c511a979e2564e55d74e6c4432fc96ff4f6241bc6bded342643b7"
2021-12-07 06:09:49 +00:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
2021-12-06 06:28:40 +00:00
[[package]]
name = "tokio-util"
2022-05-27 05:23:55 +00:00
version = "0.6.10"
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 = "36943ee01a6d67977dd3f84a5a1d2efeb4ada3a1ae771cadfaa535d9d9fc6507"
2021-12-06 06:28:40 +00:00
dependencies = [
"bytes",
"futures-core",
"futures-sink",
"log",
"pin-project-lite",
"tokio",
]
[[package]]
name = "trust-dns-proto"
2022-05-27 05:23:55 +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-05-27 05:23:55 +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-05-27 05:23:55 +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-05-27 05:23:55 +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",
"resolv-conf",
"smallvec",
"thiserror",
"tokio",
"trust-dns-proto",
]
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"
source = "registry+https://github.com/rust-lang/crates.io-index"
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-27 05:23:55 +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 = "0.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bc5cf98d8186244414c848017f0e2676b3fcb46807f6668a97dfe67359a3c4b7"
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",
]
2021-12-06 06:28:40 +00:00
[[package]]
name = "wasi"
2022-05-27 05:23:55 +00:00
version = "0.10.2+wasi-snapshot-preview1"
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 = "fd6fbd9a79829dd1ad0cc20627bf1ed606756a7f77edff7b66b7064f9cb327c6"
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-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"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c168940144dd21fd8046987c16a46a33d5fc84eec29ef9dcddc2ac9e31526b7c"
[[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"
version = "0.6.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b2986deb581c4fe11b621998a5e53361efe6b48a151178d0cd9eeffa4dc6acc9"
dependencies = [
"winapi",
]