hickory-dns/Cargo.lock

2241 lines
52 KiB
Plaintext
Raw Normal View History

2019-10-27 01:24:15 +00:00
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
2021-09-28 14:36:27 +00:00
version = 3
[[package]]
name = "addr2line"
2022-08-03 10:16:27 +00:00
version = "0.17.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "b9ecd88a8c8378ca913a680cd98f0f13ac67383d35993f86c90a70e3f137816b"
dependencies = [
"gimli",
]
[[package]]
name = "adler"
2021-03-05 19:23:36 +00:00
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-03-05 19:23:36 +00:00
checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
2020-10-24 20:35:22 +00:00
[[package]]
name = "ahash"
2022-08-03 10:16:27 +00:00
version = "0.7.6"
2020-10-24 20:35:22 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47"
dependencies = [
"getrandom",
"once_cell",
"version_check",
]
2020-10-24 20:35:22 +00:00
2019-01-19 20:42:54 +00:00
[[package]]
name = "aho-corasick"
version = "0.7.18"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1e37cfd5e7657ada45f742d6e99ca5788580b5c529dc78faf11ece6dc702656f"
2019-01-19 20:42:54 +00:00
dependencies = [
"memchr",
2019-01-19 20:42:54 +00:00
]
[[package]]
name = "ansi_term"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2"
dependencies = [
"winapi",
]
2020-04-10 21:57:29 +00:00
[[package]]
name = "async-attributes"
2021-02-18 10:09:36 +00:00
version = "1.1.2"
2020-04-10 21:57:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-18 10:09:36 +00:00
checksum = "a3203e79f4dd9bdda415ed03cf14dae5a2bf775c683a00f94e9cd1faf0f596e5"
2020-04-10 21:57:29 +00:00
dependencies = [
"quote",
"syn",
2020-04-10 21:57:29 +00:00
]
[[package]]
name = "async-channel"
2021-02-18 10:09:36 +00:00
version = "1.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-18 10:09:36 +00:00
checksum = "2114d64672151c0c5eaa5e131ec84a74f06e1e559830dabba01ca30605d66319"
dependencies = [
"concurrent-queue",
"event-listener",
"futures-core",
]
[[package]]
name = "async-executor"
version = "1.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "871f9bb5e0a22eeb7e8cf16641feb87c9dc67032ccf8ff49e772eb9941d3a965"
dependencies = [
2020-10-24 20:35:22 +00:00
"async-task",
"concurrent-queue",
"fastrand",
"futures-lite",
"once_cell",
"slab",
]
[[package]]
name = "async-global-executor"
2022-08-03 10:16:27 +00:00
version = "2.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "5262ed948da60dd8956c6c5aca4d4163593dddb7b32d73267c93dab7b2e98940"
dependencies = [
2021-02-18 06:02:38 +00:00
"async-channel",
"async-executor",
"async-io",
2022-08-03 10:16:27 +00:00
"async-lock",
2021-02-18 06:02:38 +00:00
"blocking",
"futures-lite",
"num_cpus",
"once_cell",
]
[[package]]
name = "async-io"
2022-08-03 10:16:27 +00:00
version = "1.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "e5e18f61464ae81cde0a23e713ae8fd299580c54d697a35820cfd0625b8b0e07"
dependencies = [
"concurrent-queue",
"futures-lite",
2020-10-24 20:35:22 +00:00
"libc",
"log",
"once_cell",
"parking",
"polling",
"slab",
"socket2",
"waker-fn",
2020-11-09 21:38:29 +00:00
"winapi",
]
2021-02-18 06:02:38 +00:00
[[package]]
name = "async-lock"
2022-08-03 10:16:27 +00:00
version = "2.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "e97a171d191782fba31bb902b14ad94e24a68145032b7eedf871ab0bc0d077b6"
dependencies = [
"event-listener",
]
[[package]]
name = "async-process"
2022-08-03 10:16:27 +00:00
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "cf2c06e30a24e8c78a3987d07f0930edf76ef35e027e7bdb063fccafdad1f60c"
dependencies = [
"async-io",
"blocking",
"cfg-if",
"event-listener",
"futures-lite",
"libc",
"once_cell",
"signal-hook",
"winapi",
]
[[package]]
name = "async-std"
2022-08-03 10:16:27 +00:00
version = "1.12.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "62565bb4402e926b29953c785397c6dc0391b7b446e45008b0049eb43cec6f5d"
dependencies = [
"async-attributes",
2020-12-25 02:49:11 +00:00
"async-channel",
"async-global-executor",
"async-io",
2021-02-18 06:02:38 +00:00
"async-lock",
"async-process",
"crossbeam-utils",
"futures-channel",
"futures-core",
"futures-io",
"futures-lite",
"gloo-timers",
"kv-log-macro",
"log",
"memchr",
"once_cell",
2020-12-25 02:49:11 +00:00
"pin-project-lite",
"pin-utils",
"slab",
"wasm-bindgen-futures",
]
2020-04-10 21:57:29 +00:00
[[package]]
name = "async-std-resolver"
2022-03-30 16:07:39 +00:00
version = "0.21.2"
2020-04-10 21:57:29 +00:00
dependencies = [
"async-std",
"async-trait",
"futures-io",
"futures-util",
"pin-utils",
"socket2",
"trust-dns-resolver",
2020-04-10 21:57:29 +00:00
]
[[package]]
name = "async-task"
2022-08-03 10:16:27 +00:00
version = "4.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "7a40729d2133846d9ed0ea60a8b9541bccddab49cd30f0715a1da672fe9a2524"
[[package]]
name = "async-trait"
2022-08-03 10:16:27 +00:00
version = "0.1.57"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "76464446b8bc32758d7e88ee1a804d9914cd9b1cb264c029899680b0be29826f"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "atomic-waker"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "065374052e7df7ee4047b1160cca5e1467a12351a40b3da123c870ba0b8eda2a"
2019-01-19 20:42:54 +00:00
[[package]]
name = "atty"
version = "0.2.14"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
2019-01-19 20:42:54 +00:00
dependencies = [
"hermit-abi",
"libc",
2020-11-09 21:38:29 +00:00
"winapi",
2019-01-19 20:42:54 +00:00
]
[[package]]
name = "autocfg"
2022-08-03 10:16:27 +00:00
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
2019-01-19 20:42:54 +00:00
[[package]]
name = "backtrace"
2022-08-03 10:16:27 +00:00
version = "0.3.66"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "cab84319d616cfb654d03394f38ab7e6f0919e181b1b57e1fd15e7fb4077d9a7"
2019-01-19 20:42:54 +00:00
dependencies = [
"addr2line",
"cc",
"cfg-if",
"libc",
"miniz_oxide",
"object",
"rustc-demangle",
2019-01-19 20:42:54 +00:00
]
[[package]]
name = "base64"
version = "0.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd"
2019-01-19 20:42:54 +00:00
[[package]]
name = "bitflags"
2022-08-03 10:16:27 +00:00
version = "1.3.2"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
2019-01-19 20:42:54 +00:00
2020-06-19 17:04:04 +00:00
[[package]]
name = "blocking"
2022-08-03 10:16:27 +00:00
version = "1.2.0"
2020-06-19 17:04:04 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "c6ccb65d468978a086b69884437ded69a90faab3bbe6e67f242173ea728acccc"
2020-06-19 17:04:04 +00:00
dependencies = [
"async-channel",
2020-10-24 20:35:22 +00:00
"async-task",
"atomic-waker",
"fastrand",
"futures-lite",
2020-06-19 17:04:04 +00:00
"once_cell",
]
[[package]]
name = "bumpalo"
2022-08-03 10:16:27 +00:00
version = "3.10.0"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "37ccbd214614c6783386c1af30caf03192f17891059cecc394b4fb119e363de3"
2019-01-19 20:42:54 +00:00
[[package]]
name = "byteorder"
version = "1.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
2020-11-09 21:38:29 +00:00
[[package]]
name = "bytes"
2022-08-03 10:16:27 +00:00
version = "1.2.1"
2020-11-09 21:38:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "ec8a7b6a70fde80372154c65702f00a0f56f3e1c36abbc6c440484be248856db"
2020-11-09 21:38:29 +00:00
2020-06-19 17:04:04 +00:00
[[package]]
name = "cache-padded"
2022-08-03 10:16:27 +00:00
version = "1.2.0"
2020-06-19 17:04:04 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "c1db59621ec70f09c5e9b597b220c7a2b43611f4710dc03ceb8748637775692c"
2020-06-19 17:04:04 +00:00
2019-01-19 20:42:54 +00:00
[[package]]
name = "cc"
2022-08-03 10:16:27 +00:00
version = "1.0.73"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "2fff2a6927b3bb87f9595d67196a70493f627687a71d87a0d692242c33f58c11"
2019-01-19 20:42:54 +00:00
[[package]]
name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
2019-01-19 20:42:54 +00:00
[[package]]
name = "clap"
2022-08-03 10:16:27 +00:00
version = "3.2.16"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "a3dbbb6653e7c55cc8595ad3e1f7be8f32aba4eb7ff7f0fd1163d4f3d137c0a9"
2019-01-19 20:42:54 +00:00
dependencies = [
2022-04-08 00:12:23 +00:00
"atty",
"bitflags",
2022-02-25 15:35:50 +00:00
"clap_derive",
2022-08-03 10:16:27 +00:00
"clap_lex",
2022-02-25 15:35:50 +00:00
"indexmap",
2022-08-03 10:16:27 +00:00
"once_cell",
2022-04-08 00:12:23 +00:00
"strsim",
"termcolor",
2022-02-25 15:35:50 +00:00
"textwrap",
2019-01-19 20:42:54 +00:00
]
2022-01-16 17:01:28 +00:00
[[package]]
2022-02-25 15:35:50 +00:00
name = "clap_derive"
2022-03-17 03:03:25 +00:00
version = "3.1.2"
2022-01-16 17:01:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-17 03:03:25 +00:00
checksum = "01d42c94ce7c2252681b5fed4d3627cc807b13dfc033246bd05d5b252399000e"
2022-01-16 17:01:28 +00:00
dependencies = [
2022-02-26 00:05:17 +00:00
"heck",
2022-02-25 15:35:50 +00:00
"proc-macro-error",
"proc-macro2",
"quote",
"syn",
2022-01-16 17:01:28 +00:00
]
2022-08-03 10:16:27 +00:00
[[package]]
name = "clap_lex"
version = "0.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2850f2f5a82cbf437dd5af4d49848fbdfc27c157c3d010345776f952765261c5"
dependencies = [
"os_str_bytes",
]
2020-06-19 17:04:04 +00:00
[[package]]
name = "concurrent-queue"
2022-08-03 10:16:27 +00:00
version = "1.2.4"
2020-06-19 17:04:04 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "af4780a44ab5696ea9e28294517f1fffb421a83a25af521333c838635509db9c"
2020-06-19 17:04:04 +00:00
dependencies = [
"cache-padded",
]
2020-09-17 19:33:11 +00:00
[[package]]
name = "console"
2022-08-03 10:16:27 +00:00
version = "0.15.1"
2020-09-17 19:33:11 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "89eab4d20ce20cea182308bca13088fecea9c05f6776cf287205d41a0ed3c847"
2020-09-17 19:33:11 +00:00
dependencies = [
"encode_unicode",
"libc",
"once_cell",
2020-09-17 19:33:11 +00:00
"terminal_size",
"unicode-width",
2020-11-09 21:38:29 +00:00
"winapi",
2020-09-17 19:33:11 +00:00
]
2019-01-19 20:42:54 +00:00
[[package]]
name = "core-foundation"
2022-08-03 10:16:27 +00:00
version = "0.9.3"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146"
2019-01-19 20:42:54 +00:00
dependencies = [
"core-foundation-sys",
"libc",
2019-01-19 20:42:54 +00:00
]
[[package]]
name = "core-foundation-sys"
2022-08-03 10:16:27 +00:00
version = "0.8.3"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc"
2019-01-19 20:42:54 +00:00
[[package]]
name = "crossbeam-utils"
2022-08-03 10:16:27 +00:00
version = "0.8.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "51887d4adc7b564537b15adcfb307936f8075dfcd5f00dde9a9f1d29383682bc"
dependencies = [
"cfg-if",
2022-08-03 10:16:27 +00:00
"once_cell",
2021-02-18 10:09:36 +00:00
]
[[package]]
name = "ctor"
2022-08-03 10:16:27 +00:00
version = "0.1.23"
2021-02-18 10:09:36 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "cdffe87e1d521a10f9696f833fe502293ea446d7f256c06128293a4119bdf4cb"
2021-02-18 10:09:36 +00:00
dependencies = [
"quote",
"syn",
]
2019-01-19 20:42:54 +00:00
[[package]]
name = "data-encoding"
2021-02-18 10:09:36 +00:00
version = "2.3.2"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-18 10:09:36 +00:00
checksum = "3ee2393c4a91429dffb4bedf19f4d6abf27d8a732c8ce4980305d782e5426d57"
2019-01-19 20:42:54 +00:00
2020-09-17 19:33:11 +00:00
[[package]]
name = "encode_unicode"
version = "0.3.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f"
2019-01-19 20:42:54 +00:00
[[package]]
name = "endian-type"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c34f04666d835ff5d62e058c3995147c06f42fe86ff053337632bca83e42702d"
2019-01-19 20:42:54 +00:00
[[package]]
name = "enum-as-inner"
version = "0.5.1"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c9720bba047d567ffc8a3cba48bf19126600e249ab7f128e9233e6376976a116"
2019-01-19 20:42:54 +00:00
dependencies = [
2022-02-26 00:05:17 +00:00
"heck",
"proc-macro2",
"quote",
"syn",
2019-01-19 20:42:54 +00:00
]
[[package]]
name = "event-listener"
2022-08-03 10:16:27 +00:00
version = "2.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0"
2019-04-06 16:42:49 +00:00
[[package]]
name = "fallible-iterator"
version = "0.2.0"
2019-04-06 16:42:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7"
2019-04-06 16:42:49 +00:00
[[package]]
name = "fallible-streaming-iterator"
version = "0.1.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a"
2019-04-06 16:42:49 +00:00
2020-06-19 17:04:04 +00:00
[[package]]
name = "fastrand"
2022-08-03 10:16:27 +00:00
version = "1.8.0"
2020-06-19 17:04:04 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "a7a407cfaa3385c4ae6b23e84623d48c2798d06e3e6a1878f7f59f17b3f86499"
2020-10-24 20:35:22 +00:00
dependencies = [
"instant",
]
2020-06-19 17:04:04 +00:00
2019-01-19 20:42:54 +00:00
[[package]]
name = "fnv"
version = "1.0.7"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
2019-01-19 20:42:54 +00:00
[[package]]
name = "foreign-types"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
2019-01-19 20:42:54 +00:00
dependencies = [
"foreign-types-shared",
2019-01-19 20:42:54 +00:00
]
[[package]]
name = "foreign-types-shared"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
2019-01-19 20:42:54 +00:00
2020-11-10 00:52:27 +00:00
[[package]]
name = "form_urlencoded"
2021-02-18 10:09:36 +00:00
version = "1.0.1"
2020-11-10 00:52:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-18 10:09:36 +00:00
checksum = "5fc25a87fa4fd2094bffb06925852034d90a17f0d1e05197d4956d3555752191"
2020-11-10 00:52:27 +00:00
dependencies = [
"matches",
"percent-encoding",
]
[[package]]
name = "futures"
2022-08-03 10:16:27 +00:00
version = "0.3.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "f73fe65f54d1e12b726f517d3e2135ca3125a437b6d998caf1962961f7172d9e"
dependencies = [
"futures-channel",
"futures-core",
"futures-executor",
"futures-io",
"futures-sink",
"futures-task",
"futures-util",
]
[[package]]
name = "futures-channel"
2022-08-03 10:16:27 +00:00
version = "0.3.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "c3083ce4b914124575708913bca19bfe887522d6e2e6d0952943f5eac4a74010"
dependencies = [
"futures-core",
"futures-sink",
]
[[package]]
name = "futures-core"
2022-08-03 10:16:27 +00:00
version = "0.3.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "0c09fd04b7e4073ac7156a9539b57a484a8ea920f79c7c675d05d289ab6110d3"
[[package]]
name = "futures-executor"
2022-08-03 10:16:27 +00:00
version = "0.3.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "9420b90cfa29e327d0429f19be13e7ddb68fa1cccb09d65e5706b8c7a749b8a6"
dependencies = [
"futures-core",
"futures-task",
"futures-util",
"num_cpus",
]
[[package]]
name = "futures-io"
2022-08-03 10:16:27 +00:00
version = "0.3.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "fc4045962a5a5e935ee2fdedaa4e08284547402885ab326734432bed5d12966b"
[[package]]
name = "futures-lite"
version = "1.12.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7694489acd39452c77daa48516b894c153f192c3578d5a839b62c58099fcbf48"
dependencies = [
"fastrand",
"futures-core",
"futures-io",
"memchr",
"parking",
2020-12-25 02:49:11 +00:00
"pin-project-lite",
"waker-fn",
]
[[package]]
name = "futures-macro"
2022-08-03 10:16:27 +00:00
version = "0.3.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "33c1e13800337f4d4d7a316bf45a567dbcb6ffe087f16424852d97e97a91f512"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "futures-sink"
2022-08-03 10:16:27 +00:00
version = "0.3.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "21163e139fa306126e6eedaf49ecdb4588f939600f0b1e770f4205ee4b7fa868"
[[package]]
name = "futures-task"
2022-08-03 10:16:27 +00:00
version = "0.3.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "57c66a976bf5909d801bbef33416c41372779507e7a6b3a5e25e4749c58f776a"
[[package]]
name = "futures-util"
2022-08-03 10:16:27 +00:00
version = "0.3.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "d8b7abd5d659d9b90c8cba917f6ec750a74e2dc23902ef9cd4cc8c8b22e6036a"
dependencies = [
"futures-channel",
"futures-core",
"futures-io",
"futures-macro",
"futures-sink",
"futures-task",
"memchr",
2021-02-18 10:09:36 +00:00
"pin-project-lite",
"pin-utils",
"slab",
]
[[package]]
name = "fxhash"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c"
dependencies = [
"byteorder",
]
[[package]]
name = "getrandom"
2022-08-03 10:16:27 +00:00
version = "0.2.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "4eb1a864a501629691edf6c15a593b7a51eebaa1e8468e9ddc623de7c9b58ec6"
dependencies = [
"cfg-if",
"libc",
2021-02-18 10:09:36 +00:00
"wasi",
]
[[package]]
name = "gimli"
2022-08-03 10:16:27 +00:00
version = "0.26.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "22030e2c5a68ec659fde1e949a745124b48e6fa8b045b7ed5bd1fe4ccc5c4e5d"
[[package]]
name = "gloo-timers"
2022-08-03 10:16:27 +00:00
version = "0.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "5fb7d06c1c8cc2a29bee7ec961009a0b2caa0793ee4900c2ffb348734ba1c8f9"
dependencies = [
"futures-channel",
"futures-core",
"js-sys",
"wasm-bindgen",
]
[[package]]
name = "h2"
2022-08-03 10:16:27 +00:00
version = "0.3.13"
2020-12-25 02:49:11 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "37a82c6d637fc9515a4694bbf1cb2457b79d81ce52b3108bdeea58b07dd34a57"
dependencies = [
2021-02-18 10:09:36 +00:00
"bytes",
"fnv",
"futures-core",
"futures-sink",
"futures-util",
"http",
"indexmap",
"slab",
2020-11-10 19:24:15 +00:00
"tokio",
"tokio-util",
"tracing",
2019-01-19 20:42:54 +00:00
]
[[package]]
name = "hashbrown"
version = "0.12.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
2020-10-24 20:35:22 +00:00
dependencies = [
"ahash",
]
[[package]]
name = "hashlink"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d452c155cb93fecdfb02a73dd57b5d8e442c2063bd7aac72f1bc5e4263a43086"
2020-10-24 20:35:22 +00:00
dependencies = [
2022-08-03 10:16:27 +00:00
"hashbrown",
2020-10-24 20:35:22 +00:00
]
2022-02-25 15:35:50 +00:00
[[package]]
name = "heck"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2540771e65fc8cb83cd6e8a237f70c319bd5c29f78ed1084ba5d50eeac86f7f9"
[[package]]
name = "hermit-abi"
version = "0.1.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
dependencies = [
"libc",
]
2019-01-19 20:42:54 +00:00
[[package]]
name = "hostname"
version = "0.3.1"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3c731c3e10504cc8ed35cfe2f1db4c9274c3d35fa486e3b31df46f068ef3e867"
2019-01-19 20:42:54 +00:00
dependencies = [
"libc",
"match_cfg",
2020-11-09 21:38:29 +00:00
"winapi",
2019-01-19 20:42:54 +00:00
]
[[package]]
name = "http"
2022-08-03 10:16:27 +00:00
version = "0.2.8"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "75f43d41e26995c17e71ee126451dd3941010b0514a81a9d11f3b341debc2399"
2019-01-19 20:42:54 +00:00
dependencies = [
2021-02-18 10:09:36 +00:00
"bytes",
"fnv",
2022-05-03 01:39:53 +00:00
"itoa",
2019-01-19 20:42:54 +00:00
]
[[package]]
name = "idna"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "418a0a6fab821475f634efe3ccc45c013f742efe03d853e8d3355d5cb850ecf8"
dependencies = [
"matches",
"unicode-bidi",
"unicode-normalization",
]
2019-01-19 20:42:54 +00:00
[[package]]
name = "indexmap"
2022-08-03 10:16:27 +00:00
version = "1.9.1"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "10a35a97730320ffe8e2d410b5d3b69279b98d2c14bdb8b70ea89ecf7888d41e"
2019-10-26 22:43:37 +00:00
dependencies = [
"autocfg",
2022-08-03 10:16:27 +00:00
"hashbrown",
2019-10-26 22:43:37 +00:00
]
2019-01-19 20:42:54 +00:00
[[package]]
name = "instant"
2022-08-03 10:16:27 +00:00
version = "0.1.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
dependencies = [
"cfg-if",
]
2019-01-19 20:42:54 +00:00
[[package]]
name = "ipconfig"
version = "0.3.0"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "723519edce41262b05d4143ceb95050e4c614f483e78e9fd9e39a8275a84ad98"
2019-01-19 20:42:54 +00:00
dependencies = [
"socket2",
"widestring",
2020-11-09 21:38:29 +00:00
"winapi",
"winreg",
2019-01-19 20:42:54 +00:00
]
[[package]]
name = "ipnet"
2022-08-03 10:16:27 +00:00
version = "2.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "879d54834c8c76457ef4293a689b2a8c59b076067ad77b15efafbb05f92a592b"
2019-01-19 20:42:54 +00:00
[[package]]
name = "itoa"
2022-08-03 10:16:27 +00:00
version = "1.0.2"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "112c678d4050afce233f4f2852bb2eb519230b3cf12f33585275537d7e41578d"
2019-01-19 20:42:54 +00:00
[[package]]
name = "js-sys"
2022-08-03 10:16:27 +00:00
version = "0.3.59"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "258451ab10b34f8af53416d1fdab72c22e805f0c92a1136d59470ec0b11138b2"
dependencies = [
"wasm-bindgen",
]
[[package]]
name = "kv-log-macro"
version = "1.0.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0de8b303297635ad57c9f5059fd9cee7a47f8e8daa09df0fcd07dd39fb22977f"
dependencies = [
"log",
]
2019-01-19 20:42:54 +00:00
[[package]]
name = "lazy_static"
2019-09-06 14:00:02 +00:00
version = "1.4.0"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
2019-01-19 20:42:54 +00:00
[[package]]
name = "libc"
2022-08-03 10:16:27 +00:00
version = "0.2.126"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "349d5a591cd28b49e1d1037471617a32ddcda5731b99419008085f72d5a53836"
2019-01-19 20:42:54 +00:00
[[package]]
name = "libsqlite3-sys"
2022-08-03 10:16:27 +00:00
version = "0.25.1"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "9f0455f2c1bc9a7caa792907026e469c1d91761fb0ea37cbb16427c77280cf35"
2019-01-19 20:42:54 +00:00
dependencies = [
"cc",
"pkg-config",
"vcpkg",
2019-01-19 20:42:54 +00:00
]
[[package]]
name = "linked-hash-map"
2022-08-03 10:16:27 +00:00
version = "0.5.6"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f"
2019-01-19 20:42:54 +00:00
[[package]]
name = "lock_api"
2022-08-03 10:16:27 +00:00
version = "0.4.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "327fa5b6a6940e4699ec49a9beae1ea4845c6bab9314e4f84ac68742139d8c53"
dependencies = [
2022-08-03 10:16:27 +00:00
"autocfg",
"scopeguard",
]
2019-01-19 20:42:54 +00:00
[[package]]
name = "log"
2022-08-03 10:16:27 +00:00
version = "0.4.17"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
2019-01-19 20:42:54 +00:00
dependencies = [
"cfg-if",
2021-02-18 10:09:36 +00:00
"value-bag",
]
2019-01-19 20:42:54 +00:00
[[package]]
name = "lru-cache"
version = "0.1.2"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "31e24f1ad8321ca0e8a1e0ac13f23cb668e6f5466c2c57319f6a5cf1cc8e3b1c"
2019-01-19 20:42:54 +00:00
dependencies = [
"linked-hash-map",
2019-01-19 20:42:54 +00:00
]
[[package]]
name = "match_cfg"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ffbee8634e0d45d258acb448e7eaab3fce7a0a467395d4d9f228e3c1f01fb2e4"
[[package]]
name = "matchers"
2022-05-03 01:39:53 +00:00
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-03 01:39:53 +00:00
checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558"
dependencies = [
"regex-automata",
]
2019-01-19 20:42:54 +00:00
[[package]]
name = "matches"
version = "0.1.9"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f"
2019-01-19 20:42:54 +00:00
[[package]]
name = "memchr"
2022-08-03 10:16:27 +00:00
version = "2.5.0"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
2019-01-19 20:42:54 +00:00
[[package]]
name = "miniz_oxide"
2022-08-03 10:16:27 +00:00
version = "0.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "6f5c75688da582b8ffc1f1799e9db273f32133c49e048f614d22ec3256773ccc"
dependencies = [
"adler",
]
2019-01-19 20:42:54 +00:00
[[package]]
name = "mio"
2022-08-03 10:16:27 +00:00
version = "0.8.4"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "57ee1c23c7c63b0c9250c339ffdc69255f110b298b901b9f6c82547b7b87caaf"
2019-01-19 20:42:54 +00:00
dependencies = [
"libc",
"log",
2022-08-03 10:16:27 +00:00
"wasi",
"windows-sys",
2019-01-19 20:42:54 +00:00
]
[[package]]
name = "native-tls"
2022-08-03 10:16:27 +00:00
version = "0.2.10"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "fd7e2f3618557f980e0b17e8856252eee3c97fa12c54dff0ca290fb6266ca4a9"
2019-01-19 20:42:54 +00:00
dependencies = [
"lazy_static",
"libc",
"log",
"openssl",
"openssl-probe",
"openssl-sys",
"schannel",
"security-framework",
"security-framework-sys",
"tempfile",
2019-01-19 20:42:54 +00:00
]
[[package]]
2020-11-09 21:38:29 +00:00
name = "nibble_vec"
version = "0.1.0"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-09 21:38:29 +00:00
checksum = "77a5d83df9f36fe23f0c3648c6bbb8b0298bb5f1939c8f2704431371f4b84d43"
2019-01-19 20:42:54 +00:00
dependencies = [
2020-11-09 21:38:29 +00:00
"smallvec",
2019-01-19 20:42:54 +00:00
]
[[package]]
2022-08-03 10:16:27 +00:00
name = "num_cpus"
version = "1.13.1"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "19e64526ebdee182341572e50e9ad03965aa510cd94427a4549448f285e957a1"
dependencies = [
2022-08-03 10:16:27 +00:00
"hermit-abi",
"libc",
]
2019-01-19 20:42:54 +00:00
[[package]]
2022-08-03 10:16:27 +00:00
name = "num_threads"
version = "0.1.6"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "2819ce041d2ee131036f4fc9d6ae7ae125a3a40e97ba64d04fe799ad9dabbb44"
2019-01-19 20:42:54 +00:00
dependencies = [
"libc",
2019-01-19 20:42:54 +00:00
]
[[package]]
name = "object"
2022-08-03 10:16:27 +00:00
version = "0.29.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "21158b2c33aa6d4561f1c0a6ea283ca92bc54802a93b263e910746d679a7eb53"
dependencies = [
"memchr",
]
[[package]]
name = "once_cell"
2022-08-03 10:16:27 +00:00
version = "1.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "18a6dbe30758c9f83eb00cbea4ac95966305f5a7772f3f42ebfc7fc7eddbd8e1"
2019-01-19 20:42:54 +00:00
[[package]]
name = "openssl"
2022-08-03 10:16:27 +00:00
version = "0.10.41"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "618febf65336490dfcf20b73f885f5651a0c89c64c2d4a8c3662585a70bf5bd0"
2019-01-19 20:42:54 +00:00
dependencies = [
"bitflags",
"cfg-if",
"foreign-types",
"libc",
2021-03-15 22:37:29 +00:00
"once_cell",
2022-08-03 10:16:27 +00:00
"openssl-macros",
"openssl-sys",
2019-01-19 20:42:54 +00:00
]
2022-08-03 10:16:27 +00:00
[[package]]
name = "openssl-macros"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b501e44f11665960c7e7fcf062c7d96a14ade4aa98116c004b2e37b5be7d736c"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
2019-01-19 20:42:54 +00:00
[[package]]
name = "openssl-probe"
2022-08-03 10:16:27 +00:00
version = "0.1.5"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
2019-01-19 20:42:54 +00:00
[[package]]
name = "openssl-sys"
2022-08-03 10:16:27 +00:00
version = "0.9.75"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "e5f9bd0c2710541a3cda73d6f9ac4f1b240de4ae261065d309dbe73d9dceb42f"
2019-01-19 20:42:54 +00:00
dependencies = [
"autocfg",
"cc",
"libc",
"pkg-config",
"vcpkg",
]
2022-01-16 17:01:28 +00:00
[[package]]
name = "os_str_bytes"
2022-08-03 10:16:27 +00:00
version = "6.2.0"
2022-01-16 17:01:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "648001efe5d5c0102d8cea768e348da85d90af8ba91f0bea908f157951493cd4"
2022-01-16 17:01:28 +00:00
[[package]]
name = "parking"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "427c3892f9e783d91cc128285287e70a59e206ca452770ece88a76f7a3eddd72"
2020-06-19 17:04:04 +00:00
[[package]]
name = "parking_lot"
2022-08-03 10:16:27 +00:00
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
dependencies = [
"lock_api",
"parking_lot_core",
]
[[package]]
name = "parking_lot_core"
2022-08-03 10:16:27 +00:00
version = "0.9.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "09a279cbf25cb0757810394fbc1e359949b59e348145c643a939a525692e6929"
dependencies = [
"cfg-if",
"libc",
"redox_syscall",
"smallvec",
"windows-sys",
]
2019-01-19 20:42:54 +00:00
[[package]]
name = "percent-encoding"
2019-08-11 06:06:42 +00:00
version = "2.1.0"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e"
2019-01-19 20:42:54 +00:00
[[package]]
name = "pin-project-lite"
2022-08-03 10:16:27 +00:00
version = "0.2.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116"
[[package]]
name = "pin-utils"
2020-04-27 16:37:34 +00:00
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
[[package]]
name = "pkg-config"
2022-08-03 10:16:27 +00:00
version = "0.3.25"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "1df8c4ec4b0627e53bdf214615ad287367e482558cf84b109250b37464dc03ae"
2019-01-19 20:42:54 +00:00
[[package]]
name = "polling"
2022-08-03 10:16:27 +00:00
version = "2.2.0"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "685404d509889fade3e86fe3a5803bca2ec09b0c0778d5ada6ec8bf7a8de5259"
dependencies = [
"cfg-if",
"libc",
2020-09-16 18:16:48 +00:00
"log",
"wepoll-ffi",
2020-11-09 21:38:29 +00:00
"winapi",
]
2019-01-19 20:42:54 +00:00
[[package]]
name = "ppv-lite86"
2022-08-03 10:16:27 +00:00
version = "0.2.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "eb9f9e6e233e5c4a35559a617bf40a4ec447db2e84c20b55a6f83167b7e57872"
2020-09-17 19:33:11 +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",
]
2019-09-06 14:00:02 +00:00
[[package]]
name = "proc-macro2"
2022-08-03 10:16:27 +00:00
version = "1.0.43"
2019-09-06 14:00:02 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "0a2ca2c61bc9f3d74d2886294ab7b9853abd9c1ad903a3ac7815c58989bb7bab"
2019-09-06 14:00:02 +00:00
dependencies = [
2022-08-03 10:16:27 +00:00
"unicode-ident",
2019-09-06 14:00:02 +00:00
]
2019-01-19 20:42:54 +00:00
[[package]]
name = "quick-error"
version = "1.2.3"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
2019-01-19 20:42:54 +00:00
2022-03-28 17:51:47 +00:00
[[package]]
name = "quinn"
2022-08-03 10:16:27 +00:00
version = "0.8.3"
2022-03-28 17:51:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "d7542006acd6e057ff632307d219954c44048f818898da03113d6c0086bfddd9"
2022-03-28 17:51:47 +00:00
dependencies = [
"bytes",
"futures-channel",
"futures-util",
"fxhash",
"quinn-proto",
"quinn-udp",
"rustls",
"thiserror",
"tokio",
"tracing",
2022-08-03 10:16:27 +00:00
"webpki",
2022-03-28 17:51:47 +00:00
]
[[package]]
name = "quinn-proto"
2022-08-03 10:16:27 +00:00
version = "0.8.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "3a13a5c0a674c1ce7150c9df7bc4a1e46c2fbbe7c710f56c0dc78b1a810e779e"
dependencies = [
"bytes",
"fxhash",
"rand",
"ring",
"rustls",
2022-03-28 17:51:47 +00:00
"rustls-native-certs",
"rustls-pemfile 0.2.1",
"slab",
"thiserror",
"tinyvec",
"tracing",
2022-08-03 10:16:27 +00:00
"webpki",
]
2022-03-28 17:51:47 +00:00
[[package]]
name = "quinn-udp"
2022-08-03 10:16:27 +00:00
version = "0.1.3"
2022-03-28 17:51:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "9f832d8958db3e84d2ec93b5eb2272b45aa23cf7f8fe6e79f578896f4e6c231b"
2022-03-28 17:51:47 +00:00
dependencies = [
"futures-util",
"libc",
"quinn-proto",
"socket2",
"tokio",
"tracing",
]
2019-09-06 14:00:02 +00:00
[[package]]
name = "quote"
2022-08-03 10:16:27 +00:00
version = "1.0.21"
2019-09-06 14:00:02 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "bbe448f377a7d6961e30f5955f9b8d106c3f5e449d493ee1b125c1d43c2b5179"
2019-09-06 14:00:02 +00:00
dependencies = [
"proc-macro2",
2019-09-06 14:00:02 +00:00
]
2019-01-19 20:42:54 +00:00
[[package]]
name = "radix_trie"
2020-10-24 20:35:22 +00:00
version = "0.2.1"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-24 20:35:22 +00:00
checksum = "c069c179fcdc6a2fe24d8d18305cf085fdbd4f922c041943e203685d6a1c58fd"
2019-01-19 20:42:54 +00:00
dependencies = [
"endian-type",
"nibble_vec",
2019-01-19 20:42:54 +00:00
]
[[package]]
name = "rand"
2022-08-03 10:16:27 +00:00
version = "0.8.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
dependencies = [
"libc",
2021-02-18 10:09:36 +00:00
"rand_chacha",
"rand_core",
]
[[package]]
name = "rand_chacha"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
dependencies = [
"ppv-lite86",
2021-02-18 10:09:36 +00:00
"rand_core",
]
[[package]]
name = "rand_core"
version = "0.6.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d34f1408f55294453790c48b2f1ebbb1c5b4b7563eb1f418bcfcfdbb06ebb4e7"
dependencies = [
2021-02-18 10:09:36 +00:00
"getrandom",
]
2019-01-19 20:42:54 +00:00
[[package]]
name = "redox_syscall"
2022-08-03 10:16:27 +00:00
version = "0.2.16"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
2021-02-18 10:09:36 +00:00
dependencies = [
"bitflags",
]
2019-01-19 20:42:54 +00:00
[[package]]
name = "regex"
2022-08-03 10:16:27 +00:00
version = "1.6.0"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "4c4eb3267174b8c6c2f654116623910a0fef09c4753f8dd83db29c48a0df988b"
2019-01-19 20:42:54 +00:00
dependencies = [
"aho-corasick",
"memchr",
"regex-syntax",
2019-01-19 20:42:54 +00:00
]
[[package]]
name = "regex-automata"
version = "0.1.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
dependencies = [
"regex-syntax",
]
2019-01-19 20:42:54 +00:00
[[package]]
name = "regex-syntax"
2022-08-03 10:16:27 +00:00
version = "0.6.27"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "a3f87b73ce11b1619a3c6332f45341e0047173771e8b8b73f87bfeefb7b56244"
2019-01-19 20:42:54 +00:00
[[package]]
name = "remove_dir_all"
version = "0.5.3"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7"
2019-01-19 20:42:54 +00:00
dependencies = [
2020-11-09 21:38:29 +00:00
"winapi",
2019-01-19 20:42:54 +00:00
]
[[package]]
name = "resolv-conf"
2020-11-13 06:11:37 +00:00
version = "0.7.0"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-13 06:11:37 +00:00
checksum = "52e44394d2086d010551b14b53b1f24e31647570cd1deb0379e2c21b329aba00"
2019-01-19 20:42:54 +00:00
dependencies = [
"hostname",
"quick-error",
2019-01-19 20:42:54 +00:00
]
[[package]]
name = "ring"
2021-02-18 10:09:36 +00:00
version = "0.16.20"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-18 10:09:36 +00:00
checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc"
2019-01-19 20:42:54 +00:00
dependencies = [
"cc",
"libc",
"once_cell",
"spin",
"untrusted",
"web-sys",
2020-11-09 21:38:29 +00:00
"winapi",
2019-01-19 20:42:54 +00:00
]
[[package]]
name = "rusqlite"
version = "0.28.0"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "01e213bc3ecb39ac32e81e51ebe31fd888a940515173e3a18a35f8c6e896422a"
2019-01-19 20:42:54 +00:00
dependencies = [
"bitflags",
"fallible-iterator",
"fallible-streaming-iterator",
2020-10-24 20:35:22 +00:00
"hashlink",
"libsqlite3-sys",
"smallvec",
2021-10-24 15:50:40 +00:00
"time",
2019-01-19 20:42:54 +00:00
]
[[package]]
name = "rustc-demangle"
2022-08-03 10:16:27 +00:00
version = "0.1.21"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "7ef03e0a2b150c7a90d01faf6254c9c48a41e95fb2a8c2ac1c6f0d2b9aefc342"
2019-01-19 20:42:54 +00:00
[[package]]
name = "rustls"
2022-08-03 10:16:27 +00:00
version = "0.20.6"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "5aab8ee6c7097ed6057f43c187a62418d0c05a4bd5f18b3571db50ee0f9ce033"
2019-01-19 20:42:54 +00:00
dependencies = [
"log",
"ring",
"sct",
2022-08-03 10:16:27 +00:00
"webpki",
2021-10-25 14:16:21 +00:00
]
2022-03-28 17:51:47 +00:00
[[package]]
name = "rustls-native-certs"
2022-08-03 10:16:27 +00:00
version = "0.6.2"
2022-03-28 17:51:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "0167bac7a9f490495f3c33013e7722b53cb087ecbe082fb0c6387c96f634ea50"
2022-03-28 17:51:47 +00:00
dependencies = [
"openssl-probe",
2022-08-03 10:16:27 +00:00
"rustls-pemfile 1.0.1",
2022-03-28 17:51:47 +00:00
"schannel",
"security-framework",
]
[[package]]
name = "rustls-pemfile"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5eebeaeb360c87bfb72e84abdb3447159c0eaececf1bef2aecd65a8be949d1c9"
dependencies = [
"base64",
]
2021-10-25 14:16:21 +00:00
[[package]]
name = "rustls-pemfile"
2022-08-03 10:16:27 +00:00
version = "1.0.1"
2021-10-25 14:16:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "0864aeff53f8c05aa08d86e5ef839d3dfcf07aeba2db32f12db0ef716e87bd55"
2021-10-25 14:16:21 +00:00
dependencies = [
"base64",
2019-01-19 20:42:54 +00:00
]
[[package]]
name = "schannel"
2022-08-03 10:16:27 +00:00
version = "0.1.20"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "88d6731146462ea25d9244b2ed5fd1d716d25c52e4d54aa4fb0f3c4e9854dbe2"
2019-01-19 20:42:54 +00:00
dependencies = [
"lazy_static",
2022-08-03 10:16:27 +00:00
"windows-sys",
2019-01-19 20:42:54 +00:00
]
[[package]]
name = "scopeguard"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
2019-01-19 20:42:54 +00:00
[[package]]
name = "sct"
2021-10-25 14:16:21 +00:00
version = "0.7.0"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-25 14:16:21 +00:00
checksum = "d53dcdb7c9f8158937a7981b48accfd39a43af418591a5d008c7b22b5e1b7ca4"
2019-01-19 20:42:54 +00:00
dependencies = [
"ring",
"untrusted",
2019-01-19 20:42:54 +00:00
]
[[package]]
name = "security-framework"
2022-08-03 10:16:27 +00:00
version = "2.6.1"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "2dc14f172faf8a0194a3aded622712b0de276821addc574fa54fc0a1167e10dc"
2019-01-19 20:42:54 +00:00
dependencies = [
"bitflags",
"core-foundation",
"core-foundation-sys",
"libc",
"security-framework-sys",
2019-01-19 20:42:54 +00:00
]
[[package]]
name = "security-framework-sys"
2022-08-03 10:16:27 +00:00
version = "2.6.1"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "0160a13a177a45bfb43ce71c01580998474f556ad854dcbca936dd2841a5c556"
2019-01-19 20:42:54 +00:00
dependencies = [
"core-foundation-sys",
"libc",
2019-01-19 20:42:54 +00:00
]
[[package]]
name = "serde"
2022-08-03 10:16:27 +00:00
version = "1.0.141"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "7af873f2c95b99fcb0bd0fe622a43e29514658873c8ceba88c4cb88833a22500"
dependencies = [
"serde_derive",
]
2019-01-19 20:42:54 +00:00
[[package]]
name = "serde_derive"
2022-08-03 10:16:27 +00:00
version = "1.0.141"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "75743a150d003dd863b51dc809bcad0d73f2102c53632f1e954e738192a3413f"
2019-01-19 20:42:54 +00:00
dependencies = [
"proc-macro2",
"quote",
"syn",
2019-01-19 20:42:54 +00:00
]
[[package]]
name = "sharded-slab"
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "900fba806f70c630b0a382d0d825e17a0f19fcd059a2ade1ff237bcddf446b31"
dependencies = [
"lazy_static",
]
[[package]]
name = "signal-hook"
2022-08-03 10:16:27 +00:00
version = "0.3.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "a253b5e89e2698464fc26b545c9edceb338e18a89effeeecfea192c3025be29d"
dependencies = [
"libc",
"signal-hook-registry",
]
[[package]]
name = "signal-hook-registry"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e51e73328dc4ac0c7ccbda3a494dfa03df1de2f46018127f60c693f2648455b0"
dependencies = [
"libc",
]
2019-01-19 20:42:54 +00:00
[[package]]
name = "slab"
2022-08-03 10:16:27 +00:00
version = "0.4.7"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "4614a76b2a8be0058caa9dbbaf66d988527d86d003c11a94fbd335d7661edcef"
dependencies = [
"autocfg",
]
2019-01-19 20:42:54 +00:00
[[package]]
name = "smallvec"
2022-08-03 10:16:27 +00:00
version = "1.9.0"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "2fd0db749597d91ff862fd1d55ea87f7855a744a8425a64695b6fca237d1dad1"
2021-03-21 20:29:31 +00:00
[[package]]
name = "socket2"
2022-08-03 10:16:27 +00:00
version = "0.4.4"
2021-03-21 20:29:31 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "66d72b759436ae32898a2af0a14218dbf55efde3feeb170eb623637db85ee1e0"
2021-03-21 20:29:31 +00:00
dependencies = [
"libc",
"winapi",
]
[[package]]
name = "spin"
2019-09-06 14:00:02 +00:00
version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"
2022-04-08 00:12:23 +00:00
[[package]]
name = "strsim"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
2019-09-06 14:00:02 +00:00
[[package]]
name = "syn"
2022-08-03 10:16:27 +00:00
version = "1.0.99"
2019-09-06 14:00:02 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "58dbef6ec655055e20b86b15a8cc6d439cca19b667537ac6a1369572d151ab13"
2019-09-06 14:00:02 +00:00
dependencies = [
"proc-macro2",
"quote",
2022-08-03 10:16:27 +00:00
"unicode-ident",
2019-09-06 14:00:02 +00:00
]
2019-01-19 20:42:54 +00:00
[[package]]
name = "tempfile"
2022-08-03 10:16:27 +00:00
version = "3.3.0"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4"
2019-01-19 20:42:54 +00:00
dependencies = [
"cfg-if",
2022-08-03 10:16:27 +00:00
"fastrand",
"libc",
"redox_syscall",
"remove_dir_all",
2020-11-09 21:38:29 +00:00
"winapi",
2019-01-19 20:42:54 +00:00
]
[[package]]
name = "termcolor"
version = "1.1.3"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bab24d30b911b2376f3a13cc2cd443142f0c81dda04c118693e35b3835757755"
2019-01-19 20:42:54 +00:00
dependencies = [
"winapi-util",
2019-01-19 20:42:54 +00:00
]
2020-09-17 19:33:11 +00:00
[[package]]
name = "terminal_size"
version = "0.1.17"
2020-09-17 19:33:11 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "633c1a546cee861a1a6d0dc69ebeca693bf4296661ba7852b9d21d159e0506df"
2020-09-17 19:33:11 +00:00
dependencies = [
"libc",
2020-11-09 21:38:29 +00:00
"winapi",
2020-09-17 19:33:11 +00:00
]
2022-01-16 17:01:28 +00:00
[[package]]
name = "textwrap"
2022-08-03 10:16:27 +00:00
version = "0.15.0"
2022-01-16 17:01:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "b1141d4d61095b28419e22cb0bbf02755f5e54e0526f97f1e3d1d160e60885fb"
2022-01-16 17:01:28 +00:00
2020-01-12 03:28:02 +00:00
[[package]]
name = "thiserror"
2022-08-03 10:16:27 +00:00
version = "1.0.32"
2020-01-12 03:28:02 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "f5f6586b7f764adc0231f4c79be7b920e766bb2f3e51b3661cdb263828f19994"
2020-01-12 03:28:02 +00:00
dependencies = [
"thiserror-impl",
2020-01-12 03:28:02 +00:00
]
[[package]]
name = "thiserror-impl"
2022-08-03 10:16:27 +00:00
version = "1.0.32"
2020-01-12 03:28:02 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "12bafc5b54507e0149cdf1b145a5d80ab80a90bcd9275df43d4fff68460f6c21"
2020-01-12 03:28:02 +00:00
dependencies = [
"proc-macro2",
"quote",
"syn",
2020-01-12 03:28:02 +00:00
]
[[package]]
name = "thread_local"
version = "1.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5516c27b78311c50bf42c071425c560ac799b11c30b31f87e3081965fe5e0180"
dependencies = [
"once_cell",
]
2019-01-19 20:42:54 +00:00
[[package]]
name = "time"
2022-08-03 10:16:27 +00:00
version = "0.3.12"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "74b7cc93fc23ba97fde84f7eea56c55d1ba183f495c6715defdfc7b9cb8c870f"
2019-01-19 20:42:54 +00:00
dependencies = [
2022-05-03 01:39:53 +00:00
"itoa",
2022-08-03 10:16:27 +00:00
"js-sys",
"libc",
2022-08-03 10:16:27 +00:00
"num_threads",
2021-10-24 15:50:40 +00:00
"time-macros",
2019-01-19 20:42:54 +00:00
]
2021-10-24 15:50:40 +00:00
[[package]]
name = "time-macros"
2022-08-03 10:16:27 +00:00
version = "0.2.4"
2021-10-24 15:50:40 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "42657b1a6f4d817cda8e7a0ace261fe0cc946cf3a80314390b22cc61ae080792"
2021-10-24 15:50:40 +00:00
[[package]]
name = "tinyvec"
2022-08-03 10:16:27 +00:00
version = "1.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
2020-12-25 02:49:11 +00:00
dependencies = [
"tinyvec_macros",
]
[[package]]
name = "tinyvec_macros"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
2020-11-09 21:38:29 +00:00
[[package]]
name = "tokio"
2022-08-03 10:16:27 +00:00
version = "1.20.1"
2020-11-09 21:38:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "7a8325f63a7d4774dd041e363b2409ed1c5cbbd0f867795e661df066b2b0a581"
2020-11-09 21:38:29 +00:00
dependencies = [
"autocfg",
2021-02-18 10:09:36 +00:00
"bytes",
2020-11-09 21:38:29 +00:00
"libc",
"memchr",
"mio",
"num_cpus",
2022-08-03 10:16:27 +00:00
"once_cell",
2020-12-25 02:49:11 +00:00
"pin-project-lite",
2022-08-03 10:16:27 +00:00
"socket2",
2020-09-17 19:33:11 +00:00
"tokio-macros",
"winapi",
2020-09-17 19:33:11 +00:00
]
[[package]]
name = "tokio-macros"
2022-08-03 10:16:27 +00:00
version = "1.8.0"
2020-09-17 19:33:11 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "9724f9a975fb987ef7a3cd9be0350edcbe130698af5b8f7a631e23d42d052484"
2020-09-17 19:33:11 +00:00
dependencies = [
"proc-macro2",
"quote",
"syn",
2019-01-19 20:42:54 +00:00
]
[[package]]
name = "tokio-native-tls"
2020-12-25 02:49:11 +00:00
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-25 02:49:11 +00:00
checksum = "f7d995660bd2b7f8c1568414c1126076c13fbb725c40112dc0120b78eb9b717b"
dependencies = [
"native-tls",
2020-11-10 19:24:15 +00:00
"tokio",
]
2020-11-10 17:22:58 +00:00
[[package]]
name = "tokio-openssl"
2022-08-03 10:16:27 +00:00
version = "0.6.3"
2020-11-10 17:22:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "c08f9ffb7809f1b20c1b398d92acf4cc719874b3b2b2d9ea2f09b4a80350878a"
2020-11-10 17:22:58 +00:00
dependencies = [
2022-08-03 10:16:27 +00:00
"futures-util",
2020-11-10 17:22:58 +00:00
"openssl",
"openssl-sys",
2020-11-10 19:24:15 +00:00
"tokio",
2019-09-29 15:48:13 +00:00
]
2020-11-10 00:52:27 +00:00
[[package]]
name = "tokio-rustls"
2022-08-03 10:16:27 +00:00
version = "0.23.4"
2020-11-10 00:52:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "c43ee83903113e03984cb9e5cebe6c04a5116269e900e3ddba8f068a62adda59"
2020-11-10 00:52:27 +00:00
dependencies = [
"rustls",
2020-11-10 19:24:15 +00:00
"tokio",
2022-08-03 10:16:27 +00:00
"webpki",
2020-11-10 00:52:27 +00:00
]
[[package]]
name = "tokio-util"
2022-08-03 10:16:27 +00:00
version = "0.7.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "cc463cd8deddc3770d20f9852143d50bf6094e640b485cb2e189a2099085ff45"
dependencies = [
2021-02-18 10:09:36 +00:00
"bytes",
"futures-core",
"futures-sink",
2020-12-25 02:49:11 +00:00
"pin-project-lite",
2020-11-10 19:24:15 +00:00
"tokio",
2022-08-03 10:16:27 +00:00
"tracing",
]
2019-01-19 20:42:54 +00:00
[[package]]
name = "toml"
2022-08-03 10:16:27 +00:00
version = "0.5.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "8d82e1a7758622a465f8cee077614c73484dac5b836c02ff6a40d5d1010324d7"
dependencies = [
"serde",
]
[[package]]
name = "tracing"
2022-08-03 10:16:27 +00:00
version = "0.1.36"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "2fce9567bd60a67d08a16488756721ba392f24f29006402881e43b19aac64307"
dependencies = [
"cfg-if",
2020-12-25 02:49:11 +00:00
"pin-project-lite",
"tracing-attributes",
"tracing-core",
]
[[package]]
name = "tracing-attributes"
2022-08-03 10:16:27 +00:00
version = "0.1.22"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "11c75893af559bc8e10716548bdef5cb2b983f8e637db9d0e15126b61b484ee2"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "tracing-core"
2022-08-03 10:16:27 +00:00
version = "0.1.29"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "5aeea4303076558a00714b823f9ad67d58a3bbda1df83d8827d21193156e22f7"
dependencies = [
2022-08-03 10:16:27 +00:00
"once_cell",
2022-05-03 01:39:53 +00:00
"valuable",
]
[[package]]
name = "tracing-log"
2022-05-03 01:39:53 +00:00
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-03 01:39:53 +00:00
checksum = "78ddad33d2d10b1ed7eb9d1f518a5674713876e97e5bb9b7345a7984fbb4f922"
dependencies = [
"lazy_static",
"log",
"tracing-core",
]
[[package]]
name = "tracing-subscriber"
2022-08-03 10:16:27 +00:00
version = "0.3.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "60db860322da191b40952ad9affe65ea23e7dd6a5c442c2c42865810c6ab8e6b"
dependencies = [
"ansi_term",
"matchers",
2022-08-03 10:16:27 +00:00
"once_cell",
"regex",
"sharded-slab",
"smallvec",
"thread_local",
"tracing",
"tracing-core",
"tracing-log",
]
2019-10-25 05:54:52 +00:00
[[package]]
name = "trust-dns"
2022-03-30 16:07:39 +00:00
version = "0.21.2"
dependencies = [
2022-02-25 15:35:50 +00:00
"clap",
"futures",
"native-tls",
"regex",
"rustls",
2021-10-24 15:50:40 +00:00
"time",
2020-11-10 19:24:15 +00:00
"tokio",
"tracing",
"tracing-subscriber",
"trust-dns-client",
"trust-dns-proto",
"trust-dns-resolver",
"trust-dns-server",
2022-08-03 10:16:27 +00:00
"webpki-roots",
2019-10-25 05:54:52 +00:00
]
2019-01-19 20:42:54 +00:00
[[package]]
name = "trust-dns-client"
2022-03-30 16:07:39 +00:00
version = "0.21.2"
dependencies = [
"cfg-if",
"data-encoding",
"futures",
"futures-channel",
"futures-util",
"lazy_static",
"openssl",
"radix_trie",
2021-02-18 10:09:36 +00:00
"rand",
"ring",
"rustls",
"serde",
"thiserror",
2021-10-24 15:50:40 +00:00
"time",
2020-11-10 19:24:15 +00:00
"tokio",
"tracing",
"tracing-subscriber",
"trust-dns-proto",
2022-08-03 10:16:27 +00:00
"webpki",
2019-01-19 20:42:54 +00:00
]
[[package]]
name = "trust-dns-compatibility"
2022-03-30 16:07:39 +00:00
version = "0.21.2"
2019-01-19 20:42:54 +00:00
dependencies = [
"data-encoding",
"futures",
"openssl",
2021-02-18 10:09:36 +00:00
"rand",
2021-10-24 15:50:40 +00:00
"time",
"trust-dns-client",
2019-01-19 20:42:54 +00:00
]
[[package]]
name = "trust-dns-integration"
2022-03-30 16:07:39 +00:00
version = "0.21.2"
dependencies = [
"async-trait",
"futures",
"lazy_static",
"openssl",
2021-02-18 10:09:36 +00:00
"rand",
"rusqlite",
"rustls",
2021-10-24 15:50:40 +00:00
"time",
2020-11-10 19:24:15 +00:00
"tokio",
"tracing",
"tracing-subscriber",
"trust-dns-client",
"trust-dns-proto",
"trust-dns-resolver",
"trust-dns-server",
2022-08-03 10:16:27 +00:00
"webpki-roots",
2019-01-19 20:42:54 +00:00
]
[[package]]
name = "trust-dns-proto"
2022-03-30 16:07:39 +00:00
version = "0.21.2"
dependencies = [
"async-trait",
"backtrace",
2021-04-14 15:33:33 +00:00
"bytes",
"cfg-if",
"data-encoding",
"enum-as-inner",
2020-05-18 03:20:33 +00:00
"futures-channel",
"futures-executor",
"futures-io",
"futures-util",
2021-04-14 15:33:33 +00:00
"h2",
"http",
"idna",
"ipnet",
"js-sys",
"lazy_static",
2021-04-19 20:25:21 +00:00
"native-tls",
"openssl",
2022-03-28 17:51:47 +00:00
"quinn",
2021-02-18 10:09:36 +00:00
"rand",
"ring",
2021-04-12 00:54:57 +00:00
"rustls",
2022-08-03 10:16:27 +00:00
"rustls-pemfile 1.0.1",
"serde",
"smallvec",
"socket2",
"thiserror",
"tinyvec",
2020-11-10 19:24:15 +00:00
"tokio",
2021-04-19 20:25:21 +00:00
"tokio-native-tls",
2021-04-25 02:34:32 +00:00
"tokio-openssl",
2021-04-12 00:54:57 +00:00
"tokio-rustls",
"tracing",
"tracing-subscriber",
"url",
"wasm-bindgen",
2022-08-03 10:16:27 +00:00
"webpki",
"webpki-roots",
2019-01-19 20:42:54 +00:00
]
2022-02-13 18:02:17 +00:00
[[package]]
name = "trust-dns-recursor"
version = "0.21.1"
dependencies = [
"async-trait",
"backtrace",
"bytes",
"cfg-if",
"enum-as-inner",
"futures-executor",
"futures-util",
"h2",
"http",
"openssl",
"rusqlite",
"rustls",
"serde",
"thiserror",
"time",
"tokio",
"tokio-openssl",
"tokio-rustls",
"toml",
"tracing",
"tracing-subscriber",
"trust-dns-proto",
"trust-dns-resolver",
]
2019-01-19 20:42:54 +00:00
[[package]]
name = "trust-dns-resolver"
2022-03-30 16:07:39 +00:00
version = "0.21.2"
dependencies = [
"cfg-if",
"futures-executor",
"futures-util",
"ipconfig",
"lazy_static",
"lru-cache",
"parking_lot",
"resolv-conf",
"rustls",
"serde",
"smallvec",
"thiserror",
2020-11-10 19:24:15 +00:00
"tokio",
"tokio-native-tls",
2020-11-10 19:24:15 +00:00
"tokio-openssl",
"tokio-rustls",
"tracing",
"tracing-subscriber",
"trust-dns-proto",
2022-08-03 10:16:27 +00:00
"webpki-roots",
2019-01-19 20:42:54 +00:00
]
[[package]]
name = "trust-dns-server"
2022-03-30 16:07:39 +00:00
version = "0.21.2"
dependencies = [
"async-trait",
2021-02-18 10:09:36 +00:00
"bytes",
"cfg-if",
"enum-as-inner",
"futures-executor",
"futures-util",
2020-11-10 19:24:15 +00:00
"h2",
"http",
"openssl",
"rusqlite",
"rustls",
"serde",
"thiserror",
2021-10-24 15:50:40 +00:00
"time",
2020-11-10 19:24:15 +00:00
"tokio",
"tokio-openssl",
"tokio-rustls",
"toml",
"tracing",
"tracing-subscriber",
"trust-dns-client",
"trust-dns-proto",
"trust-dns-resolver",
2019-01-19 20:42:54 +00:00
]
2019-10-27 01:24:15 +00:00
[[package]]
name = "trust-dns-util"
2022-03-30 16:07:39 +00:00
version = "0.21.2"
2019-10-27 01:24:15 +00:00
dependencies = [
2022-02-25 15:35:50 +00:00
"clap",
2020-09-17 19:33:11 +00:00
"console",
"data-encoding",
"openssl",
2022-03-19 17:33:58 +00:00
"rustls",
2020-11-10 19:24:15 +00:00
"tokio",
"tracing",
"tracing-subscriber",
"trust-dns-client",
"trust-dns-proto",
2022-02-24 19:50:38 +00:00
"trust-dns-recursor",
"trust-dns-resolver",
2022-08-03 10:16:27 +00:00
"webpki",
"webpki-roots",
2019-10-27 01:24:15 +00:00
]
2019-01-19 20:42:54 +00:00
[[package]]
name = "unicode-bidi"
2022-08-03 10:16:27 +00:00
version = "0.3.8"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "099b7128301d285f79ddd55b9a83d5e6b9e97c92e0ea0daebee7263e932de992"
[[package]]
name = "unicode-ident"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "15c61ba63f9235225a22310255a29b806b907c9b8c964bcbd0a2c70f3f2deea7"
2019-01-19 20:42:54 +00:00
[[package]]
name = "unicode-normalization"
2022-08-03 10:16:27 +00:00
version = "0.1.21"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "854cbdc4f7bc6ae19c820d44abdc3277ac3e1b2b93db20a636825d9322fb60e6"
dependencies = [
"tinyvec",
]
2019-01-19 20:42:54 +00:00
[[package]]
name = "unicode-width"
2022-08-03 10:16:27 +00:00
version = "0.1.9"
2019-09-06 14:00:02 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "3ed742d4ea2bd1176e236172c8429aaf54486e7ac098db29ffe6529e0ce50973"
2019-09-06 14:00:02 +00:00
2019-01-19 20:42:54 +00:00
[[package]]
name = "untrusted"
version = "0.7.1"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
2019-01-19 20:42:54 +00:00
[[package]]
name = "url"
version = "2.2.2"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a507c383b2d33b5fc35d1861e77e6b383d158b2da5e14fe51b83dfedf6fd578c"
2019-01-19 20:42:54 +00:00
dependencies = [
2020-11-10 00:52:27 +00:00
"form_urlencoded",
"idna",
"matches",
"percent-encoding",
"serde",
2019-01-19 20:42:54 +00:00
]
2022-05-03 01:39:53 +00:00
[[package]]
name = "valuable"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d"
2021-02-18 10:09:36 +00:00
[[package]]
name = "value-bag"
2022-08-03 10:16:27 +00:00
version = "1.0.0-alpha.9"
2021-02-18 10:09:36 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "2209b78d1249f7e6f3293657c9779fe31ced465df091bbd433a1cf88e916ec55"
2021-02-18 10:09:36 +00:00
dependencies = [
"ctor",
"version_check",
2021-02-18 10:09:36 +00:00
]
2019-01-19 20:42:54 +00:00
[[package]]
name = "vcpkg"
version = "0.2.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
2019-01-19 20:42:54 +00:00
2020-09-17 19:33:11 +00:00
[[package]]
name = "version_check"
2022-08-03 10:16:27 +00:00
version = "0.9.4"
2020-09-17 19:33:11 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
2020-09-17 19:33:11 +00:00
2020-06-19 17:04:04 +00:00
[[package]]
name = "waker-fn"
2020-09-16 18:16:48 +00:00
version = "1.1.0"
2020-06-19 17:04:04 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-16 18:16:48 +00:00
checksum = "9d5b2c62b4012a3e1eca5a7e077d13b3bf498c4073e33ccd58626607748ceeca"
2020-06-19 17:04:04 +00:00
2019-09-06 14:00:02 +00:00
[[package]]
name = "wasi"
2022-08-03 10:16:27 +00:00
version = "0.11.0+wasi-snapshot-preview1"
2019-09-06 14:00:02 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
2020-09-16 18:16:48 +00:00
[[package]]
name = "wasm-bindgen"
2022-08-03 10:16:27 +00:00
version = "0.2.82"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "fc7652e3f6c4706c8d9cd54832c4a4ccb9b5336e2c3bd154d5cccfbf1c1f5f7d"
dependencies = [
"cfg-if",
"wasm-bindgen-macro",
]
[[package]]
name = "wasm-bindgen-backend"
2022-08-03 10:16:27 +00:00
version = "0.2.82"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "662cd44805586bd52971b9586b1df85cdbbd9112e4ef4d8f41559c334dc6ac3f"
dependencies = [
"bumpalo",
"log",
2022-08-03 10:16:27 +00:00
"once_cell",
"proc-macro2",
"quote",
"syn",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-futures"
2022-08-03 10:16:27 +00:00
version = "0.4.32"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "fa76fb221a1f8acddf5b54ace85912606980ad661ac7a503b4570ffd3a624dad"
dependencies = [
"cfg-if",
"js-sys",
"wasm-bindgen",
"web-sys",
]
[[package]]
name = "wasm-bindgen-macro"
2022-08-03 10:16:27 +00:00
version = "0.2.82"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "b260f13d3012071dfb1512849c033b1925038373aea48ced3012c09df952c602"
dependencies = [
"quote",
"wasm-bindgen-macro-support",
]
[[package]]
name = "wasm-bindgen-macro-support"
2022-08-03 10:16:27 +00:00
version = "0.2.82"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "5be8e654bdd9b79216c2929ab90721aa82faf65c48cdf08bdc4e7f51357b80da"
dependencies = [
"proc-macro2",
"quote",
"syn",
"wasm-bindgen-backend",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-shared"
2022-08-03 10:16:27 +00:00
version = "0.2.82"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "6598dd0bd3c7d51095ff6531a5b23e02acdc81804e30d8f07afb77b7215a140a"
[[package]]
name = "web-sys"
2022-08-03 10:16:27 +00:00
version = "0.3.59"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "ed055ab27f941423197eb86b2035720b1a3ce40504df082cac2ecc6ed73335a1"
dependencies = [
"js-sys",
"wasm-bindgen",
]
2021-10-25 14:16:21 +00:00
[[package]]
name = "webpki"
version = "0.22.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f095d78192e208183081cc07bc5515ef55216397af48b873e5edcd72637fa1bd"
dependencies = [
"ring",
"untrusted",
]
2019-01-19 20:42:54 +00:00
[[package]]
name = "webpki-roots"
2022-08-03 10:16:27 +00:00
version = "0.22.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "f1c760f0d366a6c24a02ed7816e23e691f5d92291f94d15e836006fd11b04daf"
dependencies = [
2022-08-03 10:16:27 +00:00
"webpki",
]
[[package]]
name = "wepoll-ffi"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d743fdedc5c64377b5fc2bc036b01c7fd642205a0d96356034ae3404d49eb7fb"
dependencies = [
"cc",
]
2019-01-19 20:42:54 +00:00
[[package]]
name = "widestring"
version = "0.5.1"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "17882f045410753661207383517a6f62ec3dbeb6a4ed2acce01f0728238d1983"
2019-01-19 20:42:54 +00:00
[[package]]
name = "winapi"
version = "0.3.9"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
2019-01-19 20:42:54 +00:00
dependencies = [
"winapi-i686-pc-windows-gnu",
"winapi-x86_64-pc-windows-gnu",
2019-01-19 20:42:54 +00:00
]
[[package]]
name = "winapi-i686-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
2019-01-19 20:42:54 +00:00
[[package]]
name = "winapi-util"
2020-04-27 16:37:34 +00:00
version = "0.1.5"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
2019-01-19 20:42:54 +00:00
dependencies = [
2020-11-09 21:38:29 +00:00
"winapi",
2019-01-19 20:42:54 +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"
2019-01-19 20:42:54 +00:00
[[package]]
name = "windows-sys"
2022-08-03 10:16:27 +00:00
version = "0.36.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "ea04155a16a59f9eab786fe12a4a450e75cdb175f9e0d80da1e17db09f55b8d2"
dependencies = [
"windows_aarch64_msvc",
"windows_i686_gnu",
"windows_i686_msvc",
"windows_x86_64_gnu",
"windows_x86_64_msvc",
]
[[package]]
name = "windows_aarch64_msvc"
2022-08-03 10:16:27 +00:00
version = "0.36.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "9bb8c3fd39ade2d67e9874ac4f3db21f0d710bee00fe7cab16949ec184eeaa47"
[[package]]
name = "windows_i686_gnu"
2022-08-03 10:16:27 +00:00
version = "0.36.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "180e6ccf01daf4c426b846dfc66db1fc518f074baa793aa7d9b9aaeffad6a3b6"
[[package]]
name = "windows_i686_msvc"
2022-08-03 10:16:27 +00:00
version = "0.36.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "e2e7917148b2812d1eeafaeb22a97e4813dfa60a3f8f78ebe204bcc88f12f024"
[[package]]
name = "windows_x86_64_gnu"
2022-08-03 10:16:27 +00:00
version = "0.36.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "4dcd171b8776c41b97521e5da127a2d86ad280114807d0b2ab1e462bc764d9e1"
[[package]]
name = "windows_x86_64_msvc"
2022-08-03 10:16:27 +00:00
version = "0.36.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-03 10:16:27 +00:00
checksum = "c811ca4a8c853ef420abd8592ba53ddbbac90410fab6903b3e79972a631f7680"
2019-01-19 20:42:54 +00:00
[[package]]
name = "winreg"
version = "0.7.0"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0120db82e8a1e0b9fb3345a539c478767c0048d842860994d96113d5b667bd69"
2019-01-19 20:42:54 +00:00
dependencies = [
2020-11-09 21:38:29 +00:00
"winapi",
]