tmp/Cargo.lock

1376 lines
34 KiB
Plaintext
Raw Normal View History

2021-02-28 11:06:35 +05:30
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
[[package]]
name = "actix"
2021-04-02 11:17:05 +05:30
version = "0.10.0"
2021-02-28 11:06:35 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-02 11:17:05 +05:30
checksum = "1be241f88f3b1e7e9a3fbe3b5a8a0f6915b5a1d7ee0d9a248d3376d01068cc60"
2021-02-28 11:06:35 +05:30
dependencies = [
"actix-rt",
"actix_derive",
"bitflags",
2021-03-09 15:59:38 +05:30
"bytes",
"crossbeam-channel",
2021-04-02 11:17:05 +05:30
"derive_more",
"futures-channel",
2021-02-28 11:06:35 +05:30
"futures-util",
"log",
"once_cell",
"parking_lot",
2021-04-02 11:17:05 +05:30
"pin-project",
2021-02-28 11:06:35 +05:30
"smallvec",
"tokio",
"tokio-util",
2021-04-02 11:17:05 +05:30
"trust-dns-proto",
"trust-dns-resolver",
2021-02-28 11:06:35 +05:30
]
[[package]]
name = "actix-macros"
2021-04-02 11:17:05 +05:30
version = "0.1.3"
2021-02-28 11:06:35 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-02 11:17:05 +05:30
checksum = "b4ca8ce00b267af8ccebbd647de0d61e0674b6e61185cc7a592ff88772bed655"
2021-02-28 11:06:35 +05:30
dependencies = [
"quote",
"syn",
]
[[package]]
name = "actix-rt"
2021-04-02 11:17:05 +05:30
version = "1.1.1"
2021-02-28 11:06:35 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-02 11:17:05 +05:30
checksum = "143fcc2912e0d1de2bcf4e2f720d2a60c28652ab4179685a1ee159e0fb3db227"
2021-02-28 11:06:35 +05:30
dependencies = [
"actix-macros",
2021-04-02 11:17:05 +05:30
"actix-threadpool",
"copyless",
"futures-channel",
"futures-util",
"smallvec",
2021-02-28 11:06:35 +05:30
"tokio",
]
2021-04-02 11:17:05 +05:30
[[package]]
name = "actix-threadpool"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d209f04d002854b9afd3743032a27b066158817965bf5d036824d19ac2cc0e30"
dependencies = [
"derive_more",
"futures-channel",
"lazy_static",
"log",
"num_cpus",
"parking_lot",
"threadpool",
]
2021-02-28 11:06:35 +05:30
[[package]]
name = "actix_derive"
2021-04-02 11:17:05 +05:30
version = "0.5.0"
2021-02-28 11:06:35 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-02 11:17:05 +05:30
checksum = "b95aceadaf327f18f0df5962fedc1bde2f870566a0b9f65c89508a3b1f79334c"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "aho-corasick"
version = "0.7.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7404febffaa47dac81aa44dba71523c9d069b1bdc50a77db41195149e17f68e5"
dependencies = [
"memchr",
]
2021-04-02 11:17:05 +05:30
[[package]]
name = "async-trait"
version = "0.1.48"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "36ea56748e10732c49404c153638a15ec3d6211ec5ff35d9bb20e13b93576adf"
2021-03-09 15:44:26 +05:30
dependencies = [
2021-03-09 15:59:38 +05:30
"proc-macro2",
"quote",
"syn",
2021-03-09 15:44:26 +05:30
]
[[package]]
name = "atty"
version = "0.2.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
dependencies = [
"hermit-abi",
"libc",
"winapi 0.3.9",
]
2021-03-09 15:44:26 +05:30
[[package]]
2021-03-09 15:59:38 +05:30
name = "autocfg"
version = "1.0.1"
2021-03-09 15:44:26 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-03-09 15:59:38 +05:30
checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a"
2021-03-09 15:44:26 +05:30
[[package]]
2021-03-09 15:59:38 +05:30
name = "bincode"
version = "1.3.2"
2021-03-09 15:44:26 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-03-09 15:59:38 +05:30
checksum = "d175dfa69e619905c4c3cdb7c3c203fa3bdd5d51184e3afdb2742c0280493772"
2021-03-09 15:44:26 +05:30
dependencies = [
2021-03-09 15:59:38 +05:30
"byteorder",
"serde",
2021-03-09 15:44:26 +05:30
]
[[package]]
2021-03-09 15:59:38 +05:30
name = "bitflags"
version = "1.2.1"
2021-03-09 15:44:26 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-03-09 15:59:38 +05:30
checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693"
2021-03-09 15:44:26 +05:30
[[package]]
2021-03-09 15:59:38 +05:30
name = "block-buffer"
version = "0.9.0"
2021-03-09 15:44:26 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-03-09 15:59:38 +05:30
checksum = "4152116fd6e9dadb291ae18fc1ec3575ed6d84c29642d97890f4b4a3417297e4"
2021-03-09 15:44:26 +05:30
dependencies = [
2021-03-09 15:59:38 +05:30
"generic-array",
2021-03-09 15:44:26 +05:30
]
[[package]]
2021-03-09 15:59:38 +05:30
name = "byteorder"
version = "1.3.4"
2021-03-09 15:44:26 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-03-09 15:59:38 +05:30
checksum = "08c48aae112d48ed9f069b33538ea9e3e90aa263cfa3d1c24309612b1f7472de"
2021-03-09 15:44:26 +05:30
[[package]]
2021-03-09 15:59:38 +05:30
name = "bytes"
2021-04-02 11:17:05 +05:30
version = "0.5.6"
2021-02-28 23:45:19 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-02 11:17:05 +05:30
checksum = "0e4cec68f03f32e44924783795810fa50a7035d8c8ebe78580ad7e6c703fba38"
[[package]]
name = "cfg-if"
version = "0.1.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
2021-02-28 23:45:19 +05:30
2021-03-09 15:44:26 +05:30
[[package]]
2021-03-09 15:59:38 +05:30
name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
2021-03-09 15:44:26 +05:30
2021-04-02 11:17:05 +05:30
[[package]]
name = "convert_case"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e"
[[package]]
name = "copyless"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a2df960f5d869b2dd8532793fde43eb5427cceb126c929747a26823ab0eeb536"
2021-03-09 15:44:26 +05:30
[[package]]
2021-03-09 15:59:38 +05:30
name = "cpuid-bool"
version = "0.1.2"
2021-03-09 15:44:26 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-03-09 15:59:38 +05:30
checksum = "8aebca1129a03dc6dc2b127edd729435bbc4a37e1d5f4d7513165089ceb02634"
2021-03-09 15:44:26 +05:30
2021-02-28 11:06:35 +05:30
[[package]]
2021-03-09 15:59:38 +05:30
name = "crossbeam-channel"
2021-04-02 11:17:05 +05:30
version = "0.4.4"
2021-02-28 11:06:35 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-02 11:17:05 +05:30
checksum = "b153fe7cbef478c567df0f972e02e6d736db11affe43dfc9c56a9374d1adfb87"
2021-02-28 11:06:35 +05:30
dependencies = [
2021-03-09 15:59:38 +05:30
"crossbeam-utils",
2021-04-02 11:17:05 +05:30
"maybe-uninit",
2021-02-28 11:06:35 +05:30
]
2021-03-09 15:44:26 +05:30
[[package]]
2021-03-09 15:59:38 +05:30
name = "crossbeam-utils"
2021-04-02 11:17:05 +05:30
version = "0.7.2"
2021-03-09 15:44:26 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-02 11:17:05 +05:30
checksum = "c3c7c73a2d1e9fc0886a08b93e98eb643461230d5f1925e4036204d5f2e261a8"
2021-03-09 15:44:26 +05:30
dependencies = [
2021-03-09 15:59:38 +05:30
"autocfg",
2021-04-02 11:17:05 +05:30
"cfg-if 0.1.10",
2021-03-09 15:59:38 +05:30
"lazy_static",
2021-03-09 15:44:26 +05:30
]
2021-02-28 23:45:19 +05:30
[[package]]
2021-03-09 15:59:38 +05:30
name = "darling"
version = "0.10.2"
2021-02-28 23:45:19 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-03-09 15:59:38 +05:30
checksum = "0d706e75d87e35569db781a9b5e2416cff1236a47ed380831f959382ccd5f858"
2021-02-28 23:45:19 +05:30
dependencies = [
2021-04-02 11:05:33 +05:30
"darling_core 0.10.2",
"darling_macro 0.10.2",
]
[[package]]
name = "darling"
version = "0.12.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a06d4a9551359071d1890820e3571252b91229e0712e7c36b08940e603c5a8fc"
dependencies = [
"darling_core 0.12.2",
"darling_macro 0.12.2",
2021-02-28 23:45:19 +05:30
]
2021-02-28 11:06:35 +05:30
[[package]]
2021-03-09 15:59:38 +05:30
name = "darling_core"
version = "0.10.2"
2021-02-28 11:06:35 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-03-09 15:59:38 +05:30
checksum = "f0c960ae2da4de88a91b2d920c2a7233b400bc33cb28453a2987822d8392519b"
dependencies = [
"fnv",
"ident_case",
"proc-macro2",
"quote",
2021-04-02 11:05:33 +05:30
"strsim 0.9.3",
"syn",
]
[[package]]
name = "darling_core"
version = "0.12.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b443e5fb0ddd56e0c9bfa47dc060c5306ee500cb731f2b91432dd65589a77684"
dependencies = [
"fnv",
"ident_case",
"proc-macro2",
"quote",
"strsim 0.10.0",
2021-03-09 15:59:38 +05:30
"syn",
]
2021-02-28 11:06:35 +05:30
2021-03-09 15:44:26 +05:30
[[package]]
2021-03-09 15:59:38 +05:30
name = "darling_macro"
version = "0.10.2"
2021-03-09 15:44:26 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-03-09 15:59:38 +05:30
checksum = "d9b5a2f4ac4969822c62224815d069952656cadc7084fdca9751e6d959189b72"
2021-03-09 15:44:26 +05:30
dependencies = [
2021-04-02 11:05:33 +05:30
"darling_core 0.10.2",
"quote",
"syn",
]
[[package]]
name = "darling_macro"
version = "0.12.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c0220073ce504f12a70efc4e7cdaea9e9b1b324872e7ad96a208056d7a638b81"
dependencies = [
"darling_core 0.12.2",
2021-03-09 15:59:38 +05:30
"quote",
"syn",
2021-03-09 15:44:26 +05:30
]
2021-02-28 11:06:35 +05:30
[[package]]
2021-03-09 15:59:38 +05:30
name = "derive_builder"
version = "0.9.0"
2021-02-28 11:06:35 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-03-09 15:59:38 +05:30
checksum = "a2658621297f2cf68762a6f7dc0bb7e1ff2cfd6583daef8ee0fed6f7ec468ec0"
2021-02-28 11:06:35 +05:30
dependencies = [
2021-04-02 11:05:33 +05:30
"darling 0.10.2",
"derive_builder_core 0.9.0",
2021-03-09 15:59:38 +05:30
"proc-macro2",
"quote",
"syn",
2021-02-28 11:06:35 +05:30
]
2021-04-02 11:05:33 +05:30
[[package]]
name = "derive_builder"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "78ef25735c9f0d0c547d2794701600c94abf030ecb740fad1673fa64461f3573"
dependencies = [
"derive_builder_core 0.10.0",
"derive_builder_macro",
]
2021-03-09 15:44:26 +05:30
[[package]]
2021-03-09 15:59:38 +05:30
name = "derive_builder_core"
version = "0.9.0"
2021-02-28 23:32:16 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-03-09 15:59:38 +05:30
checksum = "2791ea3e372c8495c0bc2033991d76b512cd799d07491fbd6890124db9458bef"
2021-02-28 23:32:16 +05:30
dependencies = [
2021-04-02 11:05:33 +05:30
"darling 0.10.2",
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "derive_builder_core"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3150f1e84602847b99d3eeb702487fc364f7d6c94f634e944a68fdbaea09e457"
dependencies = [
"darling 0.12.2",
2021-03-09 15:59:38 +05:30
"proc-macro2",
"quote",
"syn",
2021-02-28 23:32:16 +05:30
]
2021-04-02 11:05:33 +05:30
[[package]]
name = "derive_builder_macro"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5ca1008bddefdc08d1e734aeb27b94f384390af261b4d1a8fb51fe19c577f05c"
dependencies = [
"derive_builder_core 0.10.0",
"syn",
]
2021-02-28 11:06:35 +05:30
[[package]]
2021-03-09 15:59:38 +05:30
name = "derive_more"
2021-04-02 11:17:05 +05:30
version = "0.99.13"
2021-02-28 11:06:35 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-02 11:17:05 +05:30
checksum = "f82b1b72f1263f214c0f823371768776c4f5841b942c9883aa8e5ec584fd0ba6"
2021-03-09 15:59:38 +05:30
dependencies = [
2021-04-02 11:17:05 +05:30
"convert_case",
2021-03-09 15:59:38 +05:30
"proc-macro2",
"quote",
"syn",
]
2021-02-28 11:06:35 +05:30
2021-03-09 15:44:26 +05:30
[[package]]
2021-03-09 15:59:38 +05:30
name = "digest"
version = "0.9.0"
2021-03-09 15:44:26 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-03-09 15:59:38 +05:30
checksum = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066"
2021-03-09 15:44:26 +05:30
dependencies = [
2021-03-09 15:59:38 +05:30
"generic-array",
2021-03-09 15:44:26 +05:30
]
2021-04-02 11:17:05 +05:30
[[package]]
name = "enum-as-inner"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7c5f0096a91d210159eceb2ff5e1c4da18388a170e1e3ce948aac9c8fdbbf595"
dependencies = [
"heck",
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "env_logger"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "44533bbbb3bb3c1fa17d9f2e4e38bbbaf8396ba82193c4cb1b6445d711445d36"
dependencies = [
"atty",
"humantime",
"log",
"regex",
"termcolor",
]
2021-02-28 23:45:19 +05:30
[[package]]
2021-03-09 15:59:38 +05:30
name = "fnv"
version = "1.0.7"
2021-02-28 23:45:19 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-03-09 15:59:38 +05:30
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
2021-02-28 23:45:19 +05:30
2021-04-02 11:17:05 +05:30
[[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 = "fuchsia-zircon"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82"
dependencies = [
"bitflags",
"fuchsia-zircon-sys",
]
[[package]]
name = "fuchsia-zircon-sys"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7"
[[package]]
name = "futures"
version = "0.3.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7f55667319111d593ba876406af7c409c0ebb44dc4be6132a783ccf163ea14c1"
dependencies = [
"futures-channel",
"futures-core",
"futures-io",
"futures-sink",
"futures-task",
"futures-util",
]
[[package]]
name = "futures-channel"
version = "0.3.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8c2dd2df839b57db9ab69c2c9d8f3e8c81984781937fe2807dc6dcf3b2ad2939"
dependencies = [
"futures-core",
"futures-sink",
]
2021-03-09 15:44:26 +05:30
[[package]]
2021-03-09 15:59:38 +05:30
name = "futures-core"
version = "0.3.13"
2021-03-09 15:44:26 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-03-09 15:59:38 +05:30
checksum = "15496a72fabf0e62bdc3df11a59a3787429221dd0710ba8ef163d6f7a9112c94"
2021-03-09 15:44:26 +05:30
2021-04-02 11:17:05 +05:30
[[package]]
name = "futures-io"
version = "0.3.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d71c2c65c57704c32f5241c1223167c2c3294fd34ac020c807ddbe6db287ba59"
2021-02-28 23:32:16 +05:30
[[package]]
2021-03-09 15:59:38 +05:30
name = "futures-sink"
version = "0.3.13"
2021-02-28 23:32:16 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-03-09 15:59:38 +05:30
checksum = "85754d98985841b7d4f5e8e6fbfa4a4ac847916893ec511a2917ccd8525b8bb3"
2021-02-28 23:32:16 +05:30
2021-02-28 11:06:35 +05:30
[[package]]
2021-03-09 15:59:38 +05:30
name = "futures-task"
version = "0.3.13"
2021-02-28 11:06:35 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-03-09 15:59:38 +05:30
checksum = "fa189ef211c15ee602667a6fcfe1c1fd9e07d42250d2156382820fba33c9df80"
2021-02-28 11:06:35 +05:30
2021-03-09 15:44:26 +05:30
[[package]]
2021-03-09 15:59:38 +05:30
name = "futures-util"
version = "0.3.13"
2021-03-09 15:44:26 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-03-09 15:59:38 +05:30
checksum = "1812c7ab8aedf8d6f2701a43e1243acdbcc2b36ab26e2ad421eb99ac963d96d1"
dependencies = [
2021-04-02 11:17:05 +05:30
"futures-channel",
2021-03-09 15:59:38 +05:30
"futures-core",
2021-04-02 11:17:05 +05:30
"futures-io",
"futures-sink",
2021-03-09 15:59:38 +05:30
"futures-task",
2021-04-02 11:17:05 +05:30
"memchr",
"pin-project-lite 0.2.6",
2021-03-09 15:59:38 +05:30
"pin-utils",
2021-04-02 11:17:05 +05:30
"slab",
2021-03-09 15:59:38 +05:30
]
2021-03-09 15:44:26 +05:30
[[package]]
2021-03-09 15:59:38 +05:30
name = "generic-array"
version = "0.14.4"
2021-03-09 15:44:26 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-03-09 15:59:38 +05:30
checksum = "501466ecc8a30d1d3b7fc9229b122b2ce8ed6e9d9223f1138d4babb253e51817"
2021-03-09 15:44:26 +05:30
dependencies = [
2021-03-09 15:59:38 +05:30
"typenum",
"version_check",
2021-03-09 15:44:26 +05:30
]
2021-04-02 11:17:05 +05:30
[[package]]
name = "getrandom"
version = "0.1.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce"
dependencies = [
"cfg-if 1.0.0",
"libc",
"wasi 0.9.0+wasi-snapshot-preview1",
]
2021-03-09 15:44:26 +05:30
[[package]]
2021-03-09 15:59:38 +05:30
name = "getrandom"
version = "0.2.2"
2021-03-09 15:44:26 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-03-09 15:59:38 +05:30
checksum = "c9495705279e7140bf035dde1f6e750c162df8b625267cd52cc44e0b156732c8"
2021-03-09 15:44:26 +05:30
dependencies = [
2021-04-02 11:17:05 +05:30
"cfg-if 1.0.0",
2021-03-09 15:59:38 +05:30
"libc",
2021-04-02 11:17:05 +05:30
"wasi 0.10.2+wasi-snapshot-preview1",
]
[[package]]
name = "heck"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "87cbf45460356b7deeb5e3415b5563308c0a9b057c85e12b06ad551f98d0a6ac"
dependencies = [
"unicode-segmentation",
]
[[package]]
name = "hermit-abi"
version = "0.1.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "322f4de77956e22ed0e5032c359a0f1273f1f7f0d79bfa3b8ffbc730d7fbcc5c"
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 0.3.9",
2021-03-09 15:44:26 +05:30
]
[[package]]
name = "humantime"
version = "1.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "df004cfca50ef23c36850aaaa59ad52cc70d0e90243c3c7737a4dd32dc7a3c4f"
dependencies = [
"quick-error",
]
2021-03-09 15:44:26 +05:30
[[package]]
2021-03-09 15:59:38 +05:30
name = "ident_case"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
2021-04-02 11:17:05 +05:30
[[package]]
name = "idna"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "89829a5d69c23d348314a7ac337fe39173b61149a9864deabd260983aed48c21"
dependencies = [
"matches",
"unicode-bidi",
"unicode-normalization",
]
2021-02-28 23:45:19 +05:30
[[package]]
2021-03-09 15:59:38 +05:30
name = "instant"
version = "0.1.9"
2021-02-28 23:45:19 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-03-09 15:59:38 +05:30
checksum = "61124eeebbd69b8190558df225adf7e4caafce0d743919e5d6b19652314ec5ec"
2021-02-28 23:45:19 +05:30
dependencies = [
2021-04-02 11:17:05 +05:30
"cfg-if 1.0.0",
]
[[package]]
name = "iovec"
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b2b3ea6ff95e175473f8ffe6a7eb7c00d054240321b84c57051175fe3c1e075e"
dependencies = [
"libc",
]
[[package]]
name = "ipconfig"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f7e2f18aece9709094573a9f24f483c4f65caa4298e2f7ae1b71cc65d853fad7"
dependencies = [
"socket2",
"widestring",
"winapi 0.3.9",
"winreg",
2021-02-28 23:45:19 +05:30
]
2021-02-28 11:06:35 +05:30
2021-03-09 15:44:26 +05:30
[[package]]
2021-03-09 15:59:38 +05:30
name = "itoa"
version = "0.4.7"
2021-03-09 15:44:26 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-03-09 15:59:38 +05:30
checksum = "dd25036021b0de88a0aff6b850051563c6516d0bf53f8638938edbb9de732736"
2021-03-09 15:44:26 +05:30
2021-04-02 11:17:05 +05:30
[[package]]
name = "kernel32-sys"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d"
dependencies = [
"winapi 0.2.8",
"winapi-build",
]
2021-03-09 15:44:26 +05:30
[[package]]
2021-03-09 15:59:38 +05:30
name = "lazy_static"
version = "1.4.0"
2021-03-09 15:44:26 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-03-09 15:59:38 +05:30
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
2021-03-09 15:44:26 +05:30
[[package]]
2021-03-09 15:59:38 +05:30
name = "libc"
2021-04-02 11:17:05 +05:30
version = "0.2.92"
2021-03-09 15:44:26 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-02 11:17:05 +05:30
checksum = "56d855069fafbb9b344c0f962150cd2c1187975cb1c22c1522c240d8c4986714"
[[package]]
name = "linked-hash-map"
version = "0.5.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7fb9b38af92608140b86b693604b9ffcc5824240a484d1ecd4795bacb2fe88f3"
2021-03-09 15:44:26 +05:30
2021-02-28 11:06:35 +05:30
[[package]]
2021-03-09 15:59:38 +05:30
name = "lock_api"
version = "0.4.2"
2021-03-09 15:44:26 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-03-09 15:59:38 +05:30
checksum = "dd96ffd135b2fd7b973ac026d28085defbe8983df057ced3eb4f2130b0831312"
2021-03-09 15:44:26 +05:30
dependencies = [
2021-03-09 15:59:38 +05:30
"scopeguard",
2021-03-09 15:44:26 +05:30
]
[[package]]
2021-03-09 15:59:38 +05:30
name = "log"
version = "0.4.14"
2021-03-09 15:44:26 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-03-09 15:59:38 +05:30
checksum = "51b9bbe6c47d51fc3e1a9b945965946b4c44142ab8792c50835a980d362c2710"
2021-03-09 15:44:26 +05:30
dependencies = [
2021-04-02 11:17:05 +05:30
"cfg-if 1.0.0",
]
[[package]]
name = "lru-cache"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "31e24f1ad8321ca0e8a1e0ac13f23cb668e6f5466c2c57319f6a5cf1cc8e3b1c"
dependencies = [
"linked-hash-map",
2021-02-28 11:06:35 +05:30
]
2021-03-09 15:44:26 +05:30
[[package]]
2021-03-09 15:59:38 +05:30
name = "m_captcha"
2021-04-02 11:05:33 +05:30
version = "0.1.3"
2021-03-09 15:44:26 +05:30
dependencies = [
2021-03-09 15:59:38 +05:30
"actix",
"actix-rt",
2021-04-02 11:05:33 +05:30
"derive_builder 0.9.0",
2021-03-09 15:59:38 +05:30
"derive_more",
"log",
2021-03-09 15:59:38 +05:30
"pow_sha256",
"pretty_env_logger",
2021-04-02 11:17:05 +05:30
"rand 0.8.3",
2021-03-09 15:59:38 +05:30
"serde",
"serde_json",
2021-03-09 15:44:26 +05:30
]
2021-04-02 11:17:05 +05:30
[[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.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7ffc5c5338469d4d3ea17d269fa8ea3512ad247247c30bd2df69e68309ed0a08"
[[package]]
name = "maybe-uninit"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "60302e4db3a61da70c0cb7991976248362f30319e88850c487b9b95bbf059e00"
2021-02-28 15:05:39 +05:30
[[package]]
2021-03-09 15:59:38 +05:30
name = "memchr"
version = "2.3.4"
2021-02-28 15:05:39 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-03-09 15:59:38 +05:30
checksum = "0ee1c47aaa256ecabcaea351eae4a9b01ef39ed810004e298d2511ed284b1525"
2021-02-28 15:05:39 +05:30
[[package]]
2021-03-09 15:59:38 +05:30
name = "mio"
2021-04-02 11:17:05 +05:30
version = "0.6.23"
2021-02-28 15:05:39 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-02 11:17:05 +05:30
checksum = "4afd66f5b91bf2a3bc13fad0e21caedac168ca4c707504e75585648ae80e4cc4"
2021-02-28 15:05:39 +05:30
dependencies = [
2021-04-02 11:17:05 +05:30
"cfg-if 0.1.10",
"fuchsia-zircon",
"fuchsia-zircon-sys",
"iovec",
"kernel32-sys",
2021-03-09 15:59:38 +05:30
"libc",
"log",
"miow",
2021-04-02 11:17:05 +05:30
"net2",
"slab",
"winapi 0.2.8",
]
[[package]]
name = "mio-uds"
version = "0.6.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "afcb699eb26d4332647cc848492bbc15eafb26f08d0304550d5aa1f612e066f0"
dependencies = [
"iovec",
"libc",
"mio",
2021-02-28 15:05:39 +05:30
]
2021-02-28 11:06:35 +05:30
[[package]]
2021-03-09 15:59:38 +05:30
name = "miow"
2021-04-02 11:17:05 +05:30
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ebd808424166322d4a38da87083bfddd3ac4c131334ed55856112eb06d46944d"
dependencies = [
"kernel32-sys",
"net2",
"winapi 0.2.8",
"ws2_32-sys",
]
[[package]]
name = "net2"
version = "0.2.37"
2021-02-28 23:32:16 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-02 11:17:05 +05:30
checksum = "391630d12b68002ae1e25e8f974306474966550ad82dac6886fb8910c19568ae"
2021-02-28 23:32:16 +05:30
dependencies = [
2021-04-02 11:17:05 +05:30
"cfg-if 0.1.10",
"libc",
"winapi 0.3.9",
]
[[package]]
2021-04-02 11:17:05 +05:30
name = "num_cpus"
version = "1.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-02 11:17:05 +05:30
checksum = "05499f3756671c15885fee9034446956fff3f243d6077b91e5767df161f766b3"
dependencies = [
2021-04-02 11:17:05 +05:30
"hermit-abi",
"libc",
2021-02-28 23:32:16 +05:30
]
2021-03-09 15:44:26 +05:30
[[package]]
2021-03-09 15:59:38 +05:30
name = "once_cell"
version = "1.7.2"
2021-03-09 15:44:26 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-03-09 15:59:38 +05:30
checksum = "af8b08b04175473088b46763e51ee54da5f9a164bc162f615b91bc179dbf15a3"
2021-03-09 15:44:26 +05:30
2021-02-28 11:06:35 +05:30
[[package]]
2021-03-09 15:59:38 +05:30
name = "opaque-debug"
version = "0.3.0"
2021-02-28 11:06:35 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-03-09 15:59:38 +05:30
checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5"
2021-02-28 11:06:35 +05:30
2021-03-09 15:44:26 +05:30
[[package]]
2021-03-09 15:59:38 +05:30
name = "parking_lot"
version = "0.11.1"
2021-03-09 15:44:26 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-03-09 15:59:38 +05:30
checksum = "6d7744ac029df22dca6284efe4e898991d28e3085c706c972bcd7da4a27a15eb"
2021-03-09 15:44:26 +05:30
dependencies = [
2021-03-09 15:59:38 +05:30
"instant",
"lock_api",
"parking_lot_core",
2021-03-09 15:44:26 +05:30
]
2021-02-28 23:32:16 +05:30
[[package]]
2021-03-09 15:59:38 +05:30
name = "parking_lot_core"
version = "0.8.3"
2021-03-09 15:44:26 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-03-09 15:59:38 +05:30
checksum = "fa7a782938e745763fe6907fc6ba86946d72f49fe7e21de074e08128a99fb018"
2021-03-09 15:44:26 +05:30
dependencies = [
2021-04-02 11:17:05 +05:30
"cfg-if 1.0.0",
2021-03-09 15:59:38 +05:30
"instant",
2021-03-09 15:44:26 +05:30
"libc",
2021-03-09 15:59:38 +05:30
"redox_syscall",
"smallvec",
2021-04-02 11:17:05 +05:30
"winapi 0.3.9",
]
[[package]]
name = "percent-encoding"
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e"
[[package]]
name = "pin-project"
version = "0.4.28"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "918192b5c59119d51e0cd221f4d49dde9112824ba717369e903c97d076083d0f"
dependencies = [
"pin-project-internal",
]
[[package]]
name = "pin-project-internal"
version = "0.4.28"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3be26700300be6d9d23264c73211d8190e755b6b5ca7a1b28230025511b52a5e"
dependencies = [
"proc-macro2",
"quote",
"syn",
2021-03-09 15:44:26 +05:30
]
2021-04-02 11:17:05 +05:30
[[package]]
name = "pin-project-lite"
version = "0.1.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "257b64915a082f7811703966789728173279bdebb956b143dbcd23f6f970a777"
2021-03-09 15:44:26 +05:30
[[package]]
2021-03-09 15:59:38 +05:30
name = "pin-project-lite"
version = "0.2.6"
2021-03-09 15:44:26 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-03-09 15:59:38 +05:30
checksum = "dc0e1f259c92177c30a4c9d177246edd0a3568b25756a977d0632cf8fa37e905"
2021-03-09 15:44:26 +05:30
[[package]]
2021-03-09 15:59:38 +05:30
name = "pin-utils"
version = "0.1.0"
2021-03-09 15:44:26 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-03-09 15:59:38 +05:30
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
2021-03-09 15:44:26 +05:30
[[package]]
2021-03-09 15:59:38 +05:30
name = "pow_sha256"
2021-04-02 11:05:33 +05:30
version = "0.2.1"
source = "git+https://github.com/mcaptcha/pow_sha256#f97858cd639fa2f807603d2515a6ae09191629cd"
2021-03-09 15:44:26 +05:30
dependencies = [
2021-03-09 15:59:38 +05:30
"bincode",
2021-04-02 11:05:33 +05:30
"derive_builder 0.10.0",
2021-03-09 15:59:38 +05:30
"serde",
"sha2",
2021-03-09 15:44:26 +05:30
]
[[package]]
2021-03-09 15:59:38 +05:30
name = "ppv-lite86"
version = "0.2.10"
2021-03-09 15:44:26 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-03-09 15:59:38 +05:30
checksum = "ac74c624d6b2d21f425f752262f42188365d7b8ff1aff74c82e45136510a4857"
2021-03-09 15:44:26 +05:30
[[package]]
name = "pretty_env_logger"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "926d36b9553851b8b0005f1275891b392ee4d2d833852c417ed025477350fb9d"
dependencies = [
"env_logger",
"log",
]
2021-03-09 15:44:26 +05:30
[[package]]
2021-03-09 15:59:38 +05:30
name = "proc-macro2"
2021-04-02 11:17:05 +05:30
version = "1.0.26"
2021-03-09 15:44:26 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-02 11:17:05 +05:30
checksum = "a152013215dca273577e18d2bf00fa862b89b24169fb78c4c95aeb07992c9cec"
2021-03-09 15:44:26 +05:30
dependencies = [
2021-03-09 15:59:38 +05:30
"unicode-xid",
2021-03-09 15:44:26 +05:30
]
2021-04-02 11:17:05 +05:30
[[package]]
name = "quick-error"
version = "1.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
2021-03-09 15:44:26 +05:30
[[package]]
2021-03-09 15:59:38 +05:30
name = "quote"
version = "1.0.9"
2021-03-09 15:44:26 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-03-09 15:59:38 +05:30
checksum = "c3d0b9745dc2debf507c8422de05d7226cc1f0644216dfdfead988f9b1ab32a7"
2021-03-09 15:44:26 +05:30
dependencies = [
2021-03-09 15:59:38 +05:30
"proc-macro2",
2021-03-09 15:44:26 +05:30
]
2021-04-02 11:17:05 +05:30
[[package]]
name = "rand"
version = "0.7.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03"
dependencies = [
"getrandom 0.1.16",
"libc",
"rand_chacha 0.2.2",
"rand_core 0.5.1",
"rand_hc 0.2.0",
]
2021-03-09 15:44:26 +05:30
[[package]]
2021-03-09 15:59:38 +05:30
name = "rand"
version = "0.8.3"
2021-03-09 15:44:26 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-03-09 15:59:38 +05:30
checksum = "0ef9e7e66b4468674bfcb0c81af8b7fa0bb154fa9f28eb840da5c447baeb8d7e"
dependencies = [
"libc",
2021-04-02 11:17:05 +05:30
"rand_chacha 0.3.0",
"rand_core 0.6.2",
"rand_hc 0.3.0",
]
[[package]]
name = "rand_chacha"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402"
dependencies = [
"ppv-lite86",
"rand_core 0.5.1",
2021-03-09 15:44:26 +05:30
]
[[package]]
2021-03-09 15:59:38 +05:30
name = "rand_chacha"
version = "0.3.0"
2021-03-09 15:44:26 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-03-09 15:59:38 +05:30
checksum = "e12735cf05c9e10bf21534da50a147b924d555dc7a547c42e6bb2d5b6017ae0d"
2021-03-09 15:44:26 +05:30
dependencies = [
2021-03-09 15:59:38 +05:30
"ppv-lite86",
2021-04-02 11:17:05 +05:30
"rand_core 0.6.2",
]
[[package]]
name = "rand_core"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19"
dependencies = [
"getrandom 0.1.16",
2021-03-09 15:44:26 +05:30
]
[[package]]
2021-03-09 15:59:38 +05:30
name = "rand_core"
version = "0.6.2"
2021-03-09 15:44:26 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-03-09 15:59:38 +05:30
checksum = "34cf66eb183df1c5876e2dcf6b13d57340741e8dc255b48e40a26de954d06ae7"
2021-03-09 15:44:26 +05:30
dependencies = [
2021-04-02 11:17:05 +05:30
"getrandom 0.2.2",
]
[[package]]
name = "rand_hc"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c"
dependencies = [
"rand_core 0.5.1",
2021-03-09 15:44:26 +05:30
]
[[package]]
2021-03-09 15:59:38 +05:30
name = "rand_hc"
version = "0.3.0"
2021-03-09 15:44:26 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-03-09 15:59:38 +05:30
checksum = "3190ef7066a446f2e7f42e239d161e905420ccab01eb967c9eb27d21b2322a73"
2021-03-09 15:44:26 +05:30
dependencies = [
2021-04-02 11:17:05 +05:30
"rand_core 0.6.2",
2021-03-09 15:44:26 +05:30
]
2021-02-28 11:06:35 +05:30
[[package]]
2021-03-09 15:59:38 +05:30
name = "redox_syscall"
version = "0.2.5"
2021-02-28 11:06:35 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-03-09 15:59:38 +05:30
checksum = "94341e4e44e24f6b591b59e47a8a027df12e008d73fd5672dbea9cc22f4507d9"
dependencies = [
"bitflags",
]
2021-02-28 11:06:35 +05:30
[[package]]
name = "regex"
version = "1.4.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "957056ecddbeba1b26965114e191d2e8589ce74db242b6ea25fc4062427a5c19"
dependencies = [
"aho-corasick",
"memchr",
"regex-syntax",
]
[[package]]
name = "regex-syntax"
version = "0.6.23"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "24d5f089152e60f62d28b835fbff2cd2e8dc0baf1ac13343bef92ab7eed84548"
2021-04-02 11:17:05 +05:30
[[package]]
name = "resolv-conf"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "52e44394d2086d010551b14b53b1f24e31647570cd1deb0379e2c21b329aba00"
dependencies = [
"hostname",
"quick-error",
]
2021-02-28 11:06:35 +05:30
[[package]]
2021-03-09 15:59:38 +05:30
name = "ryu"
version = "1.0.5"
2021-02-28 11:06:35 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-03-09 15:59:38 +05:30
checksum = "71d301d4193d031abdd79ff7e3dd721168a9572ef3fe51a1517aba235bd8f86e"
2021-02-28 11:06:35 +05:30
2021-02-28 23:32:16 +05:30
[[package]]
2021-03-09 15:59:38 +05:30
name = "scopeguard"
version = "1.1.0"
2021-02-28 23:32:16 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-03-09 15:59:38 +05:30
checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
[[package]]
2021-03-09 15:59:38 +05:30
name = "serde"
2021-04-02 11:17:05 +05:30
version = "1.0.125"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-02 11:17:05 +05:30
checksum = "558dc50e1a5a5fa7112ca2ce4effcb321b0300c0d4ccf0776a9f60cd89031171"
dependencies = [
2021-03-09 15:59:38 +05:30
"serde_derive",
2021-02-28 23:32:16 +05:30
]
2021-02-28 11:06:35 +05:30
[[package]]
2021-03-09 15:59:38 +05:30
name = "serde_derive"
2021-04-02 11:17:05 +05:30
version = "1.0.125"
2021-02-28 11:06:35 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-02 11:17:05 +05:30
checksum = "b093b7a2bb58203b5da3056c05b4ec1fed827dcfdb37347a8841695263b3d06d"
2021-02-28 11:06:35 +05:30
dependencies = [
2021-03-09 15:44:26 +05:30
"proc-macro2",
"quote",
2021-03-09 15:59:38 +05:30
"syn",
2021-02-28 11:06:35 +05:30
]
[[package]]
2021-03-09 15:59:38 +05:30
name = "serde_json"
version = "1.0.64"
2021-02-28 11:06:35 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-03-09 15:59:38 +05:30
checksum = "799e97dc9fdae36a5c8b8f2cae9ce2ee9fdce2058c57a93e6099d919fd982f79"
2021-02-28 11:06:35 +05:30
dependencies = [
2021-03-09 15:59:38 +05:30
"itoa",
"ryu",
"serde",
2021-02-28 11:06:35 +05:30
]
2021-02-28 23:45:19 +05:30
[[package]]
2021-03-09 15:59:38 +05:30
name = "sha2"
2021-02-28 15:05:39 +05:30
version = "0.9.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-03-09 15:59:38 +05:30
checksum = "fa827a14b29ab7f44778d14a88d3cb76e949c45083f7dbfa507d0cb699dc12de"
dependencies = [
"block-buffer",
2021-04-02 11:17:05 +05:30
"cfg-if 1.0.0",
2021-03-09 15:59:38 +05:30
"cpuid-bool",
"digest",
"opaque-debug",
]
2021-02-28 15:05:39 +05:30
2021-03-09 15:44:26 +05:30
[[package]]
2021-03-09 15:59:38 +05:30
name = "signal-hook-registry"
version = "1.3.0"
2021-03-09 15:44:26 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-03-09 15:59:38 +05:30
checksum = "16f1d0fef1604ba8f7a073c7e701f213e056707210e9020af4528e0101ce11a6"
dependencies = [
"libc",
]
2021-03-09 15:44:26 +05:30
2021-04-02 11:17:05 +05:30
[[package]]
name = "slab"
version = "0.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c111b5bd5695e56cffe5129854aa230b39c93a305372fdbb2668ca2394eea9f8"
2021-03-09 15:44:26 +05:30
[[package]]
2021-03-09 15:59:38 +05:30
name = "smallvec"
version = "1.6.1"
2021-03-09 15:44:26 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-03-09 15:59:38 +05:30
checksum = "fe0f37c9e8f3c5a4a66ad655a93c74daac4ad00c441533bf5c6e7990bb42604e"
2021-03-09 15:44:26 +05:30
2021-04-02 11:17:05 +05:30
[[package]]
name = "socket2"
version = "0.3.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "122e570113d28d773067fab24266b66753f6ea915758651696b6e35e49f88d6e"
dependencies = [
"cfg-if 1.0.0",
"libc",
"winapi 0.3.9",
]
2021-03-09 15:44:26 +05:30
[[package]]
2021-03-09 15:59:38 +05:30
name = "strsim"
version = "0.9.3"
2021-03-09 15:44:26 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-03-09 15:59:38 +05:30
checksum = "6446ced80d6c486436db5c078dde11a9f73d42b57fb273121e160b84f63d894c"
2021-03-09 15:44:26 +05:30
2021-04-02 11:05:33 +05:30
[[package]]
name = "strsim"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
2021-02-28 23:45:19 +05:30
[[package]]
2021-03-09 15:59:38 +05:30
name = "syn"
2021-04-02 11:17:05 +05:30
version = "1.0.68"
2021-02-28 23:45:19 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-02 11:17:05 +05:30
checksum = "3ce15dd3ed8aa2f8eeac4716d6ef5ab58b6b9256db41d7e1a0224c2788e8fd87"
2021-02-28 23:45:19 +05:30
dependencies = [
2021-03-09 15:59:38 +05:30
"proc-macro2",
"quote",
"unicode-xid",
2021-02-28 23:45:19 +05:30
]
[[package]]
name = "termcolor"
version = "1.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2dfed899f0eb03f32ee8c6a0aabdb8a7949659e3466561fc0adf54e26d88c5f4"
dependencies = [
"winapi-util",
]
2021-04-02 11:17:05 +05:30
[[package]]
name = "thiserror"
version = "1.0.24"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e0f4a65597094d4483ddaed134f409b2cb7c1beccf25201a9f73c719254fa98e"
dependencies = [
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
version = "1.0.24"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7765189610d8241a44529806d6fd1f2e0a08734313a35d5b3a556f92b381f3c0"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "threadpool"
version = "1.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d050e60b33d41c19108b32cea32164033a9013fe3b46cbd4457559bfbf77afaa"
dependencies = [
"num_cpus",
]
[[package]]
name = "tinyvec"
version = "1.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "317cca572a0e89c3ce0ca1f1bdc9369547fe318a683418e42ac8f59d14701023"
dependencies = [
"tinyvec_macros",
]
[[package]]
name = "tinyvec_macros"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
2021-02-28 11:06:35 +05:30
[[package]]
name = "tokio"
2021-04-02 11:17:05 +05:30
version = "0.2.25"
2021-02-28 11:06:35 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-02 11:17:05 +05:30
checksum = "6703a273949a90131b290be1fe7b039d0fc884aa1935860dfcbe056f28cd8092"
2021-02-28 11:06:35 +05:30
dependencies = [
2021-03-09 15:59:38 +05:30
"bytes",
2021-04-02 11:17:05 +05:30
"fnv",
"futures-core",
"iovec",
"lazy_static",
2021-02-28 11:06:35 +05:30
"libc",
"memchr",
"mio",
2021-04-02 11:17:05 +05:30
"mio-uds",
"pin-project-lite 0.1.12",
2021-02-28 11:06:35 +05:30
"signal-hook-registry",
2021-04-02 11:17:05 +05:30
"slab",
"winapi 0.3.9",
2021-02-28 11:06:35 +05:30
]
[[package]]
name = "tokio-util"
2021-04-02 11:17:05 +05:30
version = "0.3.1"
2021-02-28 11:06:35 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-02 11:17:05 +05:30
checksum = "be8242891f2b6cbef26a2d7e8605133c2c554cd35b3e4948ea892d6d68436499"
2021-02-28 11:06:35 +05:30
dependencies = [
2021-03-09 15:59:38 +05:30
"bytes",
2021-02-28 11:06:35 +05:30
"futures-core",
2021-04-02 11:17:05 +05:30
"futures-io",
2021-02-28 11:06:35 +05:30
"futures-sink",
"log",
2021-04-02 11:17:05 +05:30
"pin-project-lite 0.1.12",
2021-02-28 11:06:35 +05:30
"tokio",
]
2021-04-02 11:17:05 +05:30
[[package]]
name = "trust-dns-proto"
version = "0.19.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1cad71a0c0d68ab9941d2fb6e82f8fb2e86d9945b94e1661dd0aaea2b88215a9"
dependencies = [
"async-trait",
"cfg-if 1.0.0",
"enum-as-inner",
"futures",
"idna",
"lazy_static",
"log",
"rand 0.7.3",
"smallvec",
"thiserror",
"tokio",
"url",
]
[[package]]
name = "trust-dns-resolver"
version = "0.19.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "710f593b371175db53a26d0b38ed2978fafb9e9e8d3868b1acd753ea18df0ceb"
dependencies = [
"cfg-if 0.1.10",
"futures",
"ipconfig",
"lazy_static",
"log",
"lru-cache",
"resolv-conf",
"smallvec",
"thiserror",
"tokio",
"trust-dns-proto",
]
2021-02-28 23:32:16 +05:30
[[package]]
name = "typenum"
2021-04-02 11:17:05 +05:30
version = "1.13.0"
2021-02-28 23:32:16 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-02 11:17:05 +05:30
checksum = "879f6906492a7cd215bfa4cf595b600146ccfac0c79bcbd1f3000162af5e8b06"
[[package]]
name = "unicode-bidi"
version = "0.3.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "49f2bd0c6468a8230e1db229cff8029217cf623c767ea5d60bfbd42729ea54d5"
dependencies = [
"matches",
]
[[package]]
name = "unicode-normalization"
version = "0.1.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "07fbfce1c8a97d547e8b5334978438d9d6ec8c20e38f56d4a4374d181493eaef"
dependencies = [
"tinyvec",
]
[[package]]
name = "unicode-segmentation"
version = "1.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bb0d2e7be6ae3a5fa87eed5fb451aff96f2573d2694942e40543ae0bbe19c796"
2021-02-28 23:32:16 +05:30
2021-02-28 11:06:35 +05:30
[[package]]
name = "unicode-xid"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f7fe0bb3479651439c9112f72b6c505038574c9fbb575ed1bf3b797fa39dd564"
2021-04-02 11:17:05 +05:30
[[package]]
name = "url"
version = "2.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9ccd964113622c8e9322cfac19eb1004a07e636c545f325da085d5cdde6f1f8b"
dependencies = [
"form_urlencoded",
"idna",
"matches",
"percent-encoding",
]
[[package]]
name = "version_check"
2021-04-02 11:17:05 +05:30
version = "0.9.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-02 11:17:05 +05:30
checksum = "5fecdca9a5291cc2b8dcf7dc02453fee791a280f3743cb0905f8822ae463b3fe"
[[package]]
name = "wasi"
version = "0.9.0+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
2021-03-07 19:54:41 +05:30
[[package]]
name = "wasi"
version = "0.10.2+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fd6fbd9a79829dd1ad0cc20627bf1ed606756a7f77edff7b66b7064f9cb327c6"
2021-04-02 11:17:05 +05:30
[[package]]
name = "widestring"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c168940144dd21fd8046987c16a46a33d5fc84eec29ef9dcddc2ac9e31526b7c"
[[package]]
name = "winapi"
version = "0.2.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a"
2021-02-28 11:06:35 +05:30
[[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",
]
2021-04-02 11:17:05 +05:30
[[package]]
name = "winapi-build"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc"
2021-02-28 11:06:35 +05:30
[[package]]
name = "winapi-i686-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
[[package]]
name = "winapi-util"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
dependencies = [
"winapi 0.3.9",
]
2021-02-28 11:06:35 +05:30
[[package]]
name = "winapi-x86_64-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
2021-04-02 11:17:05 +05:30
[[package]]
name = "winreg"
version = "0.6.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b2986deb581c4fe11b621998a5e53361efe6b48a151178d0cd9eeffa4dc6acc9"
dependencies = [
"winapi 0.3.9",
]
[[package]]
name = "ws2_32-sys"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d59cefebd0c892fa2dd6de581e937301d8552cb44489cdff035c6187cb63fa5e"
dependencies = [
"winapi 0.2.8",
"winapi-build",
]