hickory-dns/Cargo.lock

2473 lines
59 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"
version = "0.19.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a76fd60b23679b7d19bd066031410fb7e458ccc5e958eb5c325888ce4baedc97"
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"
2023-05-09 18:44:27 +00:00
version = "1.0.1"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-09 18:44:27 +00:00
checksum = "67fc08ce920c31afb70f013dcce1bfc3a3195de6a228474e45e1f145b36f8d04"
2019-01-19 20:42:54 +00:00
dependencies = [
"memchr",
2019-01-19 20:42:54 +00:00
]
2023-05-09 18:44:27 +00:00
[[package]]
name = "anstream"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0ca84f3628370c59db74ee214b3263d58f9aadd9b4fe7e711fd87dc452b7f163"
dependencies = [
"anstyle",
"anstyle-parse",
"anstyle-query",
"anstyle-wincon",
"colorchoice",
"is-terminal",
"utf8parse",
]
[[package]]
name = "anstyle"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "41ed9a86bf92ae6580e0a31281f65a1b1d867c0cc68d5346e2ae128dddfa6a7d"
[[package]]
name = "anstyle-parse"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e765fd216e48e067936442276d1d57399e37bce53c264d6fefbe298080cb57ee"
dependencies = [
"utf8parse",
]
[[package]]
name = "anstyle-query"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5ca11d4be1bab0c8bc8734a9aa7bf4ee8316d462a08c6ac5052f888fef5b494b"
dependencies = [
"windows-sys 0.48.0",
]
[[package]]
name = "anstyle-wincon"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "180abfa45703aebe0093f79badacc01b8fd4ea2e35118747e5811127f926e188"
dependencies = [
"anstyle",
"windows-sys 0.48.0",
]
2023-05-08 01:12:41 +00:00
[[package]]
name = "arbitrary"
version = "1.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e2d098ff73c1ca148721f37baad5ea6a465a13f9573aba8641fbbbae8164a54e"
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 1.0.109",
2020-04-10 21:57:29 +00:00
]
[[package]]
name = "async-channel"
version = "1.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cf46fee83e5ccffc220104713af3292ff9bc7c64c7de289f66dae8e38d826833"
dependencies = [
"concurrent-queue",
"event-listener",
"futures-core",
]
[[package]]
name = "async-executor"
2023-05-09 18:44:27 +00:00
version = "1.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-09 18:44:27 +00:00
checksum = "6fa3dc5f2a8564f07759c008b9109dc0d39de92a88d5588b8a5036d286383afb"
dependencies = [
"async-lock",
2020-10-24 20:35:22 +00:00
"async-task",
"concurrent-queue",
"fastrand",
"futures-lite",
"slab",
]
[[package]]
name = "async-global-executor"
version = "2.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f1b6f5d7df27bd294849f8eec66ecfc63d11814df7a4f5d74168a2394467b776"
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",
"once_cell",
]
[[package]]
name = "async-io"
2023-03-27 13:43:33 +00:00
version = "1.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-27 13:43:33 +00:00
checksum = "0fc5b45d93ef0529756f812ca52e44c221b35341892d3dcc34132ac02f3dd2af"
dependencies = [
"async-lock",
2022-08-30 03:10:38 +00:00
"autocfg",
2023-03-27 13:43:33 +00:00
"cfg-if",
"concurrent-queue",
"futures-lite",
"log",
"parking",
"polling",
2023-05-09 18:44:27 +00:00
"rustix",
"slab",
2023-05-09 18:44:27 +00:00
"socket2 0.4.9",
"waker-fn",
]
2021-02-18 06:02:38 +00:00
[[package]]
name = "async-lock"
version = "2.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fa24f727524730b077666307f2734b4a1a1c57acb79193127dcc8914d5242dd7"
dependencies = [
"event-listener",
]
[[package]]
name = "async-process"
2023-05-09 18:44:27 +00:00
version = "1.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-09 18:44:27 +00:00
checksum = "7a9d28b1d97e08915212e2e45310d47854eafa69600756fc735fb788f75199c9"
dependencies = [
"async-io",
"async-lock",
2022-08-30 03:10:38 +00:00
"autocfg",
"blocking",
"cfg-if",
"event-listener",
"futures-lite",
2023-05-09 18:44:27 +00:00
"rustix",
"signal-hook",
2023-05-09 18:44:27 +00:00
"windows-sys 0.48.0",
]
2022-05-18 02:59:41 +00:00
[[package]]
name = "async-recursion"
version = "1.0.4"
2022-05-18 02:59:41 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0e97ce7de6cf12de5d7226c73f5ba9811622f4db3a5b91b55c53e987e5f91cba"
2022-05-18 02:59:41 +00:00
dependencies = [
"proc-macro2",
"quote",
2023-05-09 18:44:27 +00:00
"syn 2.0.15",
2022-05-18 02:59:41 +00:00
]
[[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"
2023-05-08 22:40:35 +00:00
version = "0.23.0-alpha.1"
2020-04-10 21:57:29 +00:00
dependencies = [
"async-std",
"async-trait",
"futures-io",
"futures-util",
"pin-utils",
2023-05-09 18:44:27 +00:00
"socket2 0.5.2",
"trust-dns-resolver",
2020-04-10 21:57:29 +00:00
]
[[package]]
name = "async-task"
2023-03-27 13:43:33 +00:00
version = "4.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-27 13:43:33 +00:00
checksum = "ecc7ab41815b3c653ccd2978ec3255c81349336702dfdf62ee6f7069b12a3aae"
[[package]]
name = "async-trait"
2023-03-27 13:43:33 +00:00
version = "0.1.68"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-27 13:43:33 +00:00
checksum = "b9ccdd8f2a161be9bd5c023df56f1b2a0bd1d83872ae53b71a84a12c9bf6e842"
dependencies = [
"proc-macro2",
"quote",
2023-05-09 18:44:27 +00:00
"syn 2.0.15",
]
[[package]]
name = "atomic-waker"
2023-05-09 18:44:27 +00:00
version = "1.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-09 18:44:27 +00:00
checksum = "1181e1e0d1fce796a03db1ae795d67167da795f9cf4a39c37589e85ef57f26d3"
[[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"
version = "0.3.67"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "233d376d6d185f2a3093e58f283f60f880315b6c60075b01f36b3b85154564ca"
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.21.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a4a4ddaa51a5bc52a6948f74c06d20aaaddb71924eab79b8c97a8c556e942d6a"
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
2023-05-09 20:56:23 +00:00
[[package]]
name = "bitflags"
version = "2.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "24a6904aef64d73cf10ab17ebace7befb918b82164785cb89907993be7f83813"
2020-06-19 17:04:04 +00:00
[[package]]
name = "blocking"
2023-05-09 18:44:27 +00:00
version = "1.3.1"
2020-06-19 17:04:04 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-09 18:44:27 +00:00
checksum = "77231a1c8f801696fc0123ec6150ce92cffb8e164a02afb9c8ddee0e9b65ad65"
2020-06-19 17:04:04 +00:00
dependencies = [
"async-channel",
"async-lock",
2020-10-24 20:35:22 +00:00
"async-task",
"atomic-waker",
"fastrand",
"futures-lite",
2023-05-09 18:44:27 +00:00
"log",
2020-06-19 17:04:04 +00:00
]
[[package]]
name = "bumpalo"
2023-05-09 20:56:23 +00:00
version = "3.12.2"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-09 20:56:23 +00:00
checksum = "3c6ed94e98ecff0c12dd1b04c15ec0d7d9458ca8fe806cea6f12954efe74c63b"
2019-01-19 20:42:54 +00:00
2020-11-09 21:38:29 +00:00
[[package]]
name = "bytes"
version = "1.4.0"
2020-06-19 17:04:04 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "89b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be"
2020-06-19 17:04:04 +00:00
2019-01-19 20:42:54 +00:00
[[package]]
name = "cc"
version = "1.0.79"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f"
2023-05-08 01:12:41 +00:00
dependencies = [
"jobserver",
]
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"
2023-05-09 18:44:27 +00:00
version = "4.2.7"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-09 18:44:27 +00:00
checksum = "34d21f9bf1b425d2968943631ec91202fe5e837264063503708b83013f8fc938"
2019-01-19 20:42:54 +00:00
dependencies = [
2023-05-09 18:44:27 +00:00
"clap_builder",
2022-02-25 15:35:50 +00:00
"clap_derive",
2023-05-09 18:44:27 +00:00
"once_cell",
]
[[package]]
name = "clap_builder"
version = "4.2.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "914c8c79fb560f238ef6429439a30023c862f7a28e688c58f7203f12b29970bd"
dependencies = [
"anstream",
"anstyle",
2023-05-09 20:56:23 +00:00
"bitflags 1.3.2",
2022-08-03 10:16:27 +00:00
"clap_lex",
"once_cell",
2022-04-08 00:12:23 +00:00
"strsim",
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"
2023-05-09 18:44:27 +00:00
version = "4.2.0"
2022-01-16 17:01:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-09 18:44:27 +00:00
checksum = "3f9644cd56d6b87dbe899ef8b053e331c0637664e9e21a33dfcdc36093f5c5c4"
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-macro2",
"quote",
2023-05-09 18:44:27 +00:00
"syn 2.0.15",
2022-01-16 17:01:28 +00:00
]
2022-08-03 10:16:27 +00:00
[[package]]
name = "clap_lex"
2023-05-09 18:44:27 +00:00
version = "0.4.1"
2022-08-03 10:16:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-09 18:44:27 +00:00
checksum = "8a2dd5a6fe8c6e3502f568a6353e5273bbb15193ad9a89e457b9970798efbea1"
[[package]]
name = "colorchoice"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7"
2022-08-03 10:16:27 +00:00
2020-06-19 17:04:04 +00:00
[[package]]
name = "concurrent-queue"
2023-05-09 18:44:27 +00:00
version = "2.2.0"
2020-06-19 17:04:04 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-09 18:44:27 +00:00
checksum = "62ec6771ecfa0762d24683ee5a32ad78487a3d3afdc0fb8cae19d2c5deb50b7c"
2020-06-19 17:04:04 +00:00
dependencies = [
"crossbeam-utils",
2020-06-19 17:04:04 +00:00
]
2020-09-17 19:33:11 +00:00
[[package]]
name = "console"
version = "0.15.5"
2020-09-17 19:33:11 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c3d79fbe8970a77e3e34151cc13d3b3e248aa0faaecb9f6091fa07ebefe5ad60"
2020-09-17 19:33:11 +00:00
dependencies = [
"encode_unicode",
"lazy_static",
2020-09-17 19:33:11 +00:00
"libc",
"unicode-width",
"windows-sys 0.42.0",
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"
2023-05-09 18:44: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"
2023-05-09 18:44:27 +00:00
checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa"
2019-01-19 20:42:54 +00:00
[[package]]
name = "crossbeam-utils"
version = "0.8.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3c063cd8cc95f5c377ed0d4b49a4b21f632396ff690e8470c29b3359b346984b"
dependencies = [
"cfg-if",
2021-02-18 10:09:36 +00:00
]
[[package]]
name = "ctor"
version = "0.1.26"
2021-02-18 10:09:36 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6d2301688392eb071b0bf1a37be05c469d3cc4dbbd95df672fe28ab021e6a096"
2021-02-18 10:09:36 +00:00
dependencies = [
"quote",
"syn 1.0.109",
]
2019-01-19 20:42:54 +00:00
[[package]]
name = "data-encoding"
version = "2.3.3"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "23d8666cb01533c39dde32bcbab8e227b4ed6679b2c925eba05feabea39508fb"
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 1.0.109",
2019-01-19 20:42:54 +00:00
]
[[package]]
name = "errno"
2023-05-09 18:44:27 +00:00
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-09 18:44:27 +00:00
checksum = "4bcfec3a70f97c962c307b2d2c56e358cf1d00b558d74262b5f929ee8cc7e73a"
dependencies = [
"errno-dragonfly",
"libc",
2023-05-09 18:44:27 +00:00
"windows-sys 0.48.0",
2023-03-27 13:43:33 +00:00
]
[[package]]
name = "errno-dragonfly"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf"
dependencies = [
"cc",
"libc",
]
[[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"
version = "1.9.0"
2020-06-19 17:04:04 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be"
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"
2022-09-08 16:29:32 +00:00
version = "1.1.0"
2020-11-10 00:52:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-08 16:29:32 +00:00
checksum = "a9c384f161156f5260c24a097c56119f9be8c798586aecc13afbcbe7b7e26bf8"
2020-11-10 00:52:27 +00:00
dependencies = [
"percent-encoding",
]
[[package]]
name = "futures"
2023-05-09 18:44:27 +00:00
version = "0.3.28"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-09 18:44:27 +00:00
checksum = "23342abe12aba583913b2e62f22225ff9c950774065e4bfb61a19cd9770fec40"
dependencies = [
"futures-channel",
"futures-core",
"futures-executor",
"futures-io",
"futures-sink",
"futures-task",
"futures-util",
]
[[package]]
name = "futures-channel"
2023-05-09 18:44:27 +00:00
version = "0.3.28"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-09 18:44:27 +00:00
checksum = "955518d47e09b25bbebc7a18df10b81f0c766eaf4c4f1cccef2fca5f2a4fb5f2"
dependencies = [
"futures-core",
"futures-sink",
]
[[package]]
name = "futures-core"
2023-05-09 18:44:27 +00:00
version = "0.3.28"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-09 18:44:27 +00:00
checksum = "4bca583b7e26f571124fe5b7561d49cb2868d79116cfa0eefce955557c6fee8c"
[[package]]
name = "futures-executor"
2023-05-09 18:44:27 +00:00
version = "0.3.28"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-09 18:44:27 +00:00
checksum = "ccecee823288125bd88b4d7f565c9e58e41858e47ab72e8ea2d64e93624386e0"
dependencies = [
"futures-core",
"futures-task",
"futures-util",
"num_cpus",
]
[[package]]
name = "futures-io"
2023-05-09 18:44:27 +00:00
version = "0.3.28"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-09 18:44:27 +00:00
checksum = "4fff74096e71ed47f8e023204cfd0aa1289cd54ae5430a9523be060cdb849964"
[[package]]
name = "futures-lite"
2023-05-09 18:44:27 +00:00
version = "1.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-09 18:44:27 +00:00
checksum = "49a9d51ce47660b1e808d3c990b4709f2f415d928835a17dfd16991515c46bce"
dependencies = [
"fastrand",
"futures-core",
"futures-io",
"memchr",
"parking",
2020-12-25 02:49:11 +00:00
"pin-project-lite",
"waker-fn",
]
[[package]]
name = "futures-sink"
2023-05-09 18:44:27 +00:00
version = "0.3.28"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-09 18:44:27 +00:00
checksum = "f43be4fe21a13b9781a69afa4985b0f6ee0e1afab2c6f454a8cf30e2b2237b6e"
[[package]]
name = "futures-task"
2023-05-09 18:44:27 +00:00
version = "0.3.28"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-09 18:44:27 +00:00
checksum = "76d3d132be6c0e6aa1534069c705a74a5997a356c0dc2f86a47765e5617c5b65"
[[package]]
name = "futures-util"
2023-05-09 18:44:27 +00:00
version = "0.3.28"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-09 18:44:27 +00:00
checksum = "26b01e40b772d54cf6c6d721c1d1abd0647a0106a12ecaa1c186273392a69533"
dependencies = [
"futures-channel",
"futures-core",
"futures-io",
"futures-sink",
"futures-task",
"memchr",
2021-02-18 10:09:36 +00:00
"pin-project-lite",
"pin-utils",
"slab",
]
[[package]]
name = "getrandom"
2023-05-09 18:44:27 +00:00
version = "0.2.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-09 18:44:27 +00:00
checksum = "c85e1d9ab2eadba7e5040d4e09cbd6d072b76a557ad64e797c2cb9d4da21d7e4"
dependencies = [
"cfg-if",
"libc",
2021-02-18 10:09:36 +00:00
"wasi",
]
[[package]]
name = "gimli"
version = "0.27.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ad0a93d233ebf96623465aad4046a8d3aa4da22d4f4beba5388838c8a434bbb4"
[[package]]
name = "gloo-timers"
version = "0.2.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9b995a66bb87bebce9a0f4a95aed01daca4872c050bfcb21653361c03bc35e5c"
dependencies = [
"futures-channel",
"futures-core",
"js-sys",
"wasm-bindgen",
]
[[package]]
name = "h2"
version = "0.3.18"
2020-12-25 02:49:11 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "17f8a914c2987b688368b5138aa05321db91f4090cf26118185672ad588bce21"
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.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "69fe1fcf8b4278d860ad0548329f892a3631fb63f82574df68275f34cdbe0ffa"
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.1"
2022-02-25 15:35:50 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
2022-02-25 15:35:50 +00:00
[[package]]
name = "hermit-abi"
version = "0.2.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7"
dependencies = [
"libc",
]
[[package]]
name = "hermit-abi"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fed44880c466736ef9a5c5b5facefb5ed0785676d0c02d612db14e54f0d84286"
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"
version = "0.2.9"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bd6effc99afb63425aff9b05836f029929e345a6148a14b7ecd5ab67af944482"
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"
2022-09-08 16:29:32 +00:00
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-08 16:29:32 +00:00
checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6"
dependencies = [
"unicode-bidi",
"unicode-normalization",
]
2019-01-19 20:42:54 +00:00
[[package]]
name = "indexmap"
2023-03-27 13:43:33 +00:00
version = "1.9.3"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-27 13:43:33 +00:00
checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
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",
]
[[package]]
name = "io-lifetimes"
2023-05-09 18:44:27 +00:00
version = "1.0.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-09 18:44:27 +00:00
checksum = "9c66c74d2ae7e79a5a8f7ac924adbe38ee42a859c6539ad869eb51f0b52dc220"
dependencies = [
"hermit-abi 0.3.1",
"libc",
2023-05-09 18:44:27 +00:00
"windows-sys 0.48.0",
]
2019-01-19 20:42:54 +00:00
[[package]]
name = "ipconfig"
version = "0.3.1"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bd302af1b90f2463a98fa5ad469fc212c8e3175a41c3068601bfa2727591c5be"
2019-01-19 20:42:54 +00:00
dependencies = [
2023-05-09 18:44:27 +00:00
"socket2 0.4.9",
"widestring",
2020-11-09 21:38:29 +00:00
"winapi",
"winreg",
2019-01-19 20:42:54 +00:00
]
[[package]]
name = "ipnet"
2023-05-09 18:44:27 +00:00
version = "2.7.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-09 18:44:27 +00:00
checksum = "12b6ee2129af8d4fb011108c73d99a1b83a85977f23b82460c0ae2e25bb4b57f"
[[package]]
name = "is-terminal"
2023-05-09 18:44:27 +00:00
version = "0.4.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-09 18:44:27 +00:00
checksum = "adcf93614601c8129ddf72e2d5633df827ba6551541c6d8c59520a371475be1f"
dependencies = [
"hermit-abi 0.3.1",
"io-lifetimes",
2023-05-09 18:44:27 +00:00
"rustix",
"windows-sys 0.48.0",
]
2019-01-19 20:42:54 +00:00
[[package]]
name = "itoa"
version = "1.0.6"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "453ad9f582a441959e5f0d088b02ce04cfe8d51a8eaf077f12ac6d3e94164ca6"
2019-01-19 20:42:54 +00:00
2023-05-08 01:12:41 +00:00
[[package]]
name = "jobserver"
version = "0.1.26"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "936cfd212a0155903bcbc060e316fb6cc7cbf2e1907329391ebadc1fe0ce77c2"
dependencies = [
"libc",
]
[[package]]
name = "js-sys"
2023-05-09 18:44:27 +00:00
version = "0.3.62"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-09 18:44:27 +00:00
checksum = "68c16e1bfd491478ab155fd8b4896b86f9ede344949b641e61501e07c2b8b4d5"
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"
2023-05-09 18:44:27 +00:00
version = "0.2.144"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-09 18:44:27 +00:00
checksum = "2b00cc1c228a6782d0f076e7b232802e0c5689d41bb5df366f2a6b6621cfdfe1"
2019-01-19 20:42:54 +00:00
2023-05-08 01:12:41 +00:00
[[package]]
name = "libfuzzer-sys"
version = "0.4.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "beb09950ae85a0a94b27676cccf37da5ff13f27076aa1adbc6545dd0d0e1bd4e"
dependencies = [
"arbitrary",
"cc",
"once_cell",
]
2019-01-19 20:42:54 +00:00
[[package]]
name = "libsqlite3-sys"
2023-05-09 20:56:23 +00:00
version = "0.26.0"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-09 20:56:23 +00:00
checksum = "afc22eff61b133b115c6e8c74e818c628d6d5e7a502afea6f64dee076dd94326"
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 = "linux-raw-sys"
2023-05-09 18:44:27 +00:00
version = "0.3.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-09 18:44:27 +00:00
checksum = "ece97ea872ece730aed82664c424eb4c8291e1ff2480247ccf7409044bc6479f"
2023-03-27 13:43:33 +00:00
[[package]]
name = "lock_api"
version = "0.4.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df"
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 = "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"
version = "0.6.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b275950c28b37e794e8c55d88aeb5e139d0ce23fdbbeda68f8d7174abdf9e8fa"
dependencies = [
"adler",
]
2019-01-19 20:42:54 +00:00
[[package]]
name = "mio"
version = "0.8.6"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5b9d9a46eff5b4ff64b45a9e316a6d1e0bc719ef429cbec4dc630684212bfdf9"
2019-01-19 20:42:54 +00:00
dependencies = [
"libc",
"log",
2022-08-03 10:16:27 +00:00
"wasi",
"windows-sys 0.45.0",
2019-01-19 20:42:54 +00:00
]
[[package]]
name = "native-tls"
version = "0.2.11"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "07226173c32f2926027b63cce4bcd8076c3552846cbe7925f3aaffeac0a3b92e"
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]]
name = "nu-ansi-term"
version = "0.46.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84"
dependencies = [
"overload",
"winapi",
]
2019-01-19 20:42:54 +00:00
[[package]]
2022-08-03 10:16:27 +00:00
name = "num_cpus"
version = "1.15.0"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0fac9e2da13b5eb447a6ce3d392f23a29d8694bff781bf03a16cd9ac8697593b"
2019-01-19 20:42:54 +00:00
dependencies = [
"hermit-abi 0.2.6",
"libc",
2019-01-19 20:42:54 +00:00
]
[[package]]
name = "object"
version = "0.30.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ea86265d3d3dcb6a27fc51bd29a4bf387fae9d2986b823079d4986af253eb439"
dependencies = [
"memchr",
]
[[package]]
name = "once_cell"
version = "1.17.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b7e5500299e16ebb147ae15a00a942af264cf3688f47923b8fc2cd5858f23ad3"
2019-01-19 20:42:54 +00:00
[[package]]
name = "openssl"
2023-05-09 18:44:27 +00:00
version = "0.10.52"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-09 18:44:27 +00:00
checksum = "01b8574602df80f7b85fdfc5392fa884a4e3b3f4f35402c070ab34c3d3f78d56"
2019-01-19 20:42:54 +00:00
dependencies = [
2023-05-09 20:56:23 +00:00
"bitflags 1.3.2",
"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"
2023-05-09 18:44:27 +00:00
version = "0.1.1"
2022-08-03 10:16:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-09 18:44:27 +00:00
checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
2022-08-03 10:16:27 +00:00
dependencies = [
"proc-macro2",
"quote",
2023-05-09 18:44:27 +00:00
"syn 2.0.15",
2022-08-03 10:16:27 +00:00
]
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"
2023-05-09 18:44:27 +00:00
version = "0.9.87"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-09 18:44:27 +00:00
checksum = "8e17f59264b2809d77ae94f0e1ebabc434773f370d6ca667bd223ea10e06cc7e"
2019-01-19 20:42:54 +00:00
dependencies = [
"cc",
"libc",
"pkg-config",
"vcpkg",
]
[[package]]
name = "overload"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39"
[[package]]
name = "parking"
2023-05-09 18:44:27 +00:00
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-09 18:44:27 +00:00
checksum = "14f2252c834a40ed9bb5422029649578e63aa341ac401f74e719dd1afda8394e"
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"
version = "0.9.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9069cbb9f99e3a5083476ccb29ceb1de18b9118cafa53e90c9551235de2b9521"
dependencies = [
"cfg-if",
"libc",
2023-05-09 18:44:27 +00:00
"redox_syscall 0.2.16",
"smallvec",
"windows-sys 0.45.0",
]
2019-01-19 20:42:54 +00:00
[[package]]
name = "percent-encoding"
2022-09-08 16:29:32 +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-09-08 16:29:32 +00:00
checksum = "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e"
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"
2023-05-09 18:44:27 +00:00
version = "0.3.27"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-09 18:44:27 +00:00
checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964"
2019-01-19 20:42:54 +00:00
[[package]]
name = "polling"
2023-05-09 18:44:27 +00:00
version = "2.8.0"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-09 18:44:27 +00:00
checksum = "4b2d323e8ca7996b3e23126511a523f7e62924d93ecd5ae73b333815b0eb3dce"
dependencies = [
2022-08-30 03:10:38 +00:00
"autocfg",
2023-05-09 20:56:23 +00:00
"bitflags 1.3.2",
"cfg-if",
"concurrent-queue",
"libc",
2020-09-16 18:16:48 +00:00
"log",
"pin-project-lite",
2023-05-09 18:44:27 +00:00
"windows-sys 0.48.0",
]
2019-01-19 20:42:54 +00:00
[[package]]
name = "ppv-lite86"
version = "0.2.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
2019-09-06 14:00:02 +00:00
[[package]]
name = "proc-macro2"
2023-05-09 18:44:27 +00:00
version = "1.0.56"
2019-09-06 14:00:02 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-09 18:44:27 +00:00
checksum = "2b63bdb0cd06f1f4dedf69b254734f9b45af66e4a031e42a7480257d9898b435"
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"
version = "0.9.3"
2022-03-28 17:51:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "445cbfe2382fa023c4f2f3c7e1c95c03dcc1df2bf23cebcb2b13e1402c4394d1"
2022-03-28 17:51:47 +00:00
dependencies = [
"bytes",
2022-11-04 22:11:47 +00:00
"pin-project-lite",
2022-03-28 17:51:47 +00:00
"quinn-proto",
"quinn-udp",
2022-11-04 22:11:47 +00:00
"rustc-hash",
2022-03-28 17:51:47 +00:00
"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"
2023-05-09 18:44:27 +00:00
version = "0.9.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-09 18:44:27 +00:00
checksum = "67c10f662eee9c94ddd7135043e544f3c82fa839a1e7b865911331961b53186c"
dependencies = [
"bytes",
"rand",
"ring",
2022-11-04 22:11:47 +00:00
"rustc-hash",
"rustls",
2022-03-28 17:51:47 +00:00
"rustls-native-certs",
"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"
2023-01-07 15:24:39 +00:00
version = "0.3.2"
2022-03-28 17:51:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-07 15:24:39 +00:00
checksum = "641538578b21f5e5c8ea733b736895576d0fe329bb883b937db6f4d163dbaaf4"
2022-03-28 17:51:47 +00:00
dependencies = [
"libc",
"quinn-proto",
2023-05-09 18:44:27 +00:00
"socket2 0.4.9",
2022-03-28 17:51:47 +00:00
"tracing",
2022-11-04 22:11:47 +00:00
"windows-sys 0.42.0",
2022-03-28 17:51:47 +00:00
]
2019-09-06 14:00:02 +00:00
[[package]]
name = "quote"
2023-05-09 18:44:27 +00:00
version = "1.0.27"
2019-09-06 14:00:02 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-09 18:44:27 +00:00
checksum = "8f4f29d145265ec1c483c7c654450edde0bfe043d3938d6972630663356d9500"
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.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
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 = [
2023-05-09 20:56:23 +00:00
"bitflags 1.3.2",
2021-02-18 10:09:36 +00:00
]
2019-01-19 20:42:54 +00:00
2023-05-09 18:44:27 +00:00
[[package]]
name = "redox_syscall"
version = "0.3.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29"
dependencies = [
2023-05-09 20:56:23 +00:00
"bitflags 1.3.2",
2023-05-09 18:44:27 +00:00
]
2019-01-19 20:42:54 +00:00
[[package]]
name = "regex"
2023-05-09 18:44:27 +00:00
version = "1.8.1"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-09 18:44:27 +00:00
checksum = "af83e617f331cc6ae2da5443c602dfa5af81e517212d9d611a5b3ba1777b5370"
2019-01-19 20:42:54 +00:00
dependencies = [
"aho-corasick",
"memchr",
2023-05-09 18:44:27 +00:00
"regex-syntax 0.7.1",
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 = [
2023-05-09 18:44:27 +00:00
"regex-syntax 0.6.29",
]
2019-01-19 20:42:54 +00:00
[[package]]
name = "regex-syntax"
2023-03-27 13:43:33 +00:00
version = "0.6.29"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-27 13:43:33 +00:00
checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
2019-01-19 20:42:54 +00:00
2023-05-09 18:44:27 +00:00
[[package]]
name = "regex-syntax"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a5996294f19bd3aae0453a862ad728f60e6600695733dd5df01da90c54363a3c"
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"
2023-05-09 20:56:23 +00:00
version = "0.29.0"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-09 20:56:23 +00:00
checksum = "549b9d036d571d42e6e85d1c1425e2ac83491075078ca9a15be021c56b1641f2"
2019-01-19 20:42:54 +00:00
dependencies = [
2023-05-09 20:56:23 +00:00
"bitflags 2.2.1",
"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"
2023-05-09 18:44:27 +00:00
version = "0.1.23"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-09 18:44:27 +00:00
checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76"
2019-01-19 20:42:54 +00:00
2022-11-04 22:11:47 +00:00
[[package]]
name = "rustc-hash"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
[[package]]
name = "rustix"
2023-05-09 18:44:27 +00:00
version = "0.37.19"
2023-03-27 13:43:33 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-09 18:44:27 +00:00
checksum = "acf8729d8542766f1b2cf77eb034d52f40d375bb8b615d0b147089946e16613d"
2023-03-27 13:43:33 +00:00
dependencies = [
2023-05-09 20:56:23 +00:00
"bitflags 1.3.2",
2023-05-09 18:44:27 +00:00
"errno",
2023-03-27 13:43:33 +00:00
"io-lifetimes",
"libc",
2023-05-09 18:44:27 +00:00
"linux-raw-sys",
"windows-sys 0.48.0",
]
2019-01-19 20:42:54 +00:00
[[package]]
name = "rustls"
version = "0.20.8"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fff78fc74d175294f4e83b28343315ffcfb114b156f0185e9741cb5570f50e2f"
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-11-04 22:11:47 +00:00
"rustls-pemfile",
2022-03-28 17:51:47 +00:00
"schannel",
"security-framework",
]
2021-10-25 14:16:21 +00:00
[[package]]
name = "rustls-pemfile"
version = "1.0.2"
2021-10-25 14:16:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d194b56d58803a43635bdc398cd17e383d6f71f9182b9a192c127ca42494a59b"
2021-10-25 14:16:21 +00:00
dependencies = [
"base64",
2019-01-19 20:42:54 +00:00
]
[[package]]
name = "schannel"
version = "0.1.21"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "713cfb06c7059f3588fb8044c0fad1d09e3c01d225e25b9220dbfdcf16dbb1b3"
2019-01-19 20:42:54 +00:00
dependencies = [
"windows-sys 0.42.0",
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"
version = "2.8.2"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a332be01508d814fed64bf28f798a146d73792121129962fdf335bb3c49a4254"
2019-01-19 20:42:54 +00:00
dependencies = [
2023-05-09 20:56:23 +00:00
"bitflags 1.3.2",
"core-foundation",
"core-foundation-sys",
"libc",
"security-framework-sys",
2019-01-19 20:42:54 +00:00
]
[[package]]
name = "security-framework-sys"
version = "2.8.0"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "31c9bb296072e961fcbd8853511dd39c2d8be2deb1e17c6860b1d30732b323b4"
2019-01-19 20:42:54 +00:00
dependencies = [
"core-foundation-sys",
"libc",
2019-01-19 20:42:54 +00:00
]
[[package]]
name = "serde"
2023-05-09 18:44:27 +00:00
version = "1.0.162"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-09 18:44:27 +00:00
checksum = "71b2f6e1ab5c2b98c05f0f35b236b22e8df7ead6ffbf51d7808da7f8817e7ab6"
dependencies = [
"serde_derive",
]
2019-01-19 20:42:54 +00:00
[[package]]
name = "serde_derive"
2023-05-09 18:44:27 +00:00
version = "1.0.162"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-09 18:44:27 +00:00
checksum = "a2a0814352fd64b58489904a44ea8d90cb1a91dcb6b4f5ebabc32c8318e93cb6"
2019-01-19 20:42:54 +00:00
dependencies = [
"proc-macro2",
"quote",
2023-05-09 18:44:27 +00:00
"syn 2.0.15",
2019-01-19 20:42:54 +00:00
]
[[package]]
name = "serde_spanned"
version = "0.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0efd8caf556a6cebd3b285caf480045fcc1ac04f6bd786b09a6f11af30c4fcf4"
dependencies = [
"serde",
]
[[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"
version = "0.3.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "732768f1176d21d09e076c23a93123d40bba92d50c4058da34d45c8de8e682b9"
dependencies = [
"libc",
"signal-hook-registry",
]
[[package]]
name = "signal-hook-registry"
version = "1.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1"
dependencies = [
"libc",
]
2019-01-19 20:42:54 +00:00
[[package]]
name = "slab"
version = "0.4.8"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6528351c9bc8ab22353f9d776db39a20288e8d6c37ef8cfe3317cf875eecfc2d"
2022-08-03 10:16:27 +00:00
dependencies = [
"autocfg",
]
2019-01-19 20:42:54 +00:00
[[package]]
name = "smallvec"
version = "1.10.0"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0"
2021-03-21 20:29:31 +00:00
[[package]]
name = "socket2"
version = "0.4.9"
2021-03-21 20:29:31 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662"
2021-03-21 20:29:31 +00:00
dependencies = [
"libc",
"winapi",
]
2023-05-09 18:44:27 +00:00
[[package]]
name = "socket2"
version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6d283f86695ae989d1e18440a943880967156325ba025f05049946bff47bcc2b"
dependencies = [
"libc",
"windows-sys 0.48.0",
]
[[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"
version = "1.0.109"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
dependencies = [
"proc-macro2",
"quote",
"unicode-ident",
]
[[package]]
name = "syn"
2023-05-09 18:44:27 +00:00
version = "2.0.15"
2019-09-06 14:00:02 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-09 18:44:27 +00:00
checksum = "a34fcf3e8b60f57e6a14301a2e916d323af98b0ea63c599441eec8558660c822"
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"
2023-05-09 18:44:27 +00:00
version = "3.5.0"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-09 18:44:27 +00:00
checksum = "b9fbec84f381d5795b08656e4912bec604d162bff9291d6189a78f4c8ab87998"
2019-01-19 20:42:54 +00:00
dependencies = [
"cfg-if",
2022-08-03 10:16:27 +00:00
"fastrand",
2023-05-09 18:44:27 +00:00
"redox_syscall 0.3.5",
"rustix",
"windows-sys 0.45.0",
2019-01-19 20:42:54 +00:00
]
2020-01-12 03:28:02 +00:00
[[package]]
name = "thiserror"
version = "1.0.40"
2020-01-12 03:28:02 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "978c9a314bd8dc99be594bc3c175faaa9794be04a5a5e153caba6915336cebac"
2020-01-12 03:28:02 +00:00
dependencies = [
"thiserror-impl",
2020-01-12 03:28:02 +00:00
]
[[package]]
name = "thiserror-impl"
version = "1.0.40"
2020-01-12 03:28:02 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f9456a42c5b0d803c8cd86e73dd7cc9edd429499f37a3550d286d5e86720569f"
2020-01-12 03:28:02 +00:00
dependencies = [
"proc-macro2",
"quote",
2023-05-09 18:44:27 +00:00
"syn 2.0.15",
2020-01-12 03:28:02 +00:00
]
[[package]]
name = "thread_local"
version = "1.1.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3fdd6f064ccff2d6567adcb3873ca630700f00b5ad3f060c25b5dcfd9a4ce152"
dependencies = [
"cfg-if",
"once_cell",
]
2019-01-19 20:42:54 +00:00
[[package]]
name = "time"
2023-05-09 20:56:23 +00:00
version = "0.3.20"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-09 20:56:23 +00:00
checksum = "cd0cbfecb4d19b5ea75bb31ad904eb5b9fa13f21079c3b92017ebdf4999a5890"
2019-01-19 20:42:54 +00:00
dependencies = [
2022-05-03 01:39:53 +00:00
"itoa",
"serde",
"time-core",
2021-10-24 15:50:40 +00:00
"time-macros",
2019-01-19 20:42:54 +00:00
]
[[package]]
name = "time-core"
2023-05-09 20:56:23 +00:00
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-09 20:56:23 +00:00
checksum = "2e153e1f1acaef8acc537e68b44906d2db6436e2b35ac2c6b42640fff91f00fd"
2021-10-24 15:50:40 +00:00
[[package]]
name = "time-macros"
2023-05-09 20:56:23 +00:00
version = "0.2.8"
2021-10-24 15:50:40 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-09 20:56:23 +00:00
checksum = "fd80a657e71da814b8e5d60d3374fc6d35045062245d80224748ae522dd76f36"
dependencies = [
"time-core",
]
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.1"
2020-12-25 02:49:11 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
2020-11-09 21:38:29 +00:00
[[package]]
name = "tokio"
2023-05-09 18:44:27 +00:00
version = "1.28.0"
2020-11-09 21:38:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-09 18:44:27 +00:00
checksum = "c3c786bf8134e5a3a166db9b29ab8f48134739014a3eca7bc6bfa95d673b136f"
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",
"mio",
"num_cpus",
2020-12-25 02:49:11 +00:00
"pin-project-lite",
2023-05-09 18:44:27 +00:00
"socket2 0.4.9",
2020-09-17 19:33:11 +00:00
"tokio-macros",
2023-05-09 18:44:27 +00:00
"windows-sys 0.48.0",
2020-09-17 19:33:11 +00:00
]
[[package]]
name = "tokio-macros"
2023-05-09 18:44:27 +00:00
version = "2.1.0"
2020-09-17 19:33:11 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-09 18:44:27 +00:00
checksum = "630bdcf245f78637c13ec01ffae6187cca34625e8c63150d424b59e55af2675e"
2020-09-17 19:33:11 +00:00
dependencies = [
"proc-macro2",
"quote",
2023-05-09 18:44:27 +00:00
"syn 2.0.15",
2019-01-19 20:42:54 +00:00
]
[[package]]
name = "tokio-native-tls"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2"
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"
2023-05-09 18:44:27 +00:00
version = "0.7.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-09 18:44:27 +00:00
checksum = "806fe8c2c87eccc8b3267cbae29ed3ab2d0bd37fca70ab622e46aaa9375ddb7d"
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"
version = "0.7.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b403acf6f2bb0859c93c7f0d967cb4a75a7ac552100f9322faf64dc047669b21"
dependencies = [
"serde",
"serde_spanned",
"toml_datetime",
"toml_edit",
]
[[package]]
name = "toml_datetime"
version = "0.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3ab8ed2edee10b50132aed5f331333428b011c99402b5a534154ed15746f9622"
dependencies = [
"serde",
]
[[package]]
name = "toml_edit"
2023-03-27 13:43:33 +00:00
version = "0.19.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-27 13:43:33 +00:00
checksum = "239410c8609e8125456927e6707163a3b1fdb40561e4b803bc041f466ccfdc13"
dependencies = [
"indexmap",
"serde",
"serde_spanned",
"toml_datetime",
"winnow",
]
[[package]]
name = "tracing"
version = "0.1.37"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8"
dependencies = [
"cfg-if",
2020-12-25 02:49:11 +00:00
"pin-project-lite",
"tracing-attributes",
"tracing-core",
]
[[package]]
name = "tracing-attributes"
2023-05-09 18:44:27 +00:00
version = "0.1.24"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-09 18:44:27 +00:00
checksum = "0f57e3ca2a01450b1a921183a9c9cbfda207fd822cef4ccb00a65402cbba7a74"
dependencies = [
"proc-macro2",
"quote",
2023-05-09 18:44:27 +00:00
"syn 2.0.15",
]
[[package]]
name = "tracing-core"
version = "0.1.30"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "24eb03ba0eab1fd845050058ce5e616558e8f8d8fca633e6b163fe25c797213a"
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"
2023-05-09 18:44:27 +00:00
version = "0.3.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-09 18:44:27 +00:00
checksum = "30a651bc37f915e81f087d86e62a18eec5f79550c7faff886f7090b4ea757c77"
dependencies = [
"matchers",
"nu-ansi-term",
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"
2023-05-08 22:40:35 +00:00
version = "0.23.0-alpha.1"
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"
2023-05-08 22:40:35 +00:00
version = "0.23.0-alpha.1"
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",
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"
2023-05-08 22:40:35 +00:00
version = "0.23.0-alpha.1"
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"
2023-05-08 22:40:35 +00:00
version = "0.23.0-alpha.1"
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",
2022-07-12 23:49:47 +00:00
"trust-dns-recursor",
"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"
2023-05-08 22:40:35 +00:00
version = "0.23.0-alpha.1"
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",
2023-01-07 15:24:39 +00:00
"quinn-udp",
2021-02-18 10:09:36 +00:00
"rand",
"ring",
2021-04-12 00:54:57 +00:00
"rustls",
2022-11-04 22:11:47 +00:00
"rustls-pemfile",
"serde",
"smallvec",
2023-05-09 18:44:27 +00:00
"socket2 0.5.2",
"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
]
2023-05-08 01:12:41 +00:00
[[package]]
name = "trust-dns-proto-fuzz"
version = "0.0.0"
dependencies = [
"libfuzzer-sys",
"trust-dns-proto",
]
2022-02-13 18:02:17 +00:00
[[package]]
name = "trust-dns-recursor"
2023-05-08 22:40:35 +00:00
version = "0.23.0-alpha.1"
2022-02-13 18:02:17 +00:00
dependencies = [
2022-05-18 02:59:41 +00:00
"async-recursion",
2022-02-13 18:02:17 +00:00
"async-trait",
"bytes",
"cfg-if",
"enum-as-inner",
"futures-executor",
"futures-util",
2022-05-18 02:59:41 +00:00
"lru-cache",
"parking_lot",
2022-02-13 18:02:17 +00:00
"serde",
"thiserror",
"tokio",
"toml",
"tracing",
"tracing-subscriber",
"trust-dns-proto",
"trust-dns-resolver",
]
2019-01-19 20:42:54 +00:00
[[package]]
name = "trust-dns-resolver"
2023-05-08 22:40:35 +00:00
version = "0.23.0-alpha.1"
dependencies = [
"cfg-if",
"futures-executor",
"futures-util",
"ipconfig",
"lazy_static",
"lru-cache",
"parking_lot",
"rand",
"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"
2023-05-08 22:40:35 +00:00
version = "0.23.0-alpha.1"
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-proto",
2022-05-25 05:48:56 +00:00
"trust-dns-recursor",
"trust-dns-resolver",
2019-01-19 20:42:54 +00:00
]
2019-10-27 01:24:15 +00:00
[[package]]
name = "trust-dns-util"
2023-05-08 22:40:35 +00:00
version = "0.23.0-alpha.1"
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"
2023-03-27 13:43:33 +00:00
version = "0.3.13"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-27 13:43:33 +00:00
checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460"
2022-08-03 10:16:27 +00:00
[[package]]
name = "unicode-ident"
version = "1.0.8"
2022-08-03 10:16:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e5464a87b239f13a63a501f2701565754bae92d243d4bb7eb12f6d57d2269bf4"
2019-01-19 20:42:54 +00:00
[[package]]
name = "unicode-normalization"
version = "0.1.22"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921"
dependencies = [
"tinyvec",
]
2019-01-19 20:42:54 +00:00
[[package]]
name = "unicode-width"
version = "0.1.10"
2019-09-06 14:00:02 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b"
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"
2022-09-08 16:29:32 +00:00
version = "2.3.1"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-08 16:29:32 +00:00
checksum = "0d68c799ae75762b8c3fe375feb6600ef5602c883c5d21eb51c09f22b83c4643"
2019-01-19 20:42:54 +00:00
dependencies = [
2020-11-10 00:52:27 +00:00
"form_urlencoded",
"idna",
"percent-encoding",
"serde",
2019-01-19 20:42:54 +00:00
]
2023-05-09 18:44:27 +00:00
[[package]]
name = "utf8parse"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a"
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"
2023-05-09 18:44:27 +00:00
version = "0.2.85"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-09 18:44:27 +00:00
checksum = "5b6cb788c4e39112fbe1822277ef6fb3c55cd86b95cb3d3c4c1c9597e4ac74b4"
dependencies = [
"cfg-if",
"wasm-bindgen-macro",
]
[[package]]
name = "wasm-bindgen-backend"
2023-05-09 18:44:27 +00:00
version = "0.2.85"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-09 18:44:27 +00:00
checksum = "35e522ed4105a9d626d885b35d62501b30d9666283a5c8be12c14a8bdafe7822"
dependencies = [
"bumpalo",
"log",
2022-08-03 10:16:27 +00:00
"once_cell",
"proc-macro2",
"quote",
2023-05-09 18:44:27 +00:00
"syn 2.0.15",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-futures"
2023-05-09 18:44:27 +00:00
version = "0.4.35"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-09 18:44:27 +00:00
checksum = "083abe15c5d88556b77bdf7aef403625be9e327ad37c62c4e4129af740168163"
dependencies = [
"cfg-if",
"js-sys",
"wasm-bindgen",
"web-sys",
]
[[package]]
name = "wasm-bindgen-macro"
2023-05-09 18:44:27 +00:00
version = "0.2.85"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-09 18:44:27 +00:00
checksum = "358a79a0cb89d21db8120cbfb91392335913e4890665b1a7981d9e956903b434"
dependencies = [
"quote",
"wasm-bindgen-macro-support",
]
[[package]]
name = "wasm-bindgen-macro-support"
2023-05-09 18:44:27 +00:00
version = "0.2.85"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-09 18:44:27 +00:00
checksum = "4783ce29f09b9d93134d41297aded3a712b7b979e9c6f28c32cb88c973a94869"
dependencies = [
"proc-macro2",
"quote",
2023-05-09 18:44:27 +00:00
"syn 2.0.15",
"wasm-bindgen-backend",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-shared"
2023-05-09 18:44:27 +00:00
version = "0.2.85"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-09 18:44:27 +00:00
checksum = "a901d592cafaa4d711bc324edfaff879ac700b19c3dfd60058d2b445be2691eb"
[[package]]
name = "web-sys"
2023-05-09 18:44:27 +00:00
version = "0.3.62"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-09 18:44:27 +00:00
checksum = "16b5f940c7edfdc6d12126d98c9ef4d1b3d470011c47c76a6581df47ad9ba721"
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"
version = "0.22.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b6c71e40d7d2c34a5106301fb632274ca37242cd0c9d3e64dbece371a40a2d87"
dependencies = [
2022-08-03 10:16:27 +00:00
"webpki",
]
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-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
2022-11-04 22:11:47 +00:00
[[package]]
name = "windows-sys"
version = "0.42.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7"
dependencies = [
2023-05-09 18:44:27 +00:00
"windows_aarch64_gnullvm 0.42.2",
"windows_aarch64_msvc 0.42.2",
"windows_i686_gnu 0.42.2",
"windows_i686_msvc 0.42.2",
"windows_x86_64_gnu 0.42.2",
"windows_x86_64_gnullvm 0.42.2",
"windows_x86_64_msvc 0.42.2",
]
2022-11-04 22:11:47 +00:00
[[package]]
name = "windows-sys"
version = "0.45.0"
2022-11-04 22:11:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
dependencies = [
2023-05-09 18:44:27 +00:00
"windows-targets 0.42.2",
]
[[package]]
name = "windows-sys"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
dependencies = [
"windows-targets 0.48.0",
]
2022-11-04 22:11:47 +00:00
[[package]]
name = "windows-targets"
version = "0.42.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
dependencies = [
2023-05-09 18:44:27 +00:00
"windows_aarch64_gnullvm 0.42.2",
"windows_aarch64_msvc 0.42.2",
"windows_i686_gnu 0.42.2",
"windows_i686_msvc 0.42.2",
"windows_x86_64_gnu 0.42.2",
"windows_x86_64_gnullvm 0.42.2",
"windows_x86_64_msvc 0.42.2",
]
[[package]]
name = "windows-targets"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7b1eb6f0cd7c80c79759c929114ef071b87354ce476d9d94271031c0497adfd5"
dependencies = [
"windows_aarch64_gnullvm 0.48.0",
"windows_aarch64_msvc 0.48.0",
"windows_i686_gnu 0.48.0",
"windows_i686_msvc 0.48.0",
"windows_x86_64_gnu 0.48.0",
"windows_x86_64_gnullvm 0.48.0",
"windows_x86_64_msvc 0.48.0",
]
2022-11-04 22:11:47 +00:00
[[package]]
name = "windows_aarch64_gnullvm"
version = "0.42.2"
2022-11-04 22:11:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
2022-11-04 22:11:47 +00:00
2023-05-09 18:44:27 +00:00
[[package]]
name = "windows_aarch64_gnullvm"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc"
[[package]]
name = "windows_aarch64_msvc"
version = "0.42.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
2023-05-09 18:44:27 +00:00
[[package]]
name = "windows_aarch64_msvc"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3"
2022-11-04 22:11:47 +00:00
[[package]]
name = "windows_i686_gnu"
version = "0.42.2"
2022-11-04 22:11:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
2022-11-04 22:11:47 +00:00
2023-05-09 18:44:27 +00:00
[[package]]
name = "windows_i686_gnu"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241"
[[package]]
name = "windows_i686_msvc"
version = "0.42.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
2022-11-04 22:11:47 +00:00
2023-05-09 18:44:27 +00:00
[[package]]
name = "windows_i686_msvc"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00"
[[package]]
name = "windows_x86_64_gnu"
version = "0.42.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
2022-11-04 22:11:47 +00:00
2023-05-09 18:44:27 +00:00
[[package]]
name = "windows_x86_64_gnu"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1"
2022-11-04 22:11:47 +00:00
[[package]]
name = "windows_x86_64_gnullvm"
version = "0.42.2"
2022-11-04 22:11:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
2022-11-04 22:11:47 +00:00
2023-05-09 18:44:27 +00:00
[[package]]
name = "windows_x86_64_gnullvm"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953"
[[package]]
name = "windows_x86_64_msvc"
version = "0.42.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
2023-05-09 18:44:27 +00:00
[[package]]
name = "windows_x86_64_msvc"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a"
2022-11-04 22:11:47 +00:00
[[package]]
name = "winnow"
2023-05-09 18:44:27 +00:00
version = "0.4.6"
2022-11-04 22:11:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-09 18:44:27 +00:00
checksum = "61de7bac303dc551fe038e2b3cef0f571087a47571ea6e79a87692ac99b99699"
dependencies = [
"memchr",
]
2022-11-04 22:11:47 +00:00
2019-01-19 20:42:54 +00:00
[[package]]
name = "winreg"
version = "0.10.1"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d"
2019-01-19 20:42:54 +00:00
dependencies = [
2020-11-09 21:38:29 +00:00
"winapi",
]