netapp/Cargo.lock

1050 lines
26 KiB
Plaintext
Raw Normal View History

2020-12-02 12:30:47 +00:00
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
2021-03-10 21:43:34 +00:00
version = 3
2020-12-02 12:30:47 +00:00
[[package]]
name = "ahash"
version = "0.7.5"
2020-12-02 12:30:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "991984e3fd003e7ba02eb724f87a0f997b78677c46c0e91f8424ad7394c9886a"
2020-12-02 12:30:47 +00:00
dependencies = [
"getrandom",
2020-12-02 12:30:47 +00:00
"once_cell",
"version_check",
2020-12-02 12:30:47 +00:00
]
[[package]]
name = "aho-corasick"
version = "0.7.18"
2020-12-02 12:30:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1e37cfd5e7657ada45f742d6e99ca5788580b5c529dc78faf11ece6dc702656f"
2020-12-02 12:30:47 +00:00
dependencies = [
"memchr",
]
[[package]]
name = "arc-swap"
version = "1.4.0"
2020-12-02 12:30:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e6df5aef5c5830360ce5218cecb8f018af3438af5686ae945094affc86fdec63"
2020-12-02 12:30:47 +00:00
[[package]]
name = "async-trait"
version = "0.1.51"
2020-12-02 12:30:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "44318e776df68115a881de9a8fd1b9e53368d7a4a5ce4cc48517da3393233a5e"
2020-12-02 12:30:47 +00:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "atty"
version = "0.2.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
dependencies = [
"hermit-abi",
"libc",
2021-10-12 11:07:34 +00:00
"winapi",
2020-12-02 12:30:47 +00:00
]
[[package]]
name = "autocfg"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a"
[[package]]
name = "bitflags"
version = "1.3.2"
2020-12-02 12:30:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
2020-12-02 12:30:47 +00:00
2022-02-18 18:01:23 +00:00
[[package]]
name = "bumpalo"
version = "3.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a4a45a46ab1f2412e53d3a0ade76ffad2025804294569aae387231a0cd6e0899"
2020-12-02 12:30:47 +00:00
[[package]]
name = "byteorder"
2021-03-10 21:43:34 +00:00
version = "1.4.3"
2020-12-02 12:30:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-03-10 21:43:34 +00:00
checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
2020-12-02 12:30:47 +00:00
[[package]]
name = "bytes"
2021-10-12 11:07:34 +00:00
version = "0.6.0"
2020-12-02 12:30:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-12 11:07:34 +00:00
checksum = "e0dcbc35f504eb6fc275a6d20e4ebcda18cf50d40ba6fabff8c711fa16cb3b16"
2020-12-02 12:30:47 +00:00
[[package]]
name = "bytes"
2021-10-12 11:07:34 +00:00
version = "1.1.0"
2020-12-02 12:30:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-12 11:07:34 +00:00
checksum = "c4872d67bab6358e59559027aa3b9157c53d9358c51423c17554809a8858e0f8"
2020-12-02 12:30:47 +00:00
[[package]]
name = "cc"
version = "1.0.71"
2020-12-02 12:30:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "79c2681d6594606957bbb8631c4b90a7fcaaa72cdb714743a437b156d6a7eedd"
2020-12-02 12:30:47 +00:00
[[package]]
name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
2020-12-04 12:58:34 +00:00
[[package]]
name = "chrono"
version = "0.4.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "670ad68c9088c2a963aaa298cb369688cf3f9465ce5e2d4ca10e6e0098a1ce73"
dependencies = [
"libc",
"num-integer",
"num-traits",
"time",
2021-10-12 11:07:34 +00:00
"winapi",
2020-12-04 12:58:34 +00:00
]
2020-12-02 12:30:47 +00:00
[[package]]
name = "clap"
version = "2.33.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "37e58ac78573c40708d45522f0d80fa2f01cc4f9b4e2bf749807255454312002"
dependencies = [
"bitflags",
"textwrap",
"unicode-width",
]
[[package]]
name = "cloudabi"
version = "0.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f"
dependencies = [
"bitflags",
]
2022-02-18 18:01:23 +00:00
[[package]]
name = "crossbeam-channel"
version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e54ea8bc3fb1ee042f5aace6e3c6e025d3874866da222930f70ce62aceba0bfa"
dependencies = [
"cfg-if",
"crossbeam-utils",
]
[[package]]
name = "crossbeam-utils"
version = "0.8.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b5e5bed1f1c269533fa816a0a5492b3545209a205ca1a54842be180eb63a16a6"
dependencies = [
"cfg-if",
"lazy_static",
]
2020-12-02 12:30:47 +00:00
[[package]]
name = "env_logger"
version = "0.8.4"
2020-12-02 12:30:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a19187fea3ac7e84da7dacf48de0c45d63c6a76f9490dae389aead16c243fce3"
2020-12-02 12:30:47 +00:00
dependencies = [
"atty",
"humantime",
"log",
"regex",
"termcolor",
]
[[package]]
name = "err-derive"
version = "0.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "22deed3a8124cff5fa835713fa105621e43bbdc46690c3a6b68328a012d350d4"
dependencies = [
"proc-macro-error",
"proc-macro2",
"quote",
"rustversion",
"syn",
"synstructure",
]
[[package]]
name = "fuchsia-cprng"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba"
[[package]]
name = "futures"
version = "0.3.17"
2020-12-02 12:30:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a12aa0eb539080d55c3f2d45a67c3b58b6b0773c1a3ca2dfec66d58c97fd66ca"
2020-12-02 12:30:47 +00:00
dependencies = [
"futures-channel",
"futures-core",
"futures-executor",
"futures-io",
"futures-sink",
"futures-task",
"futures-util",
]
[[package]]
name = "futures-channel"
version = "0.3.17"
2020-12-02 12:30:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5da6ba8c3bb3c165d3c7319fc1cc8304facf1fb8db99c5de877183c08a273888"
2020-12-02 12:30:47 +00:00
dependencies = [
"futures-core",
"futures-sink",
]
[[package]]
name = "futures-core"
version = "0.3.17"
2020-12-02 12:30:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "88d1c26957f23603395cd326b0ffe64124b818f4449552f960d815cfba83a53d"
2020-12-02 12:30:47 +00:00
[[package]]
name = "futures-executor"
version = "0.3.17"
2020-12-02 12:30:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "45025be030969d763025784f7f355043dc6bc74093e4ecc5000ca4dc50d8745c"
2020-12-02 12:30:47 +00:00
dependencies = [
"futures-core",
"futures-task",
"futures-util",
]
[[package]]
name = "futures-io"
version = "0.3.17"
2020-12-02 12:30:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "522de2a0fe3e380f1bc577ba0474108faf3f6b18321dbf60b3b9c39a75073377"
2020-12-02 12:30:47 +00:00
[[package]]
name = "futures-macro"
version = "0.3.17"
2020-12-02 12:30:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "18e4a4b95cea4b4ccbcf1c5675ca7c4ee4e9e75eb79944d07defde18068f79bb"
2020-12-02 12:30:47 +00:00
dependencies = [
"autocfg",
2020-12-02 12:30:47 +00:00
"proc-macro-hack",
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "futures-sink"
version = "0.3.17"
2020-12-02 12:30:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "36ea153c13024fe480590b3e3d4cad89a0cfacecc24577b68f86c6ced9c2bc11"
2020-12-02 12:30:47 +00:00
[[package]]
name = "futures-task"
version = "0.3.17"
2020-12-02 12:30:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1d3d00f4eddb73e498a54394f228cd55853bdf059259e8e7bc6e69d408892e99"
2020-12-02 12:30:47 +00:00
[[package]]
name = "futures-util"
version = "0.3.17"
2020-12-02 12:30:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "36568465210a3a6ee45e1f165136d68671471a501e632e9a98d96872222b5481"
2020-12-02 12:30:47 +00:00
dependencies = [
"autocfg",
2020-12-02 12:30:47 +00:00
"futures-channel",
"futures-core",
"futures-io",
"futures-macro",
"futures-sink",
"futures-task",
"memchr",
2021-10-12 11:07:34 +00:00
"pin-project-lite",
2020-12-02 12:30:47 +00:00
"pin-utils",
"proc-macro-hack",
"proc-macro-nested",
"slab",
]
[[package]]
name = "getrandom"
version = "0.2.3"
2020-12-02 12:30:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7fcd999463524c52659517fe2cea98493cfe485d10565e7b0fb07dbba7ad2753"
2020-12-02 12:30:47 +00:00
dependencies = [
"cfg-if",
"libc",
"wasi",
2020-12-02 12:30:47 +00:00
]
[[package]]
name = "hashbrown"
version = "0.11.2"
2020-12-02 12:30:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e"
2020-12-02 12:30:47 +00:00
dependencies = [
"ahash",
]
[[package]]
name = "heck"
version = "0.3.3"
2020-12-02 12:30:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c"
2020-12-02 12:30:47 +00:00
dependencies = [
"unicode-segmentation",
]
[[package]]
name = "hermit-abi"
version = "0.1.19"
2020-12-02 12:30:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
2020-12-02 12:30:47 +00:00
dependencies = [
"libc",
]
[[package]]
name = "hex"
2021-03-10 21:43:34 +00:00
version = "0.4.3"
2020-12-02 12:30:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-03-10 21:43:34 +00:00
checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
2020-12-02 12:30:47 +00:00
[[package]]
name = "humantime"
2021-03-10 21:43:34 +00:00
version = "2.1.0"
2020-12-02 12:30:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-03-10 21:43:34 +00:00
checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
2020-12-02 12:30:47 +00:00
2022-02-18 18:01:23 +00:00
[[package]]
name = "js-sys"
version = "0.3.56"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a38fc24e30fd564ce974c02bf1d337caddff65be6cc4735a1f7eab22a7440f04"
dependencies = [
"wasm-bindgen",
]
2020-12-02 12:30:47 +00:00
[[package]]
name = "kuska-handshake"
2021-10-12 11:07:34 +00:00
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e33da4b69f23c2ece0b3e729d079cebdc2c0206e493e42f510f500ad81c631d5"
2020-12-02 12:30:47 +00:00
dependencies = [
"futures",
"hex",
2020-12-12 18:08:57 +00:00
"kuska-sodiumoxide",
2020-12-02 12:30:47 +00:00
"log",
"thiserror",
]
2020-12-12 18:08:57 +00:00
[[package]]
name = "kuska-sodiumoxide"
version = "0.2.5-0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ae0f8eafdd240b722243787b51fdaf8df6693fb8621d0f7061cdba574214cf88"
dependencies = [
"libc",
"libsodium-sys",
"serde",
]
2020-12-02 12:30:47 +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"
version = "0.2.103"
2020-12-02 12:30:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dd8f7255a17a627354f321ef0055d63b898c6fb27eff628af4d1b66b7331edf6"
2020-12-02 12:30:47 +00:00
[[package]]
name = "libsodium-sys"
version = "0.2.7"
2020-12-12 18:08:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6b779387cd56adfbc02ea4a668e704f729be8d6a6abd2c27ca5ee537849a92fd"
2020-12-02 12:30:47 +00:00
dependencies = [
"cc",
"libc",
"pkg-config",
"walkdir",
2020-12-02 12:30:47 +00:00
]
[[package]]
name = "log"
2021-03-10 21:43:34 +00:00
version = "0.4.14"
2020-12-02 12:30:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-03-10 21:43:34 +00:00
checksum = "51b9bbe6c47d51fc3e1a9b945965946b4c44142ab8792c50835a980d362c2710"
2020-12-02 12:30:47 +00:00
dependencies = [
"cfg-if",
2020-12-02 12:30:47 +00:00
]
[[package]]
name = "lru"
version = "0.6.6"
2020-12-02 12:30:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7ea2d928b485416e8908cff2d97d621db22b27f7b3b6729e438bcf42c671ba91"
2020-12-02 12:30:47 +00:00
dependencies = [
"hashbrown",
]
[[package]]
name = "memchr"
version = "2.4.1"
2020-12-02 12:30:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "308cc39be01b73d0d18f82a0e7b2a3df85245f84af96fdddc5d202d27e47b86a"
2020-12-02 12:30:47 +00:00
[[package]]
name = "mio"
2021-10-12 11:07:34 +00:00
version = "0.7.13"
2020-12-02 12:30:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-12 11:07:34 +00:00
checksum = "8c2bdb6314ec10835cd3293dd268473a835c02b7b352e788be788b3c6ca6bb16"
2020-12-02 12:30:47 +00:00
dependencies = [
"libc",
"log",
2020-12-12 18:08:57 +00:00
"miow",
2021-10-12 11:07:34 +00:00
"ntapi",
"winapi",
2020-12-02 12:30:47 +00:00
]
[[package]]
name = "miow"
2021-10-12 11:07:34 +00:00
version = "0.3.7"
2020-12-02 12:30:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-12 11:07:34 +00:00
checksum = "b9f1c5b025cda876f66ef43a113f91ebc9f4ccef34843000e0adf6ebbab84e21"
2020-12-02 12:30:47 +00:00
dependencies = [
2021-10-12 11:07:34 +00:00
"winapi",
2020-12-02 12:30:47 +00:00
]
[[package]]
name = "netapp"
2022-02-18 18:01:23 +00:00
version = "0.3.2"
2020-12-02 12:30:47 +00:00
dependencies = [
"arc-swap",
"async-trait",
"bytes 0.6.0",
2022-02-18 18:01:23 +00:00
"cfg-if",
2020-12-04 12:58:34 +00:00
"chrono",
2020-12-02 12:30:47 +00:00
"env_logger",
"err-derive",
"futures",
2020-12-02 12:30:47 +00:00
"hex",
"kuska-handshake",
2020-12-12 18:08:57 +00:00
"kuska-sodiumoxide",
2020-12-02 12:30:47 +00:00
"log",
"lru",
2022-02-18 18:01:23 +00:00
"opentelemetry",
"rand 0.5.6",
2020-12-02 12:30:47 +00:00
"rmp-serde",
"serde",
"structopt",
"tokio",
"tokio-stream",
"tokio-util",
2020-12-02 12:30:47 +00:00
]
2021-10-12 11:07:34 +00:00
[[package]]
name = "ntapi"
version = "0.3.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f6bb902e437b6d86e03cce10a7e2af662292c5dfef23b65899ea3ac9354ad44"
dependencies = [
"winapi",
]
2020-12-04 12:58:34 +00:00
[[package]]
name = "num-integer"
version = "0.1.44"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d2cc698a63b549a70bc047073d2949cce27cd1c7b0a4a862d08a8031bc2801db"
dependencies = [
"autocfg",
"num-traits",
]
2020-12-02 12:30:47 +00:00
[[package]]
name = "num-traits"
version = "0.2.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9a64b1ec5cda2586e284722486d802acf1f7dbdc623e2bfc57e65ca1cd099290"
dependencies = [
"autocfg",
]
[[package]]
name = "num_cpus"
version = "1.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "05499f3756671c15885fee9034446956fff3f243d6077b91e5767df161f766b3"
dependencies = [
"hermit-abi",
"libc",
]
[[package]]
name = "once_cell"
version = "1.8.0"
2020-12-02 12:30:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "692fcb63b64b1758029e0a96ee63e049ce8c5948587f2f7208df04625e5f6b56"
2020-12-02 12:30:47 +00:00
2022-02-18 18:01:23 +00:00
[[package]]
name = "opentelemetry"
version = "0.17.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6105e89802af13fdf48c49d7646d3b533a70e536d818aae7e78ba0433d01acb8"
dependencies = [
"async-trait",
"crossbeam-channel",
"futures-channel",
"futures-executor",
"futures-util",
"js-sys",
"lazy_static",
"percent-encoding",
"pin-project",
"rand 0.8.5",
"thiserror",
]
[[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 = "1.0.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "58ad3879ad3baf4e44784bc6a718a8698867bb991f8ce24d1bcbe2cfb4c3a75e"
dependencies = [
"pin-project-internal",
]
[[package]]
name = "pin-project-internal"
version = "1.0.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "744b6f092ba29c3650faf274db506afd39944f48420f6c86b17cfe0ee1cb36bb"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
2020-12-02 12:30:47 +00:00
[[package]]
name = "pin-project-lite"
version = "0.2.7"
2020-12-02 12:30:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8d31d11c69a6b52a174b42bdc0c30e5e11670f90788b2c471c31c1d17d449443"
2020-12-02 12:30:47 +00:00
[[package]]
name = "pin-utils"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
[[package]]
name = "pkg-config"
version = "0.3.20"
2020-12-02 12:30:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7c9b1041b4387893b91ee6746cddfc28516aff326a3519fb2adf820932c5e6cb"
2020-12-02 12:30:47 +00:00
2022-02-18 18:01:23 +00:00
[[package]]
name = "ppv-lite86"
version = "0.2.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eb9f9e6e233e5c4a35559a617bf40a4ec447db2e84c20b55a6f83167b7e57872"
2020-12-02 12:30:47 +00:00
[[package]]
name = "proc-macro-error"
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
dependencies = [
"proc-macro-error-attr",
"proc-macro2",
"quote",
"syn",
"version_check",
]
[[package]]
name = "proc-macro-error-attr"
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
dependencies = [
"proc-macro2",
"quote",
"version_check",
]
[[package]]
name = "proc-macro-hack"
version = "0.5.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dbf0c48bc1d91375ae5c3cd81e3722dff1abcf81a30960240640d223f59fe0e5"
[[package]]
name = "proc-macro-nested"
2021-03-10 21:43:34 +00:00
version = "0.1.7"
2020-12-02 12:30:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-03-10 21:43:34 +00:00
checksum = "bc881b2c22681370c6a780e47af9840ef841837bc98118431d4e1868bd0c1086"
2020-12-02 12:30:47 +00:00
[[package]]
name = "proc-macro2"
2021-10-14 08:50:14 +00:00
version = "1.0.30"
2020-12-02 12:30:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-14 08:50:14 +00:00
checksum = "edc3358ebc67bc8b7fa0c007f945b0b18226f78437d61bec735a9eb96b61ee70"
2020-12-02 12:30:47 +00:00
dependencies = [
"unicode-xid",
]
[[package]]
name = "quote"
version = "1.0.10"
2020-12-02 12:30:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "38bc8cc6a5f2e3655e0899c1b848643b2562f853f114bfec7be120678e3ace05"
2020-12-02 12:30:47 +00:00
dependencies = [
"proc-macro2",
]
[[package]]
name = "rand"
version = "0.5.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c618c47cd3ebd209790115ab837de41425723956ad3ce2e6a7f09890947cacb9"
dependencies = [
"cloudabi",
"fuchsia-cprng",
"libc",
"rand_core 0.3.1",
2021-10-12 11:07:34 +00:00
"winapi",
2020-12-02 12:30:47 +00:00
]
2022-02-18 18:01:23 +00:00
[[package]]
name = "rand"
version = "0.8.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
dependencies = [
"libc",
"rand_chacha",
"rand_core 0.6.3",
]
[[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 0.6.3",
]
2020-12-02 12:30:47 +00:00
[[package]]
name = "rand_core"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b"
dependencies = [
"rand_core 0.4.2",
]
[[package]]
name = "rand_core"
version = "0.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9c33a3c44ca05fa6f1807d8e6743f3824e8509beca625669633be0acbdf509dc"
2022-02-18 18:01:23 +00:00
[[package]]
name = "rand_core"
version = "0.6.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d34f1408f55294453790c48b2f1ebbb1c5b4b7563eb1f418bcfcfdbb06ebb4e7"
dependencies = [
"getrandom",
]
2020-12-02 12:30:47 +00:00
[[package]]
name = "regex"
version = "1.5.4"
2020-12-02 12:30:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d07a8629359eb56f1e2fb1652bb04212c072a87ba68546a04065d525673ac461"
2020-12-02 12:30:47 +00:00
dependencies = [
"aho-corasick",
"memchr",
"regex-syntax",
]
[[package]]
name = "regex-syntax"
version = "0.6.25"
2020-12-02 12:30:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b"
2020-12-02 12:30:47 +00:00
[[package]]
name = "rmp"
2021-03-10 21:43:34 +00:00
version = "0.8.10"
2020-12-02 12:30:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-03-10 21:43:34 +00:00
checksum = "4f55e5fa1446c4d5dd1f5daeed2a4fe193071771a2636274d0d7a3b082aa7ad6"
2020-12-02 12:30:47 +00:00
dependencies = [
"byteorder",
"num-traits",
]
[[package]]
name = "rmp-serde"
version = "0.14.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4ce7d70c926fe472aed493b902010bccc17fa9f7284145cb8772fd22fdb052d8"
dependencies = [
"byteorder",
"rmp",
"serde",
]
[[package]]
name = "rustversion"
version = "1.0.5"
2020-12-02 12:30:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "61b3909d758bb75c79f23d4736fac9433868679d3ad2ea7a61e3c25cfda9a088"
[[package]]
name = "same-file"
version = "1.0.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
dependencies = [
"winapi-util",
]
2020-12-02 12:30:47 +00:00
[[package]]
name = "serde"
version = "1.0.130"
2020-12-02 12:30:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f12d06de37cf59146fbdecab66aa99f9fe4f78722e3607577a5375d66bd0c913"
2020-12-02 12:30:47 +00:00
dependencies = [
"serde_derive",
]
[[package]]
name = "serde_derive"
version = "1.0.130"
2020-12-02 12:30:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d7bc1a1ab1961464eae040d96713baa5a724a8152c1222492465b54322ec508b"
2020-12-02 12:30:47 +00:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "signal-hook-registry"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e51e73328dc4ac0c7ccbda3a494dfa03df1de2f46018127f60c693f2648455b0"
dependencies = [
"libc",
]
2020-12-02 12:30:47 +00:00
[[package]]
name = "slab"
2021-10-14 08:50:14 +00:00
version = "0.4.5"
2020-12-02 12:30:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-14 08:50:14 +00:00
checksum = "9def91fd1e018fe007022791f865d0ccc9b3a0d5001e01aabb8b40e46000afb5"
2021-03-10 21:43:34 +00:00
2020-12-02 12:30:47 +00:00
[[package]]
name = "structopt"
version = "0.3.23"
2020-12-02 12:30:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bf9d950ef167e25e0bdb073cf1d68e9ad2795ac826f2f3f59647817cf23c0bfa"
2020-12-02 12:30:47 +00:00
dependencies = [
"clap",
"lazy_static",
"structopt-derive",
]
[[package]]
name = "structopt-derive"
version = "0.4.16"
2020-12-02 12:30:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "134d838a2c9943ac3125cf6df165eda53493451b719f3255b2a26b85f772d0ba"
2020-12-02 12:30:47 +00:00
dependencies = [
"heck",
"proc-macro-error",
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "syn"
version = "1.0.80"
2020-12-02 12:30:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d010a1623fbd906d51d650a9916aaefc05ffa0e4053ff7fe601167f3e715d194"
2020-12-02 12:30:47 +00:00
dependencies = [
"proc-macro2",
"quote",
"unicode-xid",
]
[[package]]
name = "synstructure"
version = "0.12.6"
2020-12-02 12:30:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f36bdaa60a83aca3921b5259d5400cbf5e90fc51931376a9bd4a0eb79aa7210f"
2020-12-02 12:30:47 +00:00
dependencies = [
"proc-macro2",
"quote",
"syn",
"unicode-xid",
]
[[package]]
name = "termcolor"
2020-12-02 15:37:36 +00:00
version = "1.1.2"
2020-12-02 12:30:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-02 15:37:36 +00:00
checksum = "2dfed899f0eb03f32ee8c6a0aabdb8a7949659e3466561fc0adf54e26d88c5f4"
2020-12-02 12:30:47 +00:00
dependencies = [
"winapi-util",
]
[[package]]
name = "textwrap"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
dependencies = [
"unicode-width",
]
[[package]]
name = "thiserror"
version = "1.0.30"
2020-12-02 12:30:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "854babe52e4df1653706b98fcfc05843010039b406875930a70e4d9644e5c417"
2020-12-02 12:30:47 +00:00
dependencies = [
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
version = "1.0.30"
2020-12-02 12:30:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "aa32fd3f627f367fe16f893e2597ae3c05020f8bba2666a4e6ea73d377e5714b"
2020-12-02 12:30:47 +00:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
2020-12-04 12:58:34 +00:00
[[package]]
name = "time"
version = "0.1.43"
2020-12-04 12:58:34 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ca8a50ef2360fbd1eeb0ecd46795a87a19024eb4b53c5dc916ca1fd95fe62438"
2020-12-04 12:58:34 +00:00
dependencies = [
"libc",
2021-10-12 11:07:34 +00:00
"winapi",
2020-12-04 12:58:34 +00:00
]
2020-12-02 12:30:47 +00:00
[[package]]
name = "tokio"
2021-10-12 11:07:34 +00:00
version = "1.12.0"
2020-12-02 12:30:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-12 11:07:34 +00:00
checksum = "c2c2416fdedca8443ae44b4527de1ea633af61d8f7169ffa6e72c5b53d24efcc"
2020-12-02 12:30:47 +00:00
dependencies = [
2021-10-12 11:07:34 +00:00
"autocfg",
"bytes 1.1.0",
2020-12-02 12:30:47 +00:00
"libc",
"memchr",
"mio",
"num_cpus",
"once_cell",
2021-10-12 11:07:34 +00:00
"pin-project-lite",
"signal-hook-registry",
2020-12-02 12:30:47 +00:00
"tokio-macros",
2021-10-12 11:07:34 +00:00
"winapi",
2020-12-02 12:30:47 +00:00
]
[[package]]
name = "tokio-macros"
2021-10-14 08:50:14 +00:00
version = "1.5.0"
2020-12-02 12:30:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-14 08:50:14 +00:00
checksum = "b2dd85aeaba7b68df939bd357c6afb36c87951be9e80bf9c859f2fc3e9fca0fd"
2020-12-02 12:30:47 +00:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "tokio-stream"
version = "0.1.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7b2f3f698253f03119ac0102beaa64f67a67e08074d03a22d18784104543727f"
dependencies = [
"futures-core",
"pin-project-lite",
"tokio",
]
2020-12-02 12:30:47 +00:00
[[package]]
name = "tokio-util"
version = "0.6.8"
2020-12-04 12:58:34 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "08d3725d3efa29485e87311c5b699de63cde14b00ed4d256b8318aa30ca452cd"
2020-12-02 12:30:47 +00:00
dependencies = [
"bytes 1.1.0",
"futures-core",
"futures-io",
"futures-sink",
2020-12-02 12:30:47 +00:00
"log",
"pin-project-lite",
"tokio",
2020-12-02 12:30:47 +00:00
]
[[package]]
name = "unicode-segmentation"
version = "1.8.0"
2020-12-02 12:30:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8895849a949e7845e06bd6dc1aa51731a103c42707010a5b591c0038fb73385b"
2020-12-02 12:30:47 +00:00
[[package]]
name = "unicode-width"
version = "0.1.9"
2020-12-02 12:30:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3ed742d4ea2bd1176e236172c8429aaf54486e7ac098db29ffe6529e0ce50973"
2020-12-02 12:30:47 +00:00
[[package]]
name = "unicode-xid"
version = "0.2.2"
2020-12-02 12:30:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8ccb82d61f80a663efe1f787a51b16b5a51e3314d6ac365b08639f52387b33f3"
2020-12-02 12:30:47 +00:00
[[package]]
name = "version_check"
version = "0.9.3"
2020-12-02 12:30:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5fecdca9a5291cc2b8dcf7dc02453fee791a280f3743cb0905f8822ae463b3fe"
2020-12-02 12:30:47 +00:00
[[package]]
name = "walkdir"
version = "2.3.2"
2020-12-02 12:30:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "808cf2735cd4b6866113f648b791c6adc5714537bc222d9347bb203386ffda56"
2020-12-02 12:30:47 +00:00
dependencies = [
"same-file",
"winapi",
"winapi-util",
2020-12-02 12:30:47 +00:00
]
[[package]]
name = "wasi"
version = "0.10.2+wasi-snapshot-preview1"
2020-12-02 12:30:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fd6fbd9a79829dd1ad0cc20627bf1ed606756a7f77edff7b66b7064f9cb327c6"
2020-12-02 12:30:47 +00:00
2022-02-18 18:01:23 +00:00
[[package]]
name = "wasm-bindgen"
version = "0.2.79"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "25f1af7423d8588a3d840681122e72e6a24ddbcb3f0ec385cac0d12d24256c06"
dependencies = [
"cfg-if",
"wasm-bindgen-macro",
]
[[package]]
name = "wasm-bindgen-backend"
version = "0.2.79"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8b21c0df030f5a177f3cba22e9bc4322695ec43e7257d865302900290bcdedca"
dependencies = [
"bumpalo",
"lazy_static",
"log",
"proc-macro2",
"quote",
"syn",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-macro"
version = "0.2.79"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2f4203d69e40a52ee523b2529a773d5ffc1dc0071801c87b3d270b471b80ed01"
dependencies = [
"quote",
"wasm-bindgen-macro-support",
]
[[package]]
name = "wasm-bindgen-macro-support"
version = "0.2.79"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bfa8a30d46208db204854cadbb5d4baf5fcf8071ba5bf48190c3e59937962ebc"
dependencies = [
"proc-macro2",
"quote",
"syn",
"wasm-bindgen-backend",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-shared"
version = "0.2.79"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3d958d035c4438e28c70e4321a2911302f10135ce78a9c7834c0cab4123d06a2"
2020-12-02 12:30:47 +00:00
[[package]]
name = "winapi"
version = "0.3.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
dependencies = [
"winapi-i686-pc-windows-gnu",
"winapi-x86_64-pc-windows-gnu",
]
[[package]]
name = "winapi-i686-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
[[package]]
name = "winapi-util"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
dependencies = [
2021-10-12 11:07:34 +00:00
"winapi",
2020-12-02 12:30:47 +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"