rustdesk-server/Cargo.lock

1635 lines
40 KiB
Plaintext
Raw Normal View History

2020-03-06 17:18:22 +08:00
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
2020-09-18 17:07:17 +08:00
[[package]]
name = "ahash"
2020-10-31 14:33:25 +08:00
version = "0.4.6"
2020-09-18 17:07:17 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:33:25 +08:00
checksum = "f6789e291be47ace86a60303502173d84af8327e3627ecf334356ee0f87a164c"
2020-09-18 17:07:17 +08:00
2020-03-06 17:18:22 +08:00
[[package]]
name = "aho-corasick"
2020-12-01 03:00:28 +08:00
version = "0.7.15"
2020-03-06 17:18:22 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-01 03:00:28 +08:00
checksum = "7404febffaa47dac81aa44dba71523c9d069b1bdc50a77db41195149e17f68e5"
2020-03-06 17:18:22 +08:00
dependencies = [
2020-10-31 14:33:25 +08:00
"memchr",
2020-03-06 17:18:22 +08:00
]
2020-09-18 13:04:39 +08:00
[[package]]
name = "ansi_term"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:33:25 +08:00
checksum = "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b"
2020-09-18 13:04:39 +08:00
dependencies = [
2020-10-31 14:33:25 +08:00
"winapi 0.3.9",
2020-09-18 13:04:39 +08:00
]
2020-05-11 12:57:55 +08:00
[[package]]
name = "anyhow"
2020-12-01 03:00:28 +08:00
version = "1.0.34"
2020-06-21 14:31:52 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-01 03:00:28 +08:00
checksum = "bf8dcb5b4bbaa28653b647d8c77bd4ed40183b48882e130c1f1ffb73de069fd7"
2020-06-21 14:31:52 +08:00
[[package]]
name = "arrayref"
version = "0.3.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:33:25 +08:00
checksum = "a4c527152e37cf757a3f78aae5a06fbeefdb07ccc535c980a3208ee3060dd544"
2020-06-21 14:31:52 +08:00
[[package]]
name = "arrayvec"
2020-10-31 14:33:25 +08:00
version = "0.5.2"
2020-03-06 17:18:22 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:33:25 +08:00
checksum = "23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b"
2020-03-06 17:18:22 +08:00
[[package]]
name = "atty"
version = "0.2.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:33:25 +08:00
checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
2020-03-06 17:18:22 +08:00
dependencies = [
2020-10-31 14:33:25 +08:00
"hermit-abi",
"libc",
"winapi 0.3.9",
2020-03-06 17:18:22 +08:00
]
2020-05-14 17:18:07 +08:00
[[package]]
name = "autocfg"
2020-09-04 11:32:42 +08:00
version = "1.0.1"
2020-05-14 17:18:07 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:33:25 +08:00
checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a"
2020-05-14 17:18:07 +08:00
2020-05-11 12:57:55 +08:00
[[package]]
name = "base64"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:33:25 +08:00
checksum = "b41b7ea54a0c9d92199de89e20e58d49f02f8e699814ef3fdf266f6f748d15c7"
2020-05-11 12:57:55 +08:00
2020-09-04 11:32:42 +08:00
[[package]]
name = "base64"
2020-12-01 03:00:28 +08:00
version = "0.13.0"
2020-09-04 11:32:42 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-01 03:00:28 +08:00
checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd"
2020-09-04 11:32:42 +08:00
2021-03-19 11:32:28 +08:00
[[package]]
name = "bindgen"
version = "0.54.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "66c0bb6167449588ff70803f4127f0684f9063097eca5016f37eb52b92c2cf36"
dependencies = [
"bitflags",
"cexpr",
"cfg-if 0.1.10",
"clang-sys",
"clap",
"env_logger 0.7.1",
"lazy_static",
"lazycell",
"log",
"peeking_take_while",
"proc-macro2",
"quote",
"regex",
"rustc-hash",
"shlex",
"which",
]
2020-03-06 17:18:22 +08:00
[[package]]
name = "bitflags"
version = "1.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:33:25 +08:00
checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693"
2020-03-06 17:18:22 +08:00
2020-06-21 14:31:52 +08:00
[[package]]
name = "blake2b_simd"
2020-12-01 03:00:28 +08:00
version = "0.5.11"
2020-06-21 14:31:52 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-01 03:00:28 +08:00
checksum = "afa748e348ad3be8263be728124b24a24f268266f6f5d58af9d75f6a40b5c587"
2020-06-21 14:31:52 +08:00
dependencies = [
2020-10-31 14:33:25 +08:00
"arrayref",
"arrayvec",
"constant_time_eq",
2020-06-21 14:31:52 +08:00
]
2020-05-11 12:57:55 +08:00
[[package]]
name = "bumpalo"
2020-06-21 14:31:52 +08:00
version = "3.4.0"
2020-05-11 12:57:55 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:33:25 +08:00
checksum = "2e8c087f005730276d1096a652e92a8bacee2e2472bcc9715a74d2bec38b5820"
2020-05-11 12:57:55 +08:00
2020-03-06 17:18:22 +08:00
[[package]]
name = "bytes"
2020-09-04 11:32:42 +08:00
version = "0.5.6"
2020-03-06 17:18:22 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:33:25 +08:00
checksum = "0e4cec68f03f32e44924783795810fa50a7035d8c8ebe78580ad7e6c703fba38"
2020-03-06 17:18:22 +08:00
[[package]]
name = "cc"
2020-12-01 03:00:28 +08:00
version = "1.0.65"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-01 03:00:28 +08:00
checksum = "95752358c8f7552394baf48cd82695b345628ad3f170d607de3ca03b8dacca15"
dependencies = [
2020-10-31 14:33:25 +08:00
"jobserver",
]
2021-03-19 11:32:28 +08:00
[[package]]
name = "cexpr"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f4aedb84272dbe89af497cf81375129abda4fc0a9e7c5d317498c15cc30c0d27"
dependencies = [
"nom",
]
2020-03-06 17:18:22 +08:00
[[package]]
name = "cfg-if"
version = "0.1.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:33:25 +08:00
checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
[[package]]
name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
2020-03-06 17:18:22 +08:00
2021-03-19 11:32:28 +08:00
[[package]]
name = "clang-sys"
version = "0.29.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fe6837df1d5cba2397b835c8530f51723267e16abbf83892e9e5af4f0e5dd10a"
dependencies = [
"glob",
"libc",
"libloading",
]
2020-09-18 13:04:39 +08:00
[[package]]
name = "clap"
version = "2.33.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:33:25 +08:00
checksum = "37e58ac78573c40708d45522f0d80fa2f01cc4f9b4e2bf749807255454312002"
2020-09-18 13:04:39 +08:00
dependencies = [
2020-10-31 14:33:25 +08:00
"ansi_term",
"atty",
"bitflags",
"strsim",
"textwrap",
"unicode-width",
"vec_map",
2020-09-18 13:04:39 +08:00
]
2020-06-21 14:31:52 +08:00
[[package]]
name = "confy"
2020-10-31 14:33:25 +08:00
version = "0.4.1"
source = "git+https://github.com/open-trade/confy#27fa12941291b44ccd856aef4a5452c1eb646047"
2020-06-21 14:31:52 +08:00
dependencies = [
2020-10-31 14:33:25 +08:00
"directories",
"serde",
"toml",
2020-06-21 14:31:52 +08:00
]
[[package]]
name = "constant_time_eq"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:33:25 +08:00
checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc"
2020-06-21 14:31:52 +08:00
2020-05-11 12:57:55 +08:00
[[package]]
name = "core-foundation"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:33:25 +08:00
checksum = "57d24c7a13c43e870e37c1556b74555437870a04514f7685f5b354e090567171"
2020-05-11 12:57:55 +08:00
dependencies = [
2020-10-31 14:33:25 +08:00
"core-foundation-sys",
"libc",
2020-05-11 12:57:55 +08:00
]
[[package]]
name = "core-foundation-sys"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:33:25 +08:00
checksum = "b3a71ab494c0b5b860bdc8407ae08978052417070c2ced38573a9157ad75b8ac"
2020-05-11 12:57:55 +08:00
2020-05-14 17:18:07 +08:00
[[package]]
name = "crossbeam-utils"
2020-12-01 03:00:28 +08:00
version = "0.8.1"
2020-05-14 17:18:07 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-01 03:00:28 +08:00
checksum = "02d96d1e189ef58269ebe5b97953da3274d83a93af647c2ddd6f9dab28cedb8d"
2020-05-14 17:18:07 +08:00
dependencies = [
2020-10-31 14:33:25 +08:00
"autocfg",
2020-12-01 03:00:28 +08:00
"cfg-if 1.0.0",
2020-10-31 14:33:25 +08:00
"lazy_static",
2020-05-14 17:18:07 +08:00
]
2020-05-11 12:57:55 +08:00
[[package]]
name = "ct-logs"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:33:25 +08:00
checksum = "4d3686f5fa27dbc1d76c751300376e167c5a43387f44bb451fd1c24776e49113"
2020-05-11 12:57:55 +08:00
dependencies = [
2020-10-31 14:33:25 +08:00
"sct",
2020-05-11 12:57:55 +08:00
]
2020-06-21 14:31:52 +08:00
[[package]]
name = "directories"
version = "2.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:33:25 +08:00
checksum = "551a778172a450d7fc12e629ca3b0428d00f6afa9a43da1b630d54604e97371c"
2020-06-21 14:31:52 +08:00
dependencies = [
2020-10-31 14:33:25 +08:00
"cfg-if 0.1.10",
"dirs-sys",
2020-06-21 14:31:52 +08:00
]
[[package]]
name = "directories-next"
2020-10-31 14:33:25 +08:00
version = "2.0.0"
2020-06-21 14:31:52 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:33:25 +08:00
checksum = "339ee130d97a610ea5a5872d2bbb130fdf68884ff09d3028b81bec8a1ac23bbc"
2020-06-21 14:31:52 +08:00
dependencies = [
2020-10-31 14:33:25 +08:00
"cfg-if 1.0.0",
"dirs-sys-next",
2020-06-21 14:31:52 +08:00
]
[[package]]
name = "dirs-next"
2020-10-31 14:33:25 +08:00
version = "2.0.0"
2020-06-21 14:31:52 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:33:25 +08:00
checksum = "b98cf8ebf19c3d1b223e151f99a4f9f0690dca41414773390fc824184ac833e1"
2020-06-21 14:31:52 +08:00
dependencies = [
2020-10-31 14:33:25 +08:00
"cfg-if 1.0.0",
"dirs-sys-next",
2020-06-21 14:31:52 +08:00
]
[[package]]
name = "dirs-sys"
version = "0.3.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:33:25 +08:00
checksum = "8e93d7f5705de3e49895a2b5e0b8855a1c27f080192ae9c32a6432d50741a57a"
2020-06-21 14:31:52 +08:00
dependencies = [
2020-10-31 14:33:25 +08:00
"libc",
"redox_users",
"winapi 0.3.9",
2020-06-21 14:31:52 +08:00
]
[[package]]
name = "dirs-sys-next"
2020-10-31 14:33:25 +08:00
version = "0.1.1"
2020-06-21 14:31:52 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:33:25 +08:00
checksum = "99de365f605554ae33f115102a02057d4fc18b01f3284d6870be0938743cfe7d"
2020-06-21 14:31:52 +08:00
dependencies = [
2020-10-31 14:33:25 +08:00
"libc",
"redox_users",
"winapi 0.3.9",
2020-06-21 14:31:52 +08:00
]
2020-09-18 17:07:17 +08:00
[[package]]
name = "dlv-list"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:33:25 +08:00
checksum = "1b391911b9a786312a10cb9d2b3d0735adfd5a8113eb3648de26a75e91b0826c"
2020-09-18 17:07:17 +08:00
dependencies = [
2020-10-31 14:33:25 +08:00
"rand",
2020-09-18 17:07:17 +08:00
]
2020-06-21 14:31:52 +08:00
[[package]]
name = "either"
2020-10-31 14:33:25 +08:00
version = "1.6.1"
2020-06-21 14:31:52 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:33:25 +08:00
checksum = "e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457"
2020-06-21 14:31:52 +08:00
2021-03-19 11:32:28 +08:00
[[package]]
name = "env_logger"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "44533bbbb3bb3c1fa17d9f2e4e38bbbaf8396ba82193c4cb1b6445d711445d36"
dependencies = [
"atty",
"humantime 1.3.0",
"log",
"regex",
"termcolor",
]
2020-03-06 17:18:22 +08:00
[[package]]
name = "env_logger"
2020-12-01 03:00:28 +08:00
version = "0.8.2"
2020-03-06 17:18:22 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-01 03:00:28 +08:00
checksum = "f26ecb66b4bdca6c1409b40fb255eefc2bd4f6d135dab3c3124f80ffa2a9661e"
2020-03-06 17:18:22 +08:00
dependencies = [
2020-10-31 14:33:25 +08:00
"atty",
2021-03-19 11:32:28 +08:00
"humantime 2.0.1",
2020-10-31 14:33:25 +08:00
"log",
"regex",
"termcolor",
2020-03-06 17:18:22 +08:00
]
2020-05-11 12:57:55 +08:00
[[package]]
name = "err-derive"
version = "0.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:33:25 +08:00
checksum = "22deed3a8124cff5fa835713fa105621e43bbdc46690c3a6b68328a012d350d4"
2020-05-11 12:57:55 +08:00
dependencies = [
2020-10-31 14:33:25 +08:00
"proc-macro-error",
"proc-macro2",
"quote",
"rustversion",
"syn",
"synstructure",
2020-06-21 14:31:52 +08:00
]
[[package]]
name = "filetime"
2020-12-01 03:00:28 +08:00
version = "0.2.13"
2020-06-21 14:31:52 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-01 03:00:28 +08:00
checksum = "0c122a393ea57648015bf06fbd3d372378992e86b9ff5a7a497b076a28c79efe"
2020-06-21 14:31:52 +08:00
dependencies = [
2020-12-01 03:00:28 +08:00
"cfg-if 1.0.0",
2020-10-31 14:33:25 +08:00
"libc",
"redox_syscall",
"winapi 0.3.9",
2020-05-11 12:57:55 +08:00
]
2020-03-06 17:18:22 +08:00
[[package]]
name = "fnv"
2020-06-21 14:31:52 +08:00
version = "1.0.7"
2020-03-06 17:18:22 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:33:25 +08:00
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
2020-03-06 17:18:22 +08:00
[[package]]
name = "fuchsia-zircon"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:33:25 +08:00
checksum = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82"
2020-03-06 17:18:22 +08:00
dependencies = [
2020-10-31 14:33:25 +08:00
"bitflags",
"fuchsia-zircon-sys",
2020-03-06 17:18:22 +08:00
]
[[package]]
name = "fuchsia-zircon-sys"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:33:25 +08:00
checksum = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7"
2020-03-06 17:18:22 +08:00
[[package]]
name = "futures"
2020-12-01 03:00:28 +08:00
version = "0.3.8"
2020-03-06 17:18:22 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-01 03:00:28 +08:00
checksum = "9b3b0c040a1fe6529d30b3c5944b280c7f0dcb2930d2c3062bca967b602583d0"
2020-03-06 17:18:22 +08:00
dependencies = [
2020-10-31 14:33:25 +08:00
"futures-channel",
"futures-core",
"futures-executor",
"futures-io",
"futures-sink",
"futures-task",
"futures-util",
2020-03-06 17:18:22 +08:00
]
[[package]]
name = "futures-channel"
2020-12-01 03:00:28 +08:00
version = "0.3.8"
2020-03-06 17:18:22 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-01 03:00:28 +08:00
checksum = "4b7109687aa4e177ef6fe84553af6280ef2778bdb7783ba44c9dc3399110fe64"
2020-03-06 17:18:22 +08:00
dependencies = [
2020-10-31 14:33:25 +08:00
"futures-core",
"futures-sink",
2020-03-06 17:18:22 +08:00
]
[[package]]
name = "futures-core"
2020-12-01 03:00:28 +08:00
version = "0.3.8"
2020-03-06 17:18:22 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-01 03:00:28 +08:00
checksum = "847ce131b72ffb13b6109a221da9ad97a64cbe48feb1028356b836b47b8f1748"
2020-03-06 17:18:22 +08:00
[[package]]
name = "futures-executor"
2020-12-01 03:00:28 +08:00
version = "0.3.8"
2020-03-06 17:18:22 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-01 03:00:28 +08:00
checksum = "4caa2b2b68b880003057c1dd49f1ed937e38f22fcf6c212188a121f08cf40a65"
2020-03-06 17:18:22 +08:00
dependencies = [
2020-10-31 14:33:25 +08:00
"futures-core",
"futures-task",
"futures-util",
2020-03-06 17:18:22 +08:00
]
[[package]]
name = "futures-io"
2020-12-01 03:00:28 +08:00
version = "0.3.8"
2020-03-06 17:18:22 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-01 03:00:28 +08:00
checksum = "611834ce18aaa1bd13c4b374f5d653e1027cf99b6b502584ff8c9a64413b30bb"
2020-03-06 17:18:22 +08:00
[[package]]
name = "futures-macro"
2020-12-01 03:00:28 +08:00
version = "0.3.8"
2020-03-06 17:18:22 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-01 03:00:28 +08:00
checksum = "77408a692f1f97bcc61dc001d752e00643408fbc922e4d634c655df50d595556"
2020-03-06 17:18:22 +08:00
dependencies = [
2020-10-31 14:33:25 +08:00
"proc-macro-hack",
"proc-macro2",
"quote",
"syn",
2020-03-06 17:18:22 +08:00
]
[[package]]
name = "futures-sink"
2020-12-01 03:00:28 +08:00
version = "0.3.8"
2020-03-06 17:18:22 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-01 03:00:28 +08:00
checksum = "f878195a49cee50e006b02b93cf7e0a95a38ac7b776b4c4d9cc1207cd20fcb3d"
2020-03-06 17:18:22 +08:00
[[package]]
name = "futures-task"
2020-12-01 03:00:28 +08:00
version = "0.3.8"
2020-03-06 17:18:22 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-01 03:00:28 +08:00
checksum = "7c554eb5bf48b2426c4771ab68c6b14468b6e76cc90996f528c3338d761a4d0d"
2020-05-11 12:57:55 +08:00
dependencies = [
2020-10-31 14:33:25 +08:00
"once_cell",
2020-05-11 12:57:55 +08:00
]
2020-03-06 17:18:22 +08:00
[[package]]
name = "futures-util"
2020-12-01 03:00:28 +08:00
version = "0.3.8"
2020-03-06 17:18:22 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-01 03:00:28 +08:00
checksum = "d304cff4a7b99cfb7986f7d43fbe93d175e72e704a8860787cc95e9ffd85cbd2"
2020-03-06 17:18:22 +08:00
dependencies = [
2020-10-31 14:33:25 +08:00
"futures-channel",
"futures-core",
"futures-io",
"futures-macro",
"futures-sink",
"futures-task",
"memchr",
"pin-project",
"pin-utils",
"proc-macro-hack",
"proc-macro-nested",
"slab",
2020-03-06 17:18:22 +08:00
]
2020-05-11 12:57:55 +08:00
[[package]]
name = "getrandom"
2020-10-31 14:33:25 +08:00
version = "0.1.15"
2020-05-11 12:57:55 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:33:25 +08:00
checksum = "fc587bc0ec293155d5bfa6b9891ec18a1e330c234f896ea47fbada4cadbe47e6"
2020-05-11 12:57:55 +08:00
dependencies = [
2020-10-31 14:33:25 +08:00
"cfg-if 0.1.10",
"libc",
"wasi",
2020-05-11 12:57:55 +08:00
]
[[package]]
name = "glob"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:33:25 +08:00
checksum = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574"
2020-09-18 17:07:17 +08:00
[[package]]
name = "hashbrown"
2020-10-31 14:33:25 +08:00
version = "0.9.1"
2020-09-18 17:07:17 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:33:25 +08:00
checksum = "d7afe4a420e3fe79967a00898cc1f4db7c8a49a9333a29f8a4bd76a253d5cd04"
2020-09-18 17:07:17 +08:00
dependencies = [
2020-10-31 14:33:25 +08:00
"ahash",
2020-09-18 17:07:17 +08:00
]
2020-03-07 23:24:58 +08:00
[[package]]
name = "hbb_common"
version = "0.1.0"
dependencies = [
2020-10-31 14:33:25 +08:00
"anyhow",
"bytes",
"confy",
"directories-next",
"dirs-next",
2021-03-19 11:32:28 +08:00
"env_logger 0.8.2",
2020-10-31 14:33:25 +08:00
"filetime",
"futures",
"futures-util",
"lazy_static",
"log",
"mac_address",
"protobuf",
"protobuf-codegen-pure",
"quinn",
"rand",
"serde",
"serde_derive",
"serde_json",
"socket2",
"sodiumoxide",
"tokio",
"tokio-util",
"toml",
"winapi 0.3.9",
"zstd",
2020-03-07 23:24:58 +08:00
]
2020-03-06 17:18:22 +08:00
[[package]]
name = "hbbs"
2021-04-03 22:32:14 +08:00
version = "1.1.3"
2020-03-06 17:18:22 +08:00
dependencies = [
2020-10-31 14:33:25 +08:00
"cc",
"clap",
"hbb_common",
"lazy_static",
2021-03-19 11:32:28 +08:00
"rocksdb",
2020-10-31 14:33:25 +08:00
"rust-ini",
"serde",
"serde_derive",
"serde_json",
2020-03-06 17:18:22 +08:00
]
[[package]]
name = "hermit-abi"
2020-10-31 14:33:25 +08:00
version = "0.1.17"
2020-03-06 17:18:22 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:33:25 +08:00
checksum = "5aca5565f760fb5b220e499d72710ed156fdb74e631659e99377d9ebfbd13ae8"
2020-03-06 17:18:22 +08:00
dependencies = [
2020-10-31 14:33:25 +08:00
"libc",
2020-03-06 17:18:22 +08:00
]
[[package]]
name = "humantime"
2021-03-19 11:32:28 +08:00
version = "1.3.0"
2020-03-06 17:18:22 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-03-19 11:32:28 +08:00
checksum = "df004cfca50ef23c36850aaaa59ad52cc70d0e90243c3c7737a4dd32dc7a3c4f"
dependencies = [
"quick-error",
]
2020-10-31 14:33:25 +08:00
[[package]]
2021-03-19 11:32:28 +08:00
name = "humantime"
version = "2.0.1"
2020-10-31 14:33:25 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-03-19 11:32:28 +08:00
checksum = "3c1ad908cc71012b7bea4d0c53ba96a8cba9962f048fa68d143376143d863b7a"
2020-03-06 17:18:22 +08:00
[[package]]
name = "iovec"
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:33:25 +08:00
checksum = "b2b3ea6ff95e175473f8ffe6a7eb7c00d054240321b84c57051175fe3c1e075e"
2020-03-06 17:18:22 +08:00
dependencies = [
2020-10-31 14:33:25 +08:00
"libc",
2020-06-21 14:31:52 +08:00
]
[[package]]
name = "itertools"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:33:25 +08:00
checksum = "284f18f85651fe11e8a991b2adb42cb078325c996ed026d994719efcfca1d54b"
2020-06-21 14:31:52 +08:00
dependencies = [
2020-10-31 14:33:25 +08:00
"either",
2020-03-06 17:18:22 +08:00
]
2020-05-15 03:16:46 +08:00
[[package]]
name = "itoa"
2020-06-21 14:31:52 +08:00
version = "0.4.6"
2020-05-15 03:16:46 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:33:25 +08:00
checksum = "dc6f3ad7b9d11a0c00842ff8de1b60ee58661048eb8049ed33c73594f359d7e6"
2020-05-15 03:16:46 +08:00
[[package]]
name = "jobserver"
version = "0.1.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:33:25 +08:00
checksum = "5c71313ebb9439f74b00d9d2dcec36440beaf57a6aa0623068441dd7cd81a7f2"
dependencies = [
2020-10-31 14:33:25 +08:00
"libc",
2020-05-11 12:57:55 +08:00
]
[[package]]
name = "js-sys"
2020-10-31 14:33:25 +08:00
version = "0.3.45"
2020-05-11 12:57:55 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:33:25 +08:00
checksum = "ca059e81d9486668f12d455a4ea6daa600bd408134cd17e3d3fb5a32d1f016f8"
2020-05-11 12:57:55 +08:00
dependencies = [
2020-10-31 14:33:25 +08:00
"wasm-bindgen",
]
2020-03-06 17:18:22 +08:00
[[package]]
name = "kernel32-sys"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:33:25 +08:00
checksum = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d"
2020-03-06 17:18:22 +08:00
dependencies = [
2020-10-31 14:33:25 +08:00
"winapi 0.2.8",
"winapi-build",
2020-03-06 17:18:22 +08:00
]
[[package]]
name = "lazy_static"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:33:25 +08:00
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
2020-03-06 17:18:22 +08:00
2021-03-19 11:32:28 +08:00
[[package]]
name = "lazycell"
version = "1.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
2020-03-06 17:18:22 +08:00
[[package]]
name = "libc"
2020-10-31 14:33:25 +08:00
version = "0.2.80"
2020-07-09 00:56:30 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:33:25 +08:00
checksum = "4d58d1b70b004888f764dfbf6a26a3b0342a1632d33968e4a179d8011c760614"
2020-07-09 00:56:30 +08:00
[[package]]
2021-03-19 11:32:28 +08:00
name = "libloading"
version = "0.5.2"
2020-07-09 00:56:30 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-03-19 11:32:28 +08:00
checksum = "f2b111a074963af1d37a139918ac6d49ad1d0d5e47f72fd55388619691a7d753"
dependencies = [
"cc",
"winapi 0.3.9",
]
[[package]]
name = "librocksdb-sys"
version = "6.11.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eb5b56f651c204634b936be2f92dbb42c36867e00ff7fe2405591f3b9fa66f09"
2020-07-09 00:56:30 +08:00
dependencies = [
2021-03-19 11:32:28 +08:00
"bindgen",
2020-10-31 14:33:25 +08:00
"cc",
2021-03-19 11:32:28 +08:00
"glob",
2020-10-31 14:33:25 +08:00
"libc",
2020-06-21 14:31:52 +08:00
]
2020-05-14 17:18:07 +08:00
[[package]]
2021-03-19 11:32:28 +08:00
name = "libsodium-sys"
version = "0.2.6"
2020-05-14 17:18:07 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-03-19 11:32:28 +08:00
checksum = "a685b64f837b339074115f2e7f7b431ac73681d08d75b389db7498b8892b8a58"
2020-05-14 17:18:07 +08:00
dependencies = [
2021-03-19 11:32:28 +08:00
"cc",
"libc",
"pkg-config",
2020-05-14 17:18:07 +08:00
]
2020-03-06 17:18:22 +08:00
[[package]]
name = "log"
2020-09-04 11:32:42 +08:00
version = "0.4.11"
2020-03-06 17:18:22 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:33:25 +08:00
checksum = "4fabed175da42fed1fa0746b0ea71f412aa9d35e76e95e59b192c64b9dc2bf8b"
2020-03-06 17:18:22 +08:00
dependencies = [
2020-10-31 14:33:25 +08:00
"cfg-if 0.1.10",
2020-03-06 17:18:22 +08:00
]
2020-06-21 14:31:52 +08:00
[[package]]
name = "mac_address"
2020-10-31 14:33:25 +08:00
version = "1.1.1"
2020-06-21 14:31:52 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:33:25 +08:00
checksum = "6d9bb26482176bddeea173ceaa2acec85146d20cdcc631eafaf9d605d3d4fc23"
2020-06-21 14:31:52 +08:00
dependencies = [
2020-10-31 14:33:25 +08:00
"nix",
"winapi 0.3.9",
2020-06-21 14:31:52 +08:00
]
2020-03-06 17:18:22 +08:00
[[package]]
name = "memchr"
2020-10-31 14:33:25 +08:00
version = "2.3.4"
2020-03-06 17:18:22 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:33:25 +08:00
checksum = "0ee1c47aaa256ecabcaea351eae4a9b01ef39ed810004e298d2511ed284b1525"
2020-03-06 17:18:22 +08:00
[[package]]
name = "mio"
2020-05-11 12:57:55 +08:00
version = "0.6.22"
2020-03-06 17:18:22 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:33:25 +08:00
checksum = "fce347092656428bc8eaf6201042cb551b8d67855af7374542a92a0fbfcac430"
2020-03-06 17:18:22 +08:00
dependencies = [
2020-10-31 14:33:25 +08:00
"cfg-if 0.1.10",
"fuchsia-zircon",
"fuchsia-zircon-sys",
"iovec",
"kernel32-sys",
"libc",
"log",
2020-12-01 03:00:28 +08:00
"miow 0.2.2",
2020-10-31 14:33:25 +08:00
"net2",
"slab",
"winapi 0.2.8",
2020-03-06 17:18:22 +08:00
]
[[package]]
name = "mio-named-pipes"
2020-07-09 00:56:30 +08:00
version = "0.1.7"
2020-03-06 17:18:22 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:33:25 +08:00
checksum = "0840c1c50fd55e521b247f949c241c9997709f23bd7f023b9762cd561e935656"
2020-03-06 17:18:22 +08:00
dependencies = [
2020-10-31 14:33:25 +08:00
"log",
"mio",
2020-12-01 03:00:28 +08:00
"miow 0.3.6",
2020-10-31 14:33:25 +08:00
"winapi 0.3.9",
2020-03-06 17:18:22 +08:00
]
[[package]]
name = "mio-uds"
2020-05-11 12:57:55 +08:00
version = "0.6.8"
2020-03-06 17:18:22 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:33:25 +08:00
checksum = "afcb699eb26d4332647cc848492bbc15eafb26f08d0304550d5aa1f612e066f0"
2020-03-06 17:18:22 +08:00
dependencies = [
2020-10-31 14:33:25 +08:00
"iovec",
"libc",
"mio",
2020-03-06 17:18:22 +08:00
]
[[package]]
name = "miow"
2020-12-01 03:00:28 +08:00
version = "0.2.2"
2020-03-06 17:18:22 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-01 03:00:28 +08:00
checksum = "ebd808424166322d4a38da87083bfddd3ac4c131334ed55856112eb06d46944d"
2020-03-06 17:18:22 +08:00
dependencies = [
2020-10-31 14:33:25 +08:00
"kernel32-sys",
"net2",
"winapi 0.2.8",
"ws2_32-sys",
2020-03-06 17:18:22 +08:00
]
[[package]]
name = "miow"
2020-12-01 03:00:28 +08:00
version = "0.3.6"
2020-03-06 17:18:22 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-01 03:00:28 +08:00
checksum = "5a33c1b55807fbed163481b5ba66db4b2fa6cde694a5027be10fb724206c5897"
2020-03-06 17:18:22 +08:00
dependencies = [
2020-10-31 14:33:25 +08:00
"socket2",
"winapi 0.3.9",
2020-03-06 17:18:22 +08:00
]
[[package]]
name = "net2"
2020-12-01 03:00:28 +08:00
version = "0.2.36"
2020-03-06 17:18:22 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-01 03:00:28 +08:00
checksum = "d7cf75f38f16cb05ea017784dc6dbfd354f76c223dba37701734c4f5a9337d02"
2020-03-06 17:18:22 +08:00
dependencies = [
2020-10-31 14:33:25 +08:00
"cfg-if 0.1.10",
"libc",
"winapi 0.3.9",
2020-03-06 17:18:22 +08:00
]
2020-06-21 14:31:52 +08:00
[[package]]
name = "nix"
2020-12-01 03:00:28 +08:00
version = "0.19.1"
2020-06-21 14:31:52 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-01 03:00:28 +08:00
checksum = "b2ccba0cfe4fdf15982d1674c69b1fd80bad427d293849982668dfe454bd61f2"
2020-06-21 14:31:52 +08:00
dependencies = [
2020-10-31 14:33:25 +08:00
"bitflags",
"cc",
2020-12-01 03:00:28 +08:00
"cfg-if 1.0.0",
2020-10-31 14:33:25 +08:00
"libc",
2020-06-21 14:31:52 +08:00
]
2021-03-19 11:32:28 +08:00
[[package]]
name = "nom"
version = "5.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ffb4262d26ed83a1c0a33a38fe2bb15797329c85770da05e6b828ddb782627af"
dependencies = [
"memchr",
"version_check",
]
2020-03-06 17:18:22 +08:00
[[package]]
name = "num_cpus"
2020-05-11 12:57:55 +08:00
version = "1.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:33:25 +08:00
checksum = "05499f3756671c15885fee9034446956fff3f243d6077b91e5767df161f766b3"
2020-05-11 12:57:55 +08:00
dependencies = [
2020-10-31 14:33:25 +08:00
"hermit-abi",
"libc",
2020-06-21 14:31:52 +08:00
]
2020-05-11 12:57:55 +08:00
[[package]]
name = "once_cell"
2020-12-01 03:00:28 +08:00
version = "1.5.2"
2020-05-11 12:57:55 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-01 03:00:28 +08:00
checksum = "13bd41f508810a131401606d54ac32a467c97172d74ba7662562ebba5ad07fa0"
2020-05-11 12:57:55 +08:00
[[package]]
name = "openssl-probe"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:33:25 +08:00
checksum = "77af24da69f9d9341038eba93a073b1fdaaa1b788221b00a69bce9e762cb32de"
2020-05-11 12:57:55 +08:00
2020-09-18 17:07:17 +08:00
[[package]]
name = "ordered-multimap"
2020-12-01 03:00:28 +08:00
version = "0.3.1"
2020-09-18 17:07:17 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-01 03:00:28 +08:00
checksum = "1c672c7ad9ec066e428c00eb917124a06f08db19e2584de982cc34b1f4c12485"
2020-09-18 17:07:17 +08:00
dependencies = [
2020-10-31 14:33:25 +08:00
"dlv-list",
"hashbrown",
2020-09-18 17:07:17 +08:00
]
2020-05-14 17:18:07 +08:00
[[package]]
2021-03-19 11:32:28 +08:00
name = "peeking_take_while"
version = "0.1.2"
2020-05-14 17:18:07 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-03-19 11:32:28 +08:00
checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099"
2020-05-14 17:18:07 +08:00
2020-05-11 12:57:55 +08:00
[[package]]
name = "pin-project"
2020-12-01 03:00:28 +08:00
version = "1.0.2"
2020-03-06 17:18:22 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-01 03:00:28 +08:00
checksum = "9ccc2237c2c489783abd8c4c80e5450fc0e98644555b1364da68cc29aa151ca7"
2020-03-06 17:18:22 +08:00
dependencies = [
2020-10-31 14:33:25 +08:00
"pin-project-internal",
2020-05-11 12:57:55 +08:00
]
[[package]]
name = "pin-project-internal"
2020-12-01 03:00:28 +08:00
version = "1.0.2"
2020-05-11 12:57:55 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-01 03:00:28 +08:00
checksum = "f8e8d2bf0b23038a4424865103a4df472855692821aab4e4f5c3312d461d9e5f"
2020-05-11 12:57:55 +08:00
dependencies = [
2020-10-31 14:33:25 +08:00
"proc-macro2",
"quote",
"syn",
2020-03-06 17:18:22 +08:00
]
[[package]]
name = "pin-project-lite"
2020-10-31 14:33:25 +08:00
version = "0.1.11"
2020-03-06 17:18:22 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:33:25 +08:00
checksum = "c917123afa01924fc84bb20c4c03f004d9c38e5127e3c039bbf7f4b9c76a2f6b"
2020-03-06 17:18:22 +08:00
2020-12-01 03:00:28 +08:00
[[package]]
name = "pin-project-lite"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6b063f57ec186e6140e2b8b6921e5f1bd89c7356dda5b33acc5401203ca6131c"
2020-03-06 17:18:22 +08:00
[[package]]
name = "pin-utils"
2020-05-11 12:57:55 +08:00
version = "0.1.0"
2020-03-06 17:18:22 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:33:25 +08:00
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
2020-03-06 17:18:22 +08:00
2020-07-09 00:56:30 +08:00
[[package]]
name = "pkg-config"
2020-10-31 14:33:25 +08:00
version = "0.3.19"
2020-07-09 00:56:30 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:33:25 +08:00
checksum = "3831453b3449ceb48b6d9c7ad7c96d5ea673e9b470a1dc578c2ce6521230884c"
2020-07-09 00:56:30 +08:00
2020-03-06 17:18:22 +08:00
[[package]]
2020-05-11 12:57:55 +08:00
name = "ppv-lite86"
2020-12-01 03:00:28 +08:00
version = "0.2.10"
2020-05-11 12:57:55 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-01 03:00:28 +08:00
checksum = "ac74c624d6b2d21f425f752262f42188365d7b8ff1aff74c82e45136510a4857"
2020-05-11 12:57:55 +08:00
[[package]]
name = "proc-macro-error"
2020-09-04 11:32:42 +08:00
version = "1.0.4"
2020-03-06 17:18:22 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:33:25 +08:00
checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
2020-03-06 17:18:22 +08:00
dependencies = [
2020-10-31 14:33:25 +08:00
"proc-macro-error-attr",
"proc-macro2",
"quote",
"syn",
"version_check",
2020-03-06 17:18:22 +08:00
]
2020-05-11 12:57:55 +08:00
[[package]]
name = "proc-macro-error-attr"
2020-09-04 11:32:42 +08:00
version = "1.0.4"
2020-05-11 12:57:55 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:33:25 +08:00
checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
2020-05-11 12:57:55 +08:00
dependencies = [
2020-10-31 14:33:25 +08:00
"proc-macro2",
"quote",
"version_check",
2020-05-11 12:57:55 +08:00
]
[[package]]
name = "proc-macro-hack"
2020-10-31 14:33:25 +08:00
version = "0.5.19"
2020-05-11 12:57:55 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:33:25 +08:00
checksum = "dbf0c48bc1d91375ae5c3cd81e3722dff1abcf81a30960240640d223f59fe0e5"
2020-05-11 12:57:55 +08:00
2020-03-06 17:18:22 +08:00
[[package]]
name = "proc-macro-nested"
2020-06-21 14:31:52 +08:00
version = "0.1.6"
2020-03-06 17:18:22 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:33:25 +08:00
checksum = "eba180dafb9038b050a4c280019bbedf9f2467b61e5d892dcad585bb57aadc5a"
2020-03-06 17:18:22 +08:00
2020-06-21 14:31:52 +08:00
[[package]]
name = "proc-macro2"
2020-10-31 14:33:25 +08:00
version = "1.0.24"
2020-03-06 17:18:22 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:33:25 +08:00
checksum = "1e0704ee1a7e00d7bb417d0770ea303c1bccbabf0ef1667dae92b5967f5f8a71"
2020-03-06 17:18:22 +08:00
dependencies = [
2020-10-31 14:33:25 +08:00
"unicode-xid",
2020-03-06 17:18:22 +08:00
]
[[package]]
name = "protobuf"
2020-04-21 23:49:31 +08:00
version = "3.0.0-pre"
2020-12-01 03:00:28 +08:00
source = "git+https://github.com/stepancheg/rust-protobuf#0f0956b7dd4bd3a04f1cef9c1d5b6ea7aee55cc2"
2020-03-06 17:18:22 +08:00
[[package]]
name = "protobuf-codegen"
2020-04-21 23:49:31 +08:00
version = "3.0.0-pre"
2020-12-01 03:00:28 +08:00
source = "git+https://github.com/stepancheg/rust-protobuf#0f0956b7dd4bd3a04f1cef9c1d5b6ea7aee55cc2"
2020-03-06 17:18:22 +08:00
dependencies = [
2020-10-31 14:33:25 +08:00
"protobuf",
2020-03-06 17:18:22 +08:00
]
[[package]]
name = "protobuf-codegen-pure"
2020-04-21 23:49:31 +08:00
version = "3.0.0-pre"
2020-12-01 03:00:28 +08:00
source = "git+https://github.com/stepancheg/rust-protobuf#0f0956b7dd4bd3a04f1cef9c1d5b6ea7aee55cc2"
2020-03-06 17:18:22 +08:00
dependencies = [
2020-10-31 14:33:25 +08:00
"protobuf",
"protobuf-codegen",
2020-03-06 17:18:22 +08:00
]
2021-03-19 11:32:28 +08:00
[[package]]
name = "quick-error"
version = "1.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
2020-05-11 12:57:55 +08:00
[[package]]
name = "quinn"
version = "0.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:33:25 +08:00
checksum = "88de58d76d8f82fb28e5c89302119c102bb5b9ce57b034186b559b63ba147a0f"
2020-05-11 12:57:55 +08:00
dependencies = [
2020-10-31 14:33:25 +08:00
"bytes",
"err-derive",
"futures",
"libc",
"mio",
"quinn-proto",
"rustls",
"tokio",
"tracing",
"webpki",
2020-05-11 12:57:55 +08:00
]
[[package]]
name = "quinn-proto"
version = "0.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:33:25 +08:00
checksum = "f0ea0a358c179c6b7af34805c675d1664a9c6a234a7acd7efdbb32d2f39d3d2a"
2020-05-11 12:57:55 +08:00
dependencies = [
2020-10-31 14:33:25 +08:00
"bytes",
"ct-logs",
"err-derive",
"rand",
"ring",
"rustls",
"rustls-native-certs",
"slab",
"tracing",
"webpki",
2020-05-11 12:57:55 +08:00
]
2020-06-21 14:31:52 +08:00
[[package]]
name = "quote"
version = "1.0.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:33:25 +08:00
checksum = "aa563d17ecb180e500da1cfd2b028310ac758de548efdd203e18f283af693f37"
2020-06-21 14:31:52 +08:00
dependencies = [
2020-10-31 14:33:25 +08:00
"proc-macro2",
2020-05-11 12:57:55 +08:00
]
[[package]]
name = "rand"
version = "0.7.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:33:25 +08:00
checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03"
2020-05-11 12:57:55 +08:00
dependencies = [
2020-10-31 14:33:25 +08:00
"getrandom",
"libc",
"rand_chacha",
"rand_core",
"rand_hc",
2020-05-11 12:57:55 +08:00
]
[[package]]
name = "rand_chacha"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:33:25 +08:00
checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402"
2020-05-11 12:57:55 +08:00
dependencies = [
2020-10-31 14:33:25 +08:00
"ppv-lite86",
"rand_core",
2020-05-11 12:57:55 +08:00
]
[[package]]
name = "rand_core"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:33:25 +08:00
checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19"
2020-05-11 12:57:55 +08:00
dependencies = [
2020-10-31 14:33:25 +08:00
"getrandom",
2020-05-11 12:57:55 +08:00
]
[[package]]
name = "rand_hc"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:33:25 +08:00
checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c"
2020-05-11 12:57:55 +08:00
dependencies = [
2020-10-31 14:33:25 +08:00
"rand_core",
2020-03-06 17:18:22 +08:00
]
[[package]]
name = "redox_syscall"
2020-09-04 11:32:42 +08:00
version = "0.1.57"
2020-03-06 17:18:22 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:33:25 +08:00
checksum = "41cc0f7e4d5d4544e8861606a285bb08d3e70712ccc7d2b84d7c0ccfaf4b05ce"
2020-03-06 17:18:22 +08:00
2020-06-21 14:31:52 +08:00
[[package]]
name = "redox_users"
2020-09-04 11:32:42 +08:00
version = "0.3.5"
2020-06-21 14:31:52 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:33:25 +08:00
checksum = "de0737333e7a9502c789a36d7c7fa6092a49895d4faa31ca5df163857ded2e9d"
2020-06-21 14:31:52 +08:00
dependencies = [
2020-10-31 14:33:25 +08:00
"getrandom",
"redox_syscall",
"rust-argon2",
2020-06-21 14:31:52 +08:00
]
2020-03-06 17:18:22 +08:00
[[package]]
name = "regex"
2020-12-01 03:00:28 +08:00
version = "1.4.2"
2020-03-06 17:18:22 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-01 03:00:28 +08:00
checksum = "38cf2c13ed4745de91a5eb834e11c00bcc3709e773173b2ce4c56c9fbde04b9c"
2020-03-06 17:18:22 +08:00
dependencies = [
2020-10-31 14:33:25 +08:00
"aho-corasick",
"memchr",
"regex-syntax",
"thread_local",
2020-03-06 17:18:22 +08:00
]
[[package]]
name = "regex-syntax"
2020-12-01 03:00:28 +08:00
version = "0.6.21"
2020-05-11 12:57:55 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-01 03:00:28 +08:00
checksum = "3b181ba2dcf07aaccad5448e8ead58db5b742cf85dfe035e2227f137a539a189"
2020-05-11 12:57:55 +08:00
[[package]]
name = "ring"
2020-12-01 03:00:28 +08:00
version = "0.16.18"
2020-05-11 12:57:55 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-01 03:00:28 +08:00
checksum = "70017ed5c555d79ee3538fc63ca09c70ad8f317dcadc1adc2c496b60c22bb24f"
2020-05-11 12:57:55 +08:00
dependencies = [
2020-10-31 14:33:25 +08:00
"cc",
"libc",
"once_cell",
"spin",
"untrusted",
"web-sys",
"winapi 0.3.9",
2020-05-11 12:57:55 +08:00
]
2021-03-19 11:32:28 +08:00
[[package]]
name = "rocksdb"
version = "0.15.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "23d83c02c429044d58474eaf5ae31e062d0de894e21125b47437ec0edc1397e6"
dependencies = [
"libc",
"librocksdb-sys",
]
2020-06-21 14:31:52 +08:00
[[package]]
name = "rust-argon2"
2020-12-01 03:00:28 +08:00
version = "0.8.3"
2020-06-21 14:31:52 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-01 03:00:28 +08:00
checksum = "4b18820d944b33caa75a71378964ac46f58517c92b6ae5f762636247c09e78fb"
2020-06-21 14:31:52 +08:00
dependencies = [
2020-12-01 03:00:28 +08:00
"base64 0.13.0",
2020-10-31 14:33:25 +08:00
"blake2b_simd",
"constant_time_eq",
"crossbeam-utils",
2020-06-21 14:31:52 +08:00
]
2020-09-18 17:07:17 +08:00
[[package]]
name = "rust-ini"
2020-10-31 14:33:25 +08:00
version = "0.16.0"
2020-09-18 17:07:17 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:33:25 +08:00
checksum = "dcdbf249a931ceb503aa80e08ca016675dbc7884eda8e2d88e85533d4dbade62"
2020-09-18 17:07:17 +08:00
dependencies = [
2020-10-31 14:33:25 +08:00
"cfg-if 0.1.10",
"ordered-multimap",
2020-09-18 17:07:17 +08:00
]
2021-03-19 11:32:28 +08:00
[[package]]
name = "rustc-hash"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
2020-05-11 12:57:55 +08:00
[[package]]
name = "rustls"
version = "0.17.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:33:25 +08:00
checksum = "c0d4a31f5d68413404705d6982529b0e11a9aacd4839d1d6222ee3b8cb4015e1"
2020-05-11 12:57:55 +08:00
dependencies = [
2020-10-31 14:33:25 +08:00
"base64 0.11.0",
"log",
"ring",
"sct",
"webpki",
2020-05-11 12:57:55 +08:00
]
[[package]]
name = "rustls-native-certs"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:33:25 +08:00
checksum = "a75ffeb84a6bd9d014713119542ce415db3a3e4748f0bfce1e1416cd224a23a5"
2020-05-11 12:57:55 +08:00
dependencies = [
2020-10-31 14:33:25 +08:00
"openssl-probe",
"rustls",
"schannel",
"security-framework",
2020-05-11 12:57:55 +08:00
]
[[package]]
name = "rustversion"
2020-10-31 14:33:25 +08:00
version = "1.0.4"
2020-05-11 12:57:55 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:33:25 +08:00
checksum = "cb5d2a036dc6d2d8fd16fde3498b04306e29bd193bf306a57427019b823d5acd"
2020-05-11 12:57:55 +08:00
2020-05-15 03:16:46 +08:00
[[package]]
name = "ryu"
2020-06-21 14:31:52 +08:00
version = "1.0.5"
2020-05-15 03:16:46 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:33:25 +08:00
checksum = "71d301d4193d031abdd79ff7e3dd721168a9572ef3fe51a1517aba235bd8f86e"
2020-05-15 03:16:46 +08:00
2020-05-11 12:57:55 +08:00
[[package]]
name = "schannel"
version = "0.1.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:33:25 +08:00
checksum = "8f05ba609c234e60bee0d547fe94a4c7e9da733d1c962cf6e59efa4cd9c8bc75"
2020-05-11 12:57:55 +08:00
dependencies = [
2020-10-31 14:33:25 +08:00
"lazy_static",
"winapi 0.3.9",
2020-05-11 12:57:55 +08:00
]
[[package]]
name = "sct"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:33:25 +08:00
checksum = "e3042af939fca8c3453b7af0f1c66e533a15a86169e39de2657310ade8f98d3c"
2020-05-11 12:57:55 +08:00
dependencies = [
2020-10-31 14:33:25 +08:00
"ring",
"untrusted",
2020-05-11 12:57:55 +08:00
]
[[package]]
name = "security-framework"
version = "0.4.4"
2020-03-06 17:18:22 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:33:25 +08:00
checksum = "64808902d7d99f78eaddd2b4e2509713babc3dc3c85ad6f4c447680f3c01e535"
2020-05-11 12:57:55 +08:00
dependencies = [
2020-10-31 14:33:25 +08:00
"bitflags",
"core-foundation",
"core-foundation-sys",
"libc",
"security-framework-sys",
2020-05-11 12:57:55 +08:00
]
[[package]]
name = "security-framework-sys"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:33:25 +08:00
checksum = "17bf11d99252f512695eb468de5516e5cf75455521e69dfe343f3b74e4748405"
2020-05-11 12:57:55 +08:00
dependencies = [
2020-10-31 14:33:25 +08:00
"core-foundation-sys",
"libc",
2020-06-21 14:31:52 +08:00
]
2020-05-15 03:16:46 +08:00
[[package]]
name = "serde"
2020-10-31 14:33:25 +08:00
version = "1.0.117"
2020-05-15 03:16:46 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:33:25 +08:00
checksum = "b88fa983de7720629c9387e9f517353ed404164b1e482c970a90c1a4aaf7dc1a"
2020-05-15 03:16:46 +08:00
[[package]]
name = "serde_derive"
2020-10-31 14:33:25 +08:00
version = "1.0.117"
2020-05-15 03:16:46 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:33:25 +08:00
checksum = "cbd1ae72adb44aab48f325a02444a5fc079349a8d804c1fc922aed3f7454c74e"
2020-05-15 03:16:46 +08:00
dependencies = [
2020-10-31 14:33:25 +08:00
"proc-macro2",
"quote",
"syn",
2020-05-15 03:16:46 +08:00
]
[[package]]
name = "serde_json"
2020-10-31 14:33:25 +08:00
version = "1.0.59"
2020-05-15 03:16:46 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:33:25 +08:00
checksum = "dcac07dbffa1c65e7f816ab9eba78eb142c6d44410f4eeba1e26e4f5dfa56b95"
2020-05-15 03:16:46 +08:00
dependencies = [
2020-10-31 14:33:25 +08:00
"itoa",
"ryu",
"serde",
2020-05-15 03:16:46 +08:00
]
2021-03-19 11:32:28 +08:00
[[package]]
name = "shlex"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7fdf1b9db47230893d76faad238fd6097fd6d6a9245cd7a4d90dbd639536bbd2"
2020-03-06 17:18:22 +08:00
[[package]]
name = "signal-hook-registry"
2020-12-01 03:00:28 +08:00
version = "1.2.2"
2020-03-06 17:18:22 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-01 03:00:28 +08:00
checksum = "ce32ea0c6c56d5eacaeb814fbed9960547021d3edd010ded1425f180536b20ab"
2020-03-06 17:18:22 +08:00
dependencies = [
2020-10-31 14:33:25 +08:00
"libc",
2020-03-06 17:18:22 +08:00
]
[[package]]
name = "slab"
version = "0.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:33:25 +08:00
checksum = "c111b5bd5695e56cffe5129854aa230b39c93a305372fdbb2668ca2394eea9f8"
2020-03-06 17:18:22 +08:00
[[package]]
name = "socket2"
2020-12-01 03:00:28 +08:00
version = "0.3.17"
2020-03-06 17:18:22 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-01 03:00:28 +08:00
checksum = "2c29947abdee2a218277abeca306f25789c938e500ea5a9d4b12a5a504466902"
2020-03-06 17:18:22 +08:00
dependencies = [
2020-12-01 03:00:28 +08:00
"cfg-if 1.0.0",
2020-10-31 14:33:25 +08:00
"libc",
"redox_syscall",
"winapi 0.3.9",
2020-07-09 00:56:30 +08:00
]
[[package]]
name = "sodiumoxide"
2020-09-04 11:32:42 +08:00
version = "0.2.6"
2020-07-09 00:56:30 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:33:25 +08:00
checksum = "7038b67c941e23501573cb7242ffb08709abe9b11eb74bceff875bbda024a6a8"
2020-07-09 00:56:30 +08:00
dependencies = [
2020-10-31 14:33:25 +08:00
"libc",
"libsodium-sys",
"serde",
2020-03-06 17:18:22 +08:00
]
2020-05-11 12:57:55 +08:00
[[package]]
name = "spin"
version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:33:25 +08:00
checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"
2020-05-11 12:57:55 +08:00
2020-09-18 13:04:39 +08:00
[[package]]
name = "strsim"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:33:25 +08:00
checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
2020-09-18 13:04:39 +08:00
2020-03-06 17:18:22 +08:00
[[package]]
name = "syn"
2020-12-01 03:00:28 +08:00
version = "1.0.53"
2020-05-11 12:57:55 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-01 03:00:28 +08:00
checksum = "8833e20724c24de12bbaba5ad230ea61c3eafb05b881c7c9d3cfe8638b187e68"
2020-05-11 12:57:55 +08:00
dependencies = [
2020-10-31 14:33:25 +08:00
"proc-macro2",
"quote",
"unicode-xid",
2020-05-11 12:57:55 +08:00
]
[[package]]
name = "synstructure"
2020-06-21 14:31:52 +08:00
version = "0.12.4"
2020-05-11 12:57:55 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:33:25 +08:00
checksum = "b834f2d66f734cb897113e34aaff2f1ab4719ca946f9a7358dba8f8064148701"
2020-05-11 12:57:55 +08:00
dependencies = [
2020-10-31 14:33:25 +08:00
"proc-macro2",
"quote",
"syn",
"unicode-xid",
2020-07-09 00:56:30 +08:00
]
2020-03-06 17:18:22 +08:00
[[package]]
name = "termcolor"
2020-12-01 03:00:28 +08:00
version = "1.1.2"
2020-03-06 17:18:22 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-01 03:00:28 +08:00
checksum = "2dfed899f0eb03f32ee8c6a0aabdb8a7949659e3466561fc0adf54e26d88c5f4"
2020-03-06 17:18:22 +08:00
dependencies = [
2020-10-31 14:33:25 +08:00
"winapi-util",
2020-03-06 17:18:22 +08:00
]
2020-09-18 13:04:39 +08:00
[[package]]
name = "textwrap"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:33:25 +08:00
checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
2020-09-18 13:04:39 +08:00
dependencies = [
2020-10-31 14:33:25 +08:00
"unicode-width",
2020-09-18 13:04:39 +08:00
]
2020-03-06 17:18:22 +08:00
[[package]]
name = "thread_local"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:33:25 +08:00
checksum = "d40c6d1b69745a6ec6fb1ca717914848da4b44ae29d9b3080cbee91d72a69b14"
2020-03-06 17:18:22 +08:00
dependencies = [
2020-10-31 14:33:25 +08:00
"lazy_static",
2020-03-06 17:18:22 +08:00
]
[[package]]
name = "tokio"
2020-12-01 03:00:28 +08:00
version = "0.2.23"
2020-03-06 17:18:22 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-01 03:00:28 +08:00
checksum = "a6d7ad61edd59bfcc7e80dababf0f4aed2e6d5e0ba1659356ae889752dfc12ff"
2020-03-06 17:18:22 +08:00
dependencies = [
2020-10-31 14:33:25 +08:00
"bytes",
"fnv",
"futures-core",
"iovec",
"lazy_static",
"libc",
"memchr",
"mio",
"mio-named-pipes",
"mio-uds",
"num_cpus",
2020-12-01 03:00:28 +08:00
"pin-project-lite 0.1.11",
2020-10-31 14:33:25 +08:00
"signal-hook-registry",
"slab",
"tokio-macros",
"winapi 0.3.9",
2020-03-06 17:18:22 +08:00
]
[[package]]
name = "tokio-macros"
2020-12-01 03:00:28 +08:00
version = "0.2.6"
2020-03-06 17:18:22 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-01 03:00:28 +08:00
checksum = "e44da00bfc73a25f814cd8d7e57a68a5c31b74b3152a0a1d1f590c97ed06265a"
2020-03-06 17:18:22 +08:00
dependencies = [
2020-10-31 14:33:25 +08:00
"proc-macro2",
"quote",
"syn",
2020-03-06 17:18:22 +08:00
]
[[package]]
name = "tokio-util"
2020-05-11 12:57:55 +08:00
version = "0.3.1"
2020-03-06 17:18:22 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:33:25 +08:00
checksum = "be8242891f2b6cbef26a2d7e8605133c2c554cd35b3e4948ea892d6d68436499"
2020-03-06 17:18:22 +08:00
dependencies = [
2020-10-31 14:33:25 +08:00
"bytes",
"futures-core",
"futures-io",
"futures-sink",
"log",
2020-12-01 03:00:28 +08:00
"pin-project-lite 0.1.11",
2020-10-31 14:33:25 +08:00
"tokio",
2020-06-21 14:31:52 +08:00
]
[[package]]
name = "toml"
2020-10-31 14:33:25 +08:00
version = "0.5.7"
2020-06-21 14:31:52 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:33:25 +08:00
checksum = "75cf45bb0bef80604d001caaec0d09da99611b3c0fd39d3080468875cdb65645"
2020-06-21 14:31:52 +08:00
dependencies = [
2020-10-31 14:33:25 +08:00
"serde",
2020-05-11 12:57:55 +08:00
]
[[package]]
name = "tracing"
2020-12-01 03:00:28 +08:00
version = "0.1.22"
2020-05-11 12:57:55 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-01 03:00:28 +08:00
checksum = "9f47026cdc4080c07e49b37087de021820269d996f581aac150ef9e5583eefe3"
2020-05-11 12:57:55 +08:00
dependencies = [
2020-12-01 03:00:28 +08:00
"cfg-if 1.0.0",
"pin-project-lite 0.2.0",
2020-10-31 14:33:25 +08:00
"tracing-attributes",
"tracing-core",
2020-05-11 12:57:55 +08:00
]
[[package]]
name = "tracing-attributes"
2020-09-04 11:32:42 +08:00
version = "0.1.11"
2020-05-11 12:57:55 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:33:25 +08:00
checksum = "80e0ccfc3378da0cce270c946b676a376943f5cd16aeba64568e7939806f4ada"
2020-05-11 12:57:55 +08:00
dependencies = [
2020-10-31 14:33:25 +08:00
"proc-macro2",
"quote",
"syn",
2020-05-11 12:57:55 +08:00
]
[[package]]
name = "tracing-core"
2020-10-31 14:33:25 +08:00
version = "0.1.17"
2020-05-11 12:57:55 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:33:25 +08:00
checksum = "f50de3927f93d202783f4513cda820ab47ef17f624b03c096e86ef00c67e6b5f"
2020-05-11 12:57:55 +08:00
dependencies = [
2020-10-31 14:33:25 +08:00
"lazy_static",
2020-03-06 17:18:22 +08:00
]
2020-09-18 13:04:39 +08:00
[[package]]
name = "unicode-width"
version = "0.1.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:33:25 +08:00
checksum = "9337591893a19b88d8d87f2cec1e73fad5cdfd10e5a6f349f498ad6ea2ffb1e3"
2020-09-18 13:04:39 +08:00
2020-03-06 17:18:22 +08:00
[[package]]
name = "unicode-xid"
2020-07-09 00:56:30 +08:00
version = "0.2.1"
2020-03-06 17:18:22 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:33:25 +08:00
checksum = "f7fe0bb3479651439c9112f72b6c505038574c9fbb575ed1bf3b797fa39dd564"
2020-03-06 17:18:22 +08:00
2020-05-11 12:57:55 +08:00
[[package]]
name = "untrusted"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:33:25 +08:00
checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
2020-05-11 12:57:55 +08:00
2020-09-18 13:04:39 +08:00
[[package]]
name = "vec_map"
version = "0.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:33:25 +08:00
checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191"
2020-09-18 13:04:39 +08:00
2020-05-11 12:57:55 +08:00
[[package]]
name = "version_check"
2020-06-21 14:31:52 +08:00
version = "0.9.2"
2020-05-11 12:57:55 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:33:25 +08:00
checksum = "b5a972e5669d67ba988ce3dc826706fb0a8b01471c088cb0b6110b805cc36aed"
2020-06-21 14:31:52 +08:00
2020-05-11 12:57:55 +08:00
[[package]]
name = "wasi"
version = "0.9.0+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:33:25 +08:00
checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
2020-05-11 12:57:55 +08:00
[[package]]
name = "wasm-bindgen"
2020-10-31 14:33:25 +08:00
version = "0.2.68"
2020-05-11 12:57:55 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:33:25 +08:00
checksum = "1ac64ead5ea5f05873d7c12b545865ca2b8d28adfc50a49b84770a3a97265d42"
2020-05-11 12:57:55 +08:00
dependencies = [
2020-10-31 14:33:25 +08:00
"cfg-if 0.1.10",
"wasm-bindgen-macro",
2020-05-11 12:57:55 +08:00
]
[[package]]
name = "wasm-bindgen-backend"
2020-10-31 14:33:25 +08:00
version = "0.2.68"
2020-05-11 12:57:55 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:33:25 +08:00
checksum = "f22b422e2a757c35a73774860af8e112bff612ce6cb604224e8e47641a9e4f68"
2020-05-11 12:57:55 +08:00
dependencies = [
2020-10-31 14:33:25 +08:00
"bumpalo",
"lazy_static",
"log",
"proc-macro2",
"quote",
"syn",
"wasm-bindgen-shared",
2020-05-11 12:57:55 +08:00
]
[[package]]
name = "wasm-bindgen-macro"
2020-10-31 14:33:25 +08:00
version = "0.2.68"
2020-05-11 12:57:55 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:33:25 +08:00
checksum = "6b13312a745c08c469f0b292dd2fcd6411dba5f7160f593da6ef69b64e407038"
2020-05-11 12:57:55 +08:00
dependencies = [
2020-10-31 14:33:25 +08:00
"quote",
"wasm-bindgen-macro-support",
2020-05-11 12:57:55 +08:00
]
[[package]]
name = "wasm-bindgen-macro-support"
2020-10-31 14:33:25 +08:00
version = "0.2.68"
2020-05-11 12:57:55 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:33:25 +08:00
checksum = "f249f06ef7ee334cc3b8ff031bfc11ec99d00f34d86da7498396dc1e3b1498fe"
2020-05-11 12:57:55 +08:00
dependencies = [
2020-10-31 14:33:25 +08:00
"proc-macro2",
"quote",
"syn",
"wasm-bindgen-backend",
"wasm-bindgen-shared",
2020-05-11 12:57:55 +08:00
]
[[package]]
name = "wasm-bindgen-shared"
2020-10-31 14:33:25 +08:00
version = "0.2.68"
2020-05-11 12:57:55 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:33:25 +08:00
checksum = "1d649a3145108d7d3fbcde896a468d1bd636791823c9921135218ad89be08307"
2020-05-11 12:57:55 +08:00
[[package]]
name = "web-sys"
2020-10-31 14:33:25 +08:00
version = "0.3.45"
2020-05-11 12:57:55 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:33:25 +08:00
checksum = "4bf6ef87ad7ae8008e15a355ce696bed26012b7caa21605188cfd8214ab51e2d"
2020-05-11 12:57:55 +08:00
dependencies = [
2020-10-31 14:33:25 +08:00
"js-sys",
"wasm-bindgen",
2020-05-11 12:57:55 +08:00
]
[[package]]
name = "webpki"
2020-06-21 14:31:52 +08:00
version = "0.21.3"
2020-05-11 12:57:55 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:33:25 +08:00
checksum = "ab146130f5f790d45f82aeeb09e55a256573373ec64409fc19a6fb82fb1032ae"
2020-05-11 12:57:55 +08:00
dependencies = [
2020-10-31 14:33:25 +08:00
"ring",
"untrusted",
2020-05-11 12:57:55 +08:00
]
2021-03-19 11:32:28 +08:00
[[package]]
name = "which"
version = "3.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d011071ae14a2f6671d0b74080ae0cd8ebf3a6f8c9589a2cd45f23126fe29724"
dependencies = [
"libc",
]
2020-03-06 17:18:22 +08:00
[[package]]
name = "winapi"
version = "0.2.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:33:25 +08:00
checksum = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a"
2020-03-06 17:18:22 +08:00
[[package]]
name = "winapi"
2020-07-09 00:56:30 +08:00
version = "0.3.9"
2020-03-06 17:18:22 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:33:25 +08:00
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
2020-03-06 17:18:22 +08:00
dependencies = [
2020-10-31 14:33:25 +08:00
"winapi-i686-pc-windows-gnu",
"winapi-x86_64-pc-windows-gnu",
2020-03-06 17:18:22 +08:00
]
[[package]]
name = "winapi-build"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:33:25 +08:00
checksum = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc"
2020-03-06 17:18:22 +08:00
[[package]]
name = "winapi-i686-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:33:25 +08:00
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
2020-03-06 17:18:22 +08:00
[[package]]
name = "winapi-util"
2020-05-11 12:57:55 +08:00
version = "0.1.5"
2020-03-06 17:18:22 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:33:25 +08:00
checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
2020-03-06 17:18:22 +08:00
dependencies = [
2020-10-31 14:33:25 +08:00
"winapi 0.3.9",
2020-03-06 17:18:22 +08:00
]
[[package]]
name = "winapi-x86_64-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:33:25 +08:00
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
2020-03-06 17:18:22 +08:00
[[package]]
name = "ws2_32-sys"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:33:25 +08:00
checksum = "d59cefebd0c892fa2dd6de581e937301d8552cb44489cdff035c6187cb63fa5e"
2020-03-06 17:18:22 +08:00
dependencies = [
2020-10-31 14:33:25 +08:00
"winapi 0.2.8",
"winapi-build",
2020-03-06 17:18:22 +08:00
]
[[package]]
name = "zstd"
2020-06-21 14:31:52 +08:00
version = "0.5.3+zstd.1.4.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:33:25 +08:00
checksum = "01b32eaf771efa709e8308605bbf9319bf485dc1503179ec0469b611937c0cd8"
dependencies = [
2020-10-31 14:33:25 +08:00
"zstd-safe",
]
[[package]]
name = "zstd-safe"
2020-06-21 14:31:52 +08:00
version = "2.0.5+zstd.1.4.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:33:25 +08:00
checksum = "1cfb642e0d27f64729a639c52db457e0ae906e7bc6f5fe8f5c453230400f1055"
dependencies = [
2020-10-31 14:33:25 +08:00
"libc",
"zstd-sys",
]
[[package]]
name = "zstd-sys"
2020-06-21 14:31:52 +08:00
version = "1.4.17+zstd.1.4.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:33:25 +08:00
checksum = "b89249644df056b522696b1bb9e7c18c87e8ffa3e2f0dc3b0155875d6498f01b"
dependencies = [
2020-10-31 14:33:25 +08:00
"cc",
"glob",
"itertools",
"libc",
]