hickory-dns/Cargo.lock

2410 lines
58 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"
2023-05-31 18:26:59 +00:00
version = "0.8.3"
2020-10-24 20:35:22 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-31 18:26:59 +00:00
checksum = "2c99f64d1e06488f620f932677e24bc6e2897582980441ae90a671415bd7ec2f"
dependencies = [
2023-05-31 18:26:59 +00:00
"cfg-if",
"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-31 18:26:59 +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-31 18:26:59 +00:00
checksum = "67fc08ce920c31afb70f013dcce1bfc3a3195de6a228474e45e1f145b36f8d04"
2019-01-19 20:42:54 +00:00
dependencies = [
"memchr",
2019-01-19 20:42:54 +00:00
]
2023-05-31 18:26:59 +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",
]
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-31 18:26:59 +00:00
version = "1.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-31 18:26:59 +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-31 18:26:59 +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-31 18:26:59 +00:00
version = "1.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-31 18:26:59 +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-31 18:26:59 +00:00
"rustix",
"signal-hook",
2023-05-31 18:26:59 +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-31 18:26:59 +00:00
"syn 2.0.18",
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-06-02 15:33:57 +00:00
version = "0.23.0-alpha.3"
2020-04-10 21:57:29 +00:00
dependencies = [
"async-std",
"async-trait",
"futures-io",
"futures-util",
"pin-utils",
2023-05-12 17:03:02 +00:00
"socket2 0.5.3",
"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-31 18:26:59 +00:00
"syn 2.0.18",
]
[[package]]
name = "atomic-waker"
2023-05-31 18:26:59 +00:00
version = "1.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-31 18:26:59 +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"
2023-05-31 18:26:59 +00:00
version = "0.21.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-31 18:26:59 +00:00
checksum = "604178f6c5c21f02dc555784810edfb88d34ac2c73b2eae109655649ee73ce3d"
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"
2023-05-31 18:26:59 +00:00
version = "2.3.1"
2023-05-09 20:56:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-31 18:26:59 +00:00
checksum = "6776fc96284a0bb647b615056fc496d1fe1644a7ab01829818a6d91cae888b84"
2023-05-09 20:56:23 +00:00
2020-06-19 17:04:04 +00:00
[[package]]
name = "blocking"
2023-05-31 18:26:59 +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-31 18:26:59 +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-31 18:26:59 +00:00
"log",
2020-06-19 17:04:04 +00:00
]
[[package]]
name = "bumpalo"
2023-05-31 18:26:59 +00:00
version = "3.13.0"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-31 18:26:59 +00:00
checksum = "a3e2c3daef883ecc1b5d58c15adae93470a91d425f3532ba1695849656af3fc1"
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"
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-31 18:26:59 +00:00
version = "4.3.0"
2023-05-09 18:44:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-31 18:26:59 +00:00
checksum = "93aae7a4192245f70fe75dd9157fc7b4a5bf53e88d30bd4396f7d8f9284d5acc"
2023-05-09 18:44:27 +00:00
dependencies = [
2023-05-31 18:26:59 +00:00
"clap_builder",
2023-05-12 17:03:02 +00:00
"clap_derive",
2023-05-31 18:26:59 +00:00
"once_cell",
]
[[package]]
name = "clap_builder"
version = "4.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4f423e341edefb78c9caba2d9c7f7687d0e72e89df3ce3394554754393ac3990"
dependencies = [
"anstream",
"anstyle",
"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-31 18:26:59 +00:00
version = "4.3.0"
2022-01-16 17:01:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-31 18:26:59 +00:00
checksum = "191d9573962933b4027f932c600cd252ce27a8ad5979418fe78e43c07996f27b"
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-31 18:26:59 +00:00
"syn 2.0.18",
2022-01-16 17:01:28 +00:00
]
2022-08-03 10:16:27 +00:00
[[package]]
name = "clap_lex"
2023-05-31 18:26:59 +00:00
version = "0.5.0"
2023-05-09 18:44:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-31 18:26:59 +00:00
checksum = "2da6da31387c7e4ef160ffab6d5e7f00c42626fe39aea70a7b0f1773f7dd6c1b"
[[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-31 18:26:59 +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-31 18:26:59 +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"
2023-05-31 18:26:59 +00:00
version = "0.15.7"
2020-09-17 19:33:11 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-31 18:26:59 +00:00
checksum = "c926e00cc70edefdc64d3a5ff31cc65bb97a3460097762bd23afb4d8145fccf8"
2020-09-17 19:33:11 +00:00
dependencies = [
"encode_unicode",
"lazy_static",
2020-09-17 19:33:11 +00:00
"libc",
"unicode-width",
2023-05-31 18:26:59 +00:00
"windows-sys 0.45.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-31 18:26:59 +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-31 18:26:59 +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
]
2019-01-19 20:42:54 +00:00
[[package]]
name = "data-encoding"
2023-05-31 18:26:59 +00:00
version = "2.4.0"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-31 18:26:59 +00:00
checksum = "c2e66c9d817f1720209181c316d28635c050fa304f9c79e47a520882661b7308"
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.6.0"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5ffccbb6966c05b32ef8fbac435df276c4ae4d3dc55a8cd0eb9745e6c12f546a"
2019-01-19 20:42:54 +00:00
dependencies = [
2022-02-26 00:05:17 +00:00
"heck",
"proc-macro2",
"quote",
2023-05-31 18:26:59 +00:00
"syn 2.0.18",
2023-05-12 17:03:02 +00:00
]
[[package]]
name = "errno"
2023-05-31 18:26:59 +00:00
version = "0.3.1"
2023-05-12 17:03:02 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-31 18:26:59 +00:00
checksum = "4bcfec3a70f97c962c307b2d2c56e358cf1d00b558d74262b5f929ee8cc7e73a"
2023-05-12 17:03:02 +00:00
dependencies = [
"errno-dragonfly",
"libc",
2023-05-31 18:26:59 +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-31 18:26:59 +00:00
version = "0.3.28"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-31 18:26:59 +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-31 18:26:59 +00:00
version = "0.3.28"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-31 18:26:59 +00:00
checksum = "955518d47e09b25bbebc7a18df10b81f0c766eaf4c4f1cccef2fca5f2a4fb5f2"
dependencies = [
"futures-core",
"futures-sink",
]
[[package]]
name = "futures-core"
2023-05-31 18:26:59 +00:00
version = "0.3.28"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-31 18:26:59 +00:00
checksum = "4bca583b7e26f571124fe5b7561d49cb2868d79116cfa0eefce955557c6fee8c"
[[package]]
name = "futures-executor"
2023-05-31 18:26:59 +00:00
version = "0.3.28"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-31 18:26:59 +00:00
checksum = "ccecee823288125bd88b4d7f565c9e58e41858e47ab72e8ea2d64e93624386e0"
dependencies = [
"futures-core",
"futures-task",
"futures-util",
"num_cpus",
]
[[package]]
name = "futures-io"
2023-05-31 18:26:59 +00:00
version = "0.3.28"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-31 18:26:59 +00:00
checksum = "4fff74096e71ed47f8e023204cfd0aa1289cd54ae5430a9523be060cdb849964"
[[package]]
name = "futures-lite"
2023-05-31 18:26:59 +00:00
version = "1.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-31 18:26:59 +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-31 18:26:59 +00:00
version = "0.3.28"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-31 18:26:59 +00:00
checksum = "f43be4fe21a13b9781a69afa4985b0f6ee0e1afab2c6f454a8cf30e2b2237b6e"
[[package]]
name = "futures-task"
2023-05-31 18:26:59 +00:00
version = "0.3.28"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-31 18:26:59 +00:00
checksum = "76d3d132be6c0e6aa1534069c705a74a5997a356c0dc2f86a47765e5617c5b65"
[[package]]
name = "futures-util"
2023-05-31 18:26:59 +00:00
version = "0.3.28"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-31 18:26:59 +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-31 18:26:59 +00:00
version = "0.2.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-31 18:26:59 +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"
2023-05-31 18:26:59 +00:00
version = "0.3.19"
2020-12-25 02:49:11 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-31 18:26:59 +00:00
checksum = "d357c7ae988e7d2182f7d7871d0b963962420b0678b0997ce7de72001aeab782"
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"
2023-05-31 18:26:59 +00:00
[[package]]
name = "hashbrown"
version = "0.13.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e"
2020-10-24 20:35:22 +00:00
dependencies = [
"ahash",
]
[[package]]
name = "hashlink"
2023-05-31 18:26:59 +00:00
version = "0.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-31 18:26:59 +00:00
checksum = "0761a1b9491c4f2e3d66aa0f62d0fba0af9a0e2852e4d48ea506632a4b56e6aa"
2020-10-24 20:35:22 +00:00
dependencies = [
2023-05-31 18:26:59 +00:00
"hashbrown 0.13.2",
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",
2023-05-31 18:26:59 +00:00
"hashbrown 0.12.3",
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-31 18:26:59 +00:00
version = "1.0.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-31 18:26:59 +00:00
checksum = "eae7b9aee968036d54dce06cebaefd919e4472e753296daccd6d344e3e2df0c2"
dependencies = [
"hermit-abi 0.3.1",
"libc",
2023-05-31 18:26:59 +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-31 18:26:59 +00:00
version = "2.7.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-31 18:26:59 +00:00
checksum = "12b6ee2129af8d4fb011108c73d99a1b83a85977f23b82460c0ae2e25bb4b57f"
[[package]]
name = "is-terminal"
2023-05-31 18:26:59 +00:00
version = "0.4.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-31 18:26:59 +00:00
checksum = "adcf93614601c8129ddf72e2d5633df827ba6551541c6d8c59520a371475be1f"
dependencies = [
"hermit-abi 0.3.1",
"io-lifetimes",
2023-05-31 18:26:59 +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
[[package]]
name = "js-sys"
2023-05-31 18:26:59 +00:00
version = "0.3.63"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-31 18:26:59 +00:00
checksum = "2f37a4a5928311ac501dee68b3c7613a1037d0edb30c8e5427bd832d55d1b790"
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
[[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-31 18:26:59 +00:00
version = "0.3.8"
2023-05-12 17:03:02 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-31 18:26:59 +00:00
checksum = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519"
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"
2023-05-29 17:34:22 +00:00
version = "0.4.18"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-29 17:34:22 +00:00
checksum = "518ef76f2f87365916b142844c16d8fefd85039bc5699050210a7778ee1cd1de"
2019-01-19 20:42:54 +00:00
dependencies = [
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"
2023-05-31 18:26:59 +00:00
version = "0.8.8"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-31 18:26:59 +00:00
checksum = "927a765cd3fc26206e66b296465fa9d3e5ab003e651c1b3c060e7956d96b19d2"
2019-01-19 20:42:54 +00:00
dependencies = [
"libc",
2022-08-03 10:16:27 +00:00
"wasi",
2023-05-31 18:26:59 +00:00
"windows-sys 0.48.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"
2023-05-31 18:26:59 +00:00
version = "1.17.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-31 18:26:59 +00:00
checksum = "9670a07f94779e00908f3e686eab508878ebb390ba6e604d3a284c00e8d0487b"
2019-01-19 20:42:54 +00:00
[[package]]
name = "openssl"
2023-05-31 18:26:59 +00:00
version = "0.10.53"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-31 18:26:59 +00:00
checksum = "12df40a956736488b7b44fe79fe12d4f245bb5b3f5a1f6095e499760015be392"
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-31 18:26:59 +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-31 18:26:59 +00:00
checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
2022-08-03 10:16:27 +00:00
dependencies = [
"proc-macro2",
"quote",
2023-05-31 18:26:59 +00:00
"syn 2.0.18",
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-31 18:26:59 +00:00
version = "0.9.88"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-31 18:26:59 +00:00
checksum = "c2ce0f250f34a308dcfdbb351f511359857d4ed2134ba715a4eadd46e1ffd617"
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-31 18:26:59 +00:00
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-31 18:26:59 +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-31 18:26:59 +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-31 18:26:59 +00:00
version = "0.3.27"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-31 18:26:59 +00:00
checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964"
2019-01-19 20:42:54 +00:00
[[package]]
name = "polling"
2023-05-31 18:26:59 +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-31 18:26:59 +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-31 18:26:59 +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-31 18:26:59 +00:00
version = "1.0.59"
2019-09-06 14:00:02 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-31 18:26:59 +00:00
checksum = "6aeca18b86b413c660b781aa319e4e2648a3e6f9eadc9b47e9038e6fe9f3451b"
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.10.1"
2022-03-28 17:51:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "21252f1c0fc131f1b69182db8f34837e8a69737b8251dff75636a9be0518c324"
2022-03-28 17:51:47 +00:00
dependencies = [
"bytes",
2022-11-04 22:11:47 +00:00
"pin-project-lite",
"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",
]
[[package]]
name = "quinn-proto"
version = "0.10.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "85af4ed6ee5a89f26a26086e9089a6643650544c025158449a3626ebf72884b3"
dependencies = [
"bytes",
"rand",
"ring",
2022-11-04 22:11:47 +00:00
"rustc-hash",
"rustls",
"slab",
"thiserror",
"tinyvec",
"tracing",
]
[[package]]
name = "quinn-udp"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6df19e284d93757a9fb91d63672f7741b129246a669db09d1c0063071debc0c0"
dependencies = [
"bytes",
"libc",
"socket2 0.5.3",
"tracing",
"windows-sys 0.48.0",
]
2019-09-06 14:00:02 +00:00
[[package]]
name = "quote"
2023-05-31 18:26:59 +00:00
version = "1.0.28"
2019-09-06 14:00:02 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-31 18:26:59 +00:00
checksum = "1b9ab9c7eadfd8df19006f1cf1a4aed13540ed5cbc047010ece5826e10825488"
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-31 18:26:59 +00:00
[[package]]
name = "redox_syscall"
version = "0.3.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29"
dependencies = [
"bitflags 1.3.2",
]
2019-01-19 20:42:54 +00:00
[[package]]
name = "regex"
2023-05-31 18:26:59 +00:00
version = "1.8.3"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-31 18:26:59 +00:00
checksum = "81ca098a9821bd52d6b24fd8b10bd081f47d39c22778cafaa75a2857a62c6390"
2019-01-19 20:42:54 +00:00
dependencies = [
"aho-corasick",
"memchr",
2023-05-31 18:26:59 +00:00
"regex-syntax 0.7.2",
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-31 18:26:59 +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-31 18:26:59 +00:00
[[package]]
name = "regex-syntax"
version = "0.7.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "436b050e76ed2903236f032a59761c1eb99e1b0aead2c257922771dab1fc8c78"
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-31 18:26:59 +00:00
"bitflags 2.3.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-31 18:26:59 +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-31 18:26:59 +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-31 18:26:59 +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-31 18:26:59 +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-31 18:26:59 +00:00
"errno",
2023-03-27 13:43:33 +00:00
"io-lifetimes",
"libc",
2023-05-31 18:26:59 +00:00
"linux-raw-sys",
"windows-sys 0.48.0",
]
2019-01-19 20:42:54 +00:00
[[package]]
name = "rustls"
version = "0.21.1"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c911ba11bc8433e811ce56fde130ccf32f5127cab0e0194e9c68c5a5b671791e"
2019-01-19 20:42:54 +00:00
dependencies = [
"log",
"ring",
"rustls-webpki",
"sct",
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 = "rustls-webpki"
version = "0.100.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d6207cd5ed3d8dca7816f8f3725513a34609c0c765bf652b8c3cb4cfd87db46b"
dependencies = [
"ring",
"untrusted",
]
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"
2023-05-31 18:26:59 +00:00
version = "2.9.1"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-31 18:26:59 +00:00
checksum = "1fc758eb7bffce5b308734e9b0c1468893cae9ff70ebf13e7090be8dcbcc83a8"
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"
2023-05-31 18:26:59 +00:00
version = "2.9.0"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-31 18:26:59 +00:00
checksum = "f51d0c0d83bec45f16480d0ce0058397a69e48fcdc52d1dc8855fb68acbd31a7"
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-31 18:26:59 +00:00
version = "1.0.163"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-31 18:26:59 +00:00
checksum = "2113ab51b87a539ae008b5c6c02dc020ffa39afd2d83cffcb3f4eb2722cebec2"
dependencies = [
"serde_derive",
]
2019-01-19 20:42:54 +00:00
[[package]]
name = "serde_derive"
2023-05-31 18:26:59 +00:00
version = "1.0.163"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-31 18:26:59 +00:00
checksum = "8c805777e3930c8883389c602315a24224bcc738b63905ef87cd1420353ea93e"
2019-01-19 20:42:54 +00:00
dependencies = [
"proc-macro2",
"quote",
2023-05-31 18:26:59 +00:00
"syn 2.0.18",
2019-01-19 20:42:54 +00:00
]
[[package]]
name = "serde_spanned"
2023-05-31 18:26:59 +00:00
version = "0.6.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-31 18:26:59 +00:00
checksum = "93107647184f6027e3b7dcb2e11034cf95ffa1e3a682c67951963ac69c1c007d"
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"
2023-05-12 17:03:02 +00:00
version = "0.5.3"
2023-05-09 18:44:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-12 17:03:02 +00:00
checksum = "2538b18701741680e0322a2302176d3253a35388e2e62f172f64f4f16605f877"
2023-05-09 18:44:27 +00:00
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-31 18:26:59 +00:00
version = "2.0.18"
2019-09-06 14:00:02 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-31 18:26:59 +00:00
checksum = "32d41677bcbe24c20c52e7c70b0d8db04134c5d1066bf98662e2871ad200ea3e"
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-31 18:26:59 +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-31 18:26:59 +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-31 18:26:59 +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-31 18:26:59 +00:00
"syn 2.0.18",
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-31 18:26:59 +00:00
version = "0.3.21"
2019-01-19 20:42:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-31 18:26:59 +00:00
checksum = "8f3403384eaacbca9923fa06940178ac13e4edb725486d70e8e15881d0c836cc"
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-31 18:26:59 +00:00
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-31 18:26:59 +00:00
checksum = "7300fbefb4dadc1af235a9cef3737cea692a9d97e1b9cbcd4ebdae6f8868e6fb"
2021-10-24 15:50:40 +00:00
[[package]]
name = "time-macros"
2023-05-31 18:26:59 +00:00
version = "0.2.9"
2021-10-24 15:50:40 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-31 18:26:59 +00:00
checksum = "372950940a5f07bf38dbe211d7283c9e6d7327df53794992d293e534c733d09b"
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-31 18:26:59 +00:00
version = "1.28.2"
2020-11-09 21:38:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-31 18:26:59 +00:00
checksum = "94d7b1cfd2aa4011f2de74c2c4c63665e27a71006b0a192dcd2710272e73dfa2"
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",
"windows-sys 0.48.0",
2020-09-17 19:33:11 +00:00
]
[[package]]
name = "tokio-macros"
version = "2.1.0"
2020-09-17 19:33:11 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "630bdcf245f78637c13ec01ffae6187cca34625e8c63150d424b59e55af2675e"
2020-09-17 19:33:11 +00:00
dependencies = [
"proc-macro2",
"quote",
2023-05-31 18:26:59 +00:00
"syn 2.0.18",
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"
version = "0.24.0"
2020-11-10 00:52:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e0d409377ff5b1e3ca6437aa86c1eb7d40c134bfec254e44c830defa92669db5"
2020-11-10 00:52:27 +00:00
dependencies = [
"rustls",
2020-11-10 19:24:15 +00:00
"tokio",
2020-11-10 00:52:27 +00:00
]
[[package]]
name = "tokio-util"
2023-05-31 18:26:59 +00:00
version = "0.7.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-31 18:26:59 +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"
2023-05-31 18:26:59 +00:00
version = "0.7.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-31 18:26:59 +00:00
checksum = "d6135d499e69981f9ff0ef2167955a5333c35e36f6937d382974566b3d5b94ec"
dependencies = [
"serde",
"serde_spanned",
"toml_datetime",
"toml_edit",
]
[[package]]
name = "toml_datetime"
2023-05-31 18:26:59 +00:00
version = "0.6.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-31 18:26:59 +00:00
checksum = "5a76a9312f5ba4c2dec6b9161fdf25d87ad8a09256ccea5a556fef03c706a10f"
dependencies = [
"serde",
]
[[package]]
name = "toml_edit"
2023-05-31 18:26:59 +00:00
version = "0.19.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-31 18:26:59 +00:00
checksum = "2380d56e8670370eee6566b0bfd4265f65b3f432e8c6d85623f728d4fa31f739"
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",
"log",
2020-12-25 02:49:11 +00:00
"pin-project-lite",
"tracing-attributes",
"tracing-core",
]
[[package]]
name = "tracing-attributes"
2023-05-31 18:26:59 +00:00
version = "0.1.24"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-31 18:26:59 +00:00
checksum = "0f57e3ca2a01450b1a921183a9c9cbfda207fd822cef4ccb00a65402cbba7a74"
dependencies = [
"proc-macro2",
"quote",
2023-05-31 18:26:59 +00:00
"syn 2.0.18",
]
[[package]]
name = "tracing-core"
2023-05-31 18:26:59 +00:00
version = "0.1.31"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-31 18:26:59 +00:00
checksum = "0955b8137a1df6f1a2e9a37d8a6656291ff0297c1a97c24e0d8425fe2312f79a"
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-31 18:26:59 +00:00
version = "0.3.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-31 18:26:59 +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-06-02 15:33:57 +00:00
version = "0.23.0-alpha.3"
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-06-02 15:33:57 +00:00
version = "0.23.0-alpha.3"
dependencies = [
"cfg-if",
"data-encoding",
"futures",
"futures-channel",
"futures-util",
2023-05-24 15:38:52 +00:00
"once_cell",
"openssl",
"radix_trie",
2021-02-18 10:09:36 +00:00
"rand",
"ring",
"rustls",
"rustls-webpki",
"serde",
"thiserror",
2020-11-10 19:24:15 +00:00
"tokio",
"tracing",
"tracing-subscriber",
"trust-dns-proto",
2019-01-19 20:42:54 +00:00
]
[[package]]
name = "trust-dns-compatibility"
2023-06-02 15:33:57 +00:00
version = "0.23.0-alpha.3"
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-06-02 15:33:57 +00:00
version = "0.23.0-alpha.3"
dependencies = [
"async-trait",
"futures",
2023-05-24 15:38:52 +00:00
"once_cell",
"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-06-02 15:33:57 +00:00
version = "0.23.0-alpha.3"
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",
2021-04-19 20:25:21 +00:00
"native-tls",
2023-05-24 15:38:52 +00:00
"once_cell",
"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-11-04 22:11:47 +00:00
"rustls-pemfile",
"rustls-webpki",
"serde",
"smallvec",
2023-05-12 17:03:02 +00:00
"socket2 0.5.3",
"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-roots",
2019-01-19 20:42:54 +00:00
]
2022-02-13 18:02:17 +00:00
[[package]]
name = "trust-dns-recursor"
2023-06-02 15:33:57 +00:00
version = "0.23.0-alpha.3"
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-06-02 15:33:57 +00:00
version = "0.23.0-alpha.3"
dependencies = [
"cfg-if",
"futures-executor",
"futures-util",
"ipconfig",
"lru-cache",
2023-05-24 15:38:52 +00:00
"once_cell",
"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-06-02 15:33:57 +00:00
version = "0.23.0-alpha.3"
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-06-02 15:33:57 +00:00
version = "0.23.0-alpha.3"
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",
"rustls-webpki",
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-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"
2023-05-31 18:26:59 +00:00
version = "1.0.9"
2022-08-03 10:16:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-31 18:26:59 +00:00
checksum = "b15811caf2415fb889178633e7724bad2509101cde276048e013b9def5e51fa0"
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-31 18:26:59 +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"
2023-05-29 17:34:22 +00:00
version = "1.4.0"
2021-02-18 10:09:36 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-29 17:34:22 +00:00
checksum = "a4d330786735ea358f3bc09eea4caa098569c1c93f342d9aca0514915022fe7e"
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-31 18:26:59 +00:00
version = "0.2.86"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-31 18:26:59 +00:00
checksum = "5bba0e8cb82ba49ff4e229459ff22a191bbe9a1cb3a341610c9c33efc27ddf73"
dependencies = [
"cfg-if",
"wasm-bindgen-macro",
]
[[package]]
name = "wasm-bindgen-backend"
2023-05-31 18:26:59 +00:00
version = "0.2.86"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-31 18:26:59 +00:00
checksum = "19b04bc93f9d6bdee709f6bd2118f57dd6679cf1176a1af464fca3ab0d66d8fb"
dependencies = [
"bumpalo",
"log",
2022-08-03 10:16:27 +00:00
"once_cell",
"proc-macro2",
"quote",
2023-05-31 18:26:59 +00:00
"syn 2.0.18",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-futures"
2023-05-31 18:26:59 +00:00
version = "0.4.36"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-31 18:26:59 +00:00
checksum = "2d1985d03709c53167ce907ff394f5316aa22cb4e12761295c5dc57dacb6297e"
dependencies = [
"cfg-if",
"js-sys",
"wasm-bindgen",
"web-sys",
]
[[package]]
name = "wasm-bindgen-macro"
2023-05-31 18:26:59 +00:00
version = "0.2.86"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-31 18:26:59 +00:00
checksum = "14d6b024f1a526bb0234f52840389927257beb670610081360e5a03c5df9c258"
dependencies = [
"quote",
"wasm-bindgen-macro-support",
]
[[package]]
name = "wasm-bindgen-macro-support"
2023-05-31 18:26:59 +00:00
version = "0.2.86"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-31 18:26:59 +00:00
checksum = "e128beba882dd1eb6200e1dc92ae6c5dbaa4311aa7bb211ca035779e5efc39f8"
dependencies = [
"proc-macro2",
"quote",
2023-05-31 18:26:59 +00:00
"syn 2.0.18",
"wasm-bindgen-backend",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-shared"
2023-05-31 18:26:59 +00:00
version = "0.2.86"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-31 18:26:59 +00:00
checksum = "ed9d5b4305409d1fc9482fee2d7f9bcbf24b3972bf59817ef757e23982242a93"
[[package]]
name = "web-sys"
2023-05-31 18:26:59 +00:00
version = "0.3.63"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-31 18:26:59 +00:00
checksum = "3bdd9ef4e984da1187bf8110c5cf5b845fbc87a23602cdf912386a76fcd3a7c2"
dependencies = [
"js-sys",
"wasm-bindgen",
]
2019-01-19 20:42:54 +00:00
[[package]]
name = "webpki-roots"
2023-05-31 18:26:59 +00:00
version = "0.23.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-31 18:26:59 +00:00
checksum = "b03058f88386e5ff5310d9111d53f48b17d732b401aeb83a8d5190f2ac459338"
dependencies = [
"rustls-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-31 18:26:59 +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-31 18:26:59 +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",
]