dnstp/Cargo.lock

844 lines
21 KiB
Plaintext
Raw Normal View History

2024-01-28 19:30:59 +00:00
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
[[package]]
name = "aead"
version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0"
dependencies = [
"crypto-common",
"generic-array",
]
[[package]]
name = "aes"
2024-07-28 10:54:01 +01:00
version = "0.8.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-28 10:54:01 +01:00
checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0"
dependencies = [
"cfg-if",
"cipher",
"cpufeatures",
]
[[package]]
name = "aes-gcm-siv"
version = "0.11.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ae0784134ba9375416d469ec31e7c5f9fa94405049cf08c5ce5b4698be673e0d"
dependencies = [
"aead",
"aes",
"cipher",
"ctr",
"polyval",
"subtle",
"zeroize",
]
2024-01-28 19:30:59 +00:00
[[package]]
name = "anstream"
2024-07-28 10:54:01 +01:00
version = "0.6.15"
2024-01-28 19:30:59 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-28 10:54:01 +01:00
checksum = "64e15c1ab1f89faffbf04a634d5e1962e9074f2741eef6d97f3c4e322426d526"
2024-01-28 19:30:59 +00:00
dependencies = [
"anstyle",
"anstyle-parse",
"anstyle-query",
"anstyle-wincon",
"colorchoice",
2024-07-28 10:54:01 +01:00
"is_terminal_polyfill",
2024-01-28 19:30:59 +00:00
"utf8parse",
]
[[package]]
name = "anstyle"
2024-07-28 10:54:01 +01:00
version = "1.0.8"
2024-01-28 19:30:59 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-28 10:54:01 +01:00
checksum = "1bec1de6f59aedf83baf9ff929c98f2ad654b97c9510f4e70cf6f661d49fd5b1"
2024-01-28 19:30:59 +00:00
[[package]]
name = "anstyle-parse"
2024-07-28 10:54:01 +01:00
version = "0.2.5"
2024-01-28 19:30:59 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-28 10:54:01 +01:00
checksum = "eb47de1e80c2b463c735db5b217a0ddc39d612e7ac9e2e96a5aed1f57616c1cb"
2024-01-28 19:30:59 +00:00
dependencies = [
"utf8parse",
]
[[package]]
name = "anstyle-query"
2024-07-28 10:54:01 +01:00
version = "1.1.1"
2024-01-28 19:30:59 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-28 10:54:01 +01:00
checksum = "6d36fc52c7f6c869915e99412912f22093507da8d9e942ceaf66fe4b7c14422a"
2024-01-28 19:30:59 +00:00
dependencies = [
"windows-sys",
]
[[package]]
name = "anstyle-wincon"
2024-07-28 10:54:01 +01:00
version = "3.0.4"
2024-01-28 19:30:59 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-28 10:54:01 +01:00
checksum = "5bf74e1b6e971609db8ca7a9ce79fd5768ab6ae46441c572e46cf596f59e57f8"
2024-01-28 19:30:59 +00:00
dependencies = [
"anstyle",
"windows-sys",
]
[[package]]
name = "base16ct"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf"
2024-07-29 17:07:49 +01:00
[[package]]
name = "base64"
version = "0.22.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
[[package]]
name = "base64ct"
version = "1.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b"
[[package]]
name = "block-buffer"
version = "0.10.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
dependencies = [
"generic-array",
]
[[package]]
name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
[[package]]
name = "cipher"
version = "0.4.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"
dependencies = [
"crypto-common",
"inout",
]
2024-01-28 19:30:59 +00:00
[[package]]
name = "clap"
2024-07-28 10:54:01 +01:00
version = "4.5.11"
2024-01-28 19:30:59 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-28 10:54:01 +01:00
checksum = "35723e6a11662c2afb578bcf0b88bf6ea8e21282a953428f240574fcc3a2b5b3"
2024-01-28 19:30:59 +00:00
dependencies = [
"clap_builder",
"clap_derive",
]
[[package]]
name = "clap_builder"
2024-07-28 10:54:01 +01:00
version = "4.5.11"
2024-01-28 19:30:59 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-28 10:54:01 +01:00
checksum = "49eb96cbfa7cfa35017b7cd548c75b14c3118c98b423041d70562665e07fb0fa"
2024-01-28 19:30:59 +00:00
dependencies = [
"anstream",
"anstyle",
"clap_lex",
"strsim",
]
[[package]]
name = "clap_derive"
2024-07-28 10:54:01 +01:00
version = "4.5.11"
2024-01-28 19:30:59 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-28 10:54:01 +01:00
checksum = "5d029b67f89d30bbb547c89fd5161293c0aec155fc691d7924b64550662db93e"
2024-01-28 19:30:59 +00:00
dependencies = [
"heck",
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "clap_lex"
2024-07-28 10:54:01 +01:00
version = "0.7.2"
2024-01-28 19:30:59 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-28 10:54:01 +01:00
checksum = "1462739cb27611015575c0c11df5df7601141071f07518d56fcc1be504cbec97"
2024-01-28 19:30:59 +00:00
[[package]]
name = "colorchoice"
2024-07-28 10:54:01 +01:00
version = "1.0.2"
2024-01-28 19:30:59 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-28 10:54:01 +01:00
checksum = "d3fd119d74b830634cea2a0f58bbd0d54540518a14397557951e79340abc28c0"
2024-01-28 19:30:59 +00:00
[[package]]
name = "const-oid"
version = "0.9.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8"
[[package]]
name = "cpufeatures"
version = "0.2.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "53fe5e26ff1b7aef8bca9c6080520cfb8d9333c7568e1829cef191a9723e5504"
dependencies = [
"libc",
]
[[package]]
name = "crypto-bigint"
version = "0.5.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76"
dependencies = [
"generic-array",
"rand_core",
"subtle",
"zeroize",
]
[[package]]
name = "crypto-common"
version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
dependencies = [
"generic-array",
"rand_core",
"typenum",
]
[[package]]
name = "ctr"
version = "0.9.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0369ee1ad671834580515889b80f2ea915f23b8be8d0daa4bbaf2ac5c7590835"
dependencies = [
"cipher",
]
[[package]]
name = "der"
2024-07-28 10:54:01 +01:00
version = "0.7.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-28 10:54:01 +01:00
checksum = "f55bf8e7b65898637379c1b74eb1551107c8294ed26d855ceb9fd1a09cfc9bc0"
dependencies = [
"const-oid",
"pem-rfc7468",
"zeroize",
]
2024-01-28 19:30:59 +00:00
[[package]]
name = "deranged"
version = "0.3.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4"
dependencies = [
"powerfmt",
]
[[package]]
name = "digest"
version = "0.10.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
dependencies = [
"block-buffer",
"const-oid",
"crypto-common",
"subtle",
]
2024-01-28 19:30:59 +00:00
[[package]]
name = "dnstp"
2024-07-29 21:51:30 +01:00
version = "0.1.2"
2024-01-28 19:30:59 +00:00
dependencies = [
"clap",
"dnstplib",
"log",
"simplelog",
]
[[package]]
name = "dnstp-client"
2024-07-29 21:51:30 +01:00
version = "0.1.2"
2024-01-28 19:30:59 +00:00
dependencies = [
2024-07-29 17:07:49 +01:00
"base64",
2024-01-28 19:30:59 +00:00
"clap",
"dnstplib",
"log",
"rand",
"simplelog",
2024-01-28 19:30:59 +00:00
]
[[package]]
name = "dnstplib"
2024-07-29 21:51:30 +01:00
version = "0.1.2"
dependencies = [
"aes-gcm-siv",
2024-07-29 17:07:49 +01:00
"base64",
"log",
"p256",
"rand_core",
2024-01-29 22:11:12 +00:00
"urlencoding",
]
2024-01-28 19:30:59 +00:00
[[package]]
name = "ecdsa"
version = "0.16.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ee27f32b5c5292967d2d4a9d7f1e0b0aed2c15daded5a60300e4abb9d8020bca"
dependencies = [
"der",
"digest",
"elliptic-curve",
"rfc6979",
"signature",
"spki",
]
[[package]]
name = "elliptic-curve"
version = "0.13.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b5e6043086bf7973472e0c7dff2142ea0b680d30e18d9cc40f267efbf222bd47"
dependencies = [
"base16ct",
"crypto-bigint",
"digest",
"ff",
"generic-array",
"group",
"hkdf",
"pem-rfc7468",
"pkcs8",
"rand_core",
"sec1",
"subtle",
"zeroize",
]
[[package]]
name = "ff"
version = "0.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ded41244b729663b1e574f1b4fb731469f69f79c17667b5d776b16cda0479449"
dependencies = [
"rand_core",
"subtle",
]
[[package]]
name = "generic-array"
version = "0.14.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
dependencies = [
"typenum",
"version_check",
"zeroize",
]
[[package]]
name = "getrandom"
2024-07-28 10:54:01 +01:00
version = "0.2.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-28 10:54:01 +01:00
checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7"
dependencies = [
"cfg-if",
"libc",
"wasi",
]
[[package]]
name = "group"
version = "0.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f0f9ef7462f7c099f518d754361858f86d8a07af53ba9af0fe635bbccb151a63"
dependencies = [
"ff",
"rand_core",
"subtle",
]
2024-01-28 19:30:59 +00:00
[[package]]
name = "heck"
2024-07-28 10:54:01 +01:00
version = "0.5.0"
2024-01-28 19:30:59 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-28 10:54:01 +01:00
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
2024-01-28 19:30:59 +00:00
[[package]]
name = "hkdf"
version = "0.12.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7"
dependencies = [
"hmac",
]
[[package]]
name = "hmac"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
dependencies = [
"digest",
]
[[package]]
name = "inout"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a0c10553d664a4d0bcff9f4215d0aac67a639cc68ef660840afe309b807bc9f5"
dependencies = [
"generic-array",
]
2024-07-28 10:54:01 +01:00
[[package]]
name = "is_terminal_polyfill"
version = "1.70.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf"
2024-01-28 19:30:59 +00:00
[[package]]
name = "itoa"
2024-07-28 10:54:01 +01:00
version = "1.0.11"
2024-01-28 19:30:59 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-28 10:54:01 +01:00
checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b"
2024-01-28 19:30:59 +00:00
[[package]]
name = "libc"
2024-07-28 10:54:01 +01:00
version = "0.2.155"
2024-01-28 19:30:59 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-28 10:54:01 +01:00
checksum = "97b3888a4aecf77e811145cadf6eef5901f4782c53886191b2f693f24761847c"
2024-01-28 19:30:59 +00:00
[[package]]
name = "log"
2024-07-28 10:54:01 +01:00
version = "0.4.22"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24"
[[package]]
name = "num-conv"
version = "0.1.0"
2024-01-28 19:30:59 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-28 10:54:01 +01:00
checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
2024-01-28 19:30:59 +00:00
[[package]]
name = "num_threads"
2024-07-28 10:54:01 +01:00
version = "0.1.7"
2024-01-28 19:30:59 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-28 10:54:01 +01:00
checksum = "5c7398b9c8b70908f6371f47ed36737907c87c52af34c268fed0bf0ceb92ead9"
2024-01-28 19:30:59 +00:00
dependencies = [
"libc",
]
[[package]]
name = "opaque-debug"
2024-07-28 10:54:01 +01:00
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-28 10:54:01 +01:00
checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381"
[[package]]
name = "p256"
version = "0.13.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c9863ad85fa8f4460f9c48cb909d38a0d689dba1f6f6988a5e3e0d31071bcd4b"
dependencies = [
"ecdsa",
"elliptic-curve",
"primeorder",
"sha2",
]
[[package]]
name = "pem-rfc7468"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412"
dependencies = [
"base64ct",
]
[[package]]
name = "pkcs8"
version = "0.10.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7"
dependencies = [
"der",
"spki",
]
[[package]]
name = "polyval"
2024-07-28 10:54:01 +01:00
version = "0.6.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-28 10:54:01 +01:00
checksum = "9d1fe60d06143b2430aa532c94cfe9e29783047f06c0d7fd359a9a51b729fa25"
dependencies = [
"cfg-if",
"cpufeatures",
"opaque-debug",
"universal-hash",
]
2024-01-28 19:30:59 +00:00
[[package]]
name = "powerfmt"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
[[package]]
name = "ppv-lite86"
version = "0.2.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
[[package]]
name = "primeorder"
version = "0.13.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "353e1ca18966c16d9deb1c69278edbc5f194139612772bd9537af60ac231e1e6"
dependencies = [
"elliptic-curve",
]
2024-01-28 19:30:59 +00:00
[[package]]
name = "proc-macro2"
2024-07-28 10:54:01 +01:00
version = "1.0.86"
2024-01-28 19:30:59 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-28 10:54:01 +01:00
checksum = "5e719e8df665df0d1c8fbfd238015744736151d4445ec0836b8e628aae103b77"
2024-01-28 19:30:59 +00:00
dependencies = [
"unicode-ident",
]
[[package]]
name = "quote"
2024-07-28 10:54:01 +01:00
version = "1.0.36"
2024-01-28 19:30:59 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-28 10:54:01 +01:00
checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7"
2024-01-28 19:30:59 +00:00
dependencies = [
"proc-macro2",
]
[[package]]
name = "rand"
version = "0.8.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
dependencies = [
"libc",
"rand_chacha",
"rand_core",
]
[[package]]
name = "rand_chacha"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
dependencies = [
"ppv-lite86",
"rand_core",
]
[[package]]
name = "rand_core"
version = "0.6.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
dependencies = [
"getrandom",
]
[[package]]
name = "rfc6979"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f8dd2a808d456c4a54e300a23e9f5a67e122c3024119acbfd73e3bf664491cb2"
dependencies = [
"hmac",
"subtle",
]
[[package]]
name = "sec1"
version = "0.7.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d3e97a565f76233a6003f9f5c54be1d9c5bdfa3eccfb189469f11ec4901c47dc"
dependencies = [
"base16ct",
"der",
"generic-array",
"pkcs8",
"subtle",
"zeroize",
]
2024-01-28 19:30:59 +00:00
[[package]]
name = "serde"
2024-07-28 10:54:01 +01:00
version = "1.0.204"
2024-01-28 19:30:59 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-28 10:54:01 +01:00
checksum = "bc76f558e0cbb2a839d37354c575f1dc3fdc6546b5be373ba43d95f231bf7c12"
2024-01-28 19:30:59 +00:00
dependencies = [
"serde_derive",
]
[[package]]
name = "serde_derive"
2024-07-28 10:54:01 +01:00
version = "1.0.204"
2024-01-28 19:30:59 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-28 10:54:01 +01:00
checksum = "e0cd7e117be63d3c3678776753929474f3b04a43a080c744d6b0ae2a8c28e222"
2024-01-28 19:30:59 +00:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "sha2"
version = "0.10.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8"
dependencies = [
"cfg-if",
"cpufeatures",
"digest",
]
[[package]]
name = "signature"
version = "2.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de"
dependencies = [
"digest",
"rand_core",
]
2024-01-28 19:30:59 +00:00
[[package]]
name = "simplelog"
2024-07-28 10:54:01 +01:00
version = "0.12.2"
2024-01-28 19:30:59 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-28 10:54:01 +01:00
checksum = "16257adbfaef1ee58b1363bdc0664c9b8e1e30aed86049635fb5f147d065a9c0"
2024-01-28 19:30:59 +00:00
dependencies = [
"log",
"termcolor",
"time",
]
[[package]]
name = "spki"
version = "0.7.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d"
dependencies = [
"base64ct",
"der",
]
2024-01-28 19:30:59 +00:00
[[package]]
name = "strsim"
2024-07-28 10:54:01 +01:00
version = "0.11.1"
2024-01-28 19:30:59 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-28 10:54:01 +01:00
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
2024-01-28 19:30:59 +00:00
[[package]]
name = "subtle"
2024-07-28 10:54:01 +01:00
version = "2.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-28 10:54:01 +01:00
checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
2024-01-28 19:30:59 +00:00
[[package]]
name = "syn"
2024-07-28 10:54:01 +01:00
version = "2.0.72"
2024-01-28 19:30:59 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-28 10:54:01 +01:00
checksum = "dc4b9b9bf2add8093d3f2c0204471e951b2285580335de42f9d2534f3ae7a8af"
2024-01-28 19:30:59 +00:00
dependencies = [
"proc-macro2",
"quote",
"unicode-ident",
]
[[package]]
name = "termcolor"
2024-07-28 10:54:01 +01:00
version = "1.4.1"
2024-01-28 19:30:59 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-28 10:54:01 +01:00
checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755"
2024-01-28 19:30:59 +00:00
dependencies = [
"winapi-util",
]
[[package]]
name = "time"
2024-07-28 10:54:01 +01:00
version = "0.3.36"
2024-01-28 19:30:59 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-28 10:54:01 +01:00
checksum = "5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885"
2024-01-28 19:30:59 +00:00
dependencies = [
"deranged",
"itoa",
"libc",
2024-07-28 10:54:01 +01:00
"num-conv",
2024-01-28 19:30:59 +00:00
"num_threads",
"powerfmt",
"serde",
"time-core",
"time-macros",
]
[[package]]
name = "time-core"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3"
[[package]]
name = "time-macros"
2024-07-28 10:54:01 +01:00
version = "0.2.18"
2024-01-28 19:30:59 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-28 10:54:01 +01:00
checksum = "3f252a68540fde3a3877aeea552b832b40ab9a69e318efd078774a01ddee1ccf"
2024-01-28 19:30:59 +00:00
dependencies = [
2024-07-28 10:54:01 +01:00
"num-conv",
2024-01-28 19:30:59 +00:00
"time-core",
]
[[package]]
name = "typenum"
version = "1.17.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
2024-01-28 19:30:59 +00:00
[[package]]
name = "unicode-ident"
version = "1.0.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
[[package]]
name = "universal-hash"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea"
dependencies = [
"crypto-common",
"subtle",
]
[[package]]
2024-01-29 22:11:12 +00:00
name = "urlencoding"
version = "2.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-29 22:11:12 +00:00
checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da"
2024-01-28 19:30:59 +00:00
[[package]]
name = "utf8parse"
2024-07-28 10:54:01 +01:00
version = "0.2.2"
2024-01-28 19:30:59 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-28 10:54:01 +01:00
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
2024-01-28 19:30:59 +00:00
[[package]]
name = "version_check"
2024-07-28 10:54:01 +01:00
version = "0.9.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-28 10:54:01 +01:00
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
[[package]]
name = "wasi"
version = "0.11.0+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
2024-01-28 19:30:59 +00:00
[[package]]
name = "winapi-util"
2024-07-28 10:54:01 +01:00
version = "0.1.8"
2024-01-28 19:30:59 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-28 10:54:01 +01:00
checksum = "4d4cc384e1e73b93bafa6fb4f1df8c41695c8a91cf9c4c64358067d15a7b6c6b"
2024-01-28 19:30:59 +00:00
dependencies = [
2024-07-28 10:54:01 +01:00
"windows-sys",
2024-01-28 19:30:59 +00:00
]
[[package]]
name = "windows-sys"
version = "0.52.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
dependencies = [
"windows-targets",
]
[[package]]
name = "windows-targets"
2024-07-28 10:54:01 +01:00
version = "0.52.6"
2024-01-28 19:30:59 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-28 10:54:01 +01:00
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
2024-01-28 19:30:59 +00:00
dependencies = [
"windows_aarch64_gnullvm",
"windows_aarch64_msvc",
"windows_i686_gnu",
2024-07-28 10:54:01 +01:00
"windows_i686_gnullvm",
2024-01-28 19:30:59 +00:00
"windows_i686_msvc",
"windows_x86_64_gnu",
"windows_x86_64_gnullvm",
"windows_x86_64_msvc",
]
[[package]]
name = "windows_aarch64_gnullvm"
2024-07-28 10:54:01 +01:00
version = "0.52.6"
2024-01-28 19:30:59 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-28 10:54:01 +01:00
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
2024-01-28 19:30:59 +00:00
[[package]]
name = "windows_aarch64_msvc"
2024-07-28 10:54:01 +01:00
version = "0.52.6"
2024-01-28 19:30:59 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-28 10:54:01 +01:00
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
2024-01-28 19:30:59 +00:00
[[package]]
name = "windows_i686_gnu"
2024-07-28 10:54:01 +01:00
version = "0.52.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
[[package]]
name = "windows_i686_gnullvm"
version = "0.52.6"
2024-01-28 19:30:59 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-28 10:54:01 +01:00
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
2024-01-28 19:30:59 +00:00
[[package]]
name = "windows_i686_msvc"
2024-07-28 10:54:01 +01:00
version = "0.52.6"
2024-01-28 19:30:59 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-28 10:54:01 +01:00
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
2024-01-28 19:30:59 +00:00
[[package]]
name = "windows_x86_64_gnu"
2024-07-28 10:54:01 +01:00
version = "0.52.6"
2024-01-28 19:30:59 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-28 10:54:01 +01:00
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
2024-01-28 19:30:59 +00:00
[[package]]
name = "windows_x86_64_gnullvm"
2024-07-28 10:54:01 +01:00
version = "0.52.6"
2024-01-28 19:30:59 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-28 10:54:01 +01:00
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
2024-01-28 19:30:59 +00:00
[[package]]
name = "windows_x86_64_msvc"
2024-07-28 10:54:01 +01:00
version = "0.52.6"
2024-01-28 19:30:59 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-28 10:54:01 +01:00
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
[[package]]
name = "zeroize"
2024-07-28 10:54:01 +01:00
version = "1.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-28 10:54:01 +01:00
checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde"