tcp-over-http/Cargo.lock

2382 lines
58 KiB
Plaintext
Raw Normal View History

2022-08-30 07:43:53 +00:00
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
[[package]]
name = "actix"
version = "0.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f728064aca1c318585bf4bb04ffcfac9e75e508ab4e8b1bd9ba5dfe04e2cbed5"
dependencies = [
"actix-rt",
"actix_derive",
"bitflags",
"bytes",
"crossbeam-channel",
"futures-core",
"futures-sink",
"futures-task",
"futures-util",
"log",
"once_cell",
"parking_lot",
"pin-project-lite",
"smallvec",
"tokio",
"tokio-util",
]
2022-08-30 07:43:53 +00:00
[[package]]
name = "actix-codec"
version = "0.5.1"
2022-08-30 07:43:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "617a8268e3537fe1d8c9ead925fca49ef6400927ee7bc26750e90ecee14ce4b8"
2022-08-30 07:43:53 +00:00
dependencies = [
"bitflags",
"bytes",
"futures-core",
"futures-sink",
"memchr",
"pin-project-lite",
"tokio",
"tokio-util",
"tracing",
2022-08-30 07:43:53 +00:00
]
[[package]]
name = "actix-http"
version = "3.3.1"
2022-08-30 07:43:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c2079246596c18b4a33e274ae10c0e50613f4d32a4198e09c7b93771013fed74"
2022-08-30 07:43:53 +00:00
dependencies = [
"actix-codec",
"actix-rt",
"actix-service",
2022-08-31 07:29:22 +00:00
"actix-tls",
2022-08-30 07:43:53 +00:00
"actix-utils",
"ahash 0.8.3",
2023-02-02 09:28:06 +00:00
"base64 0.21.0",
2022-08-30 07:43:53 +00:00
"bitflags",
"brotli",
"bytes",
"bytestring",
"derive_more",
"encoding_rs",
"flate2",
"futures-core",
"h2",
"http",
"httparse",
"httpdate",
"itoa",
"language-tags",
"local-channel",
"mime",
"percent-encoding",
"pin-project-lite",
"rand",
"sha1",
"smallvec",
2023-02-02 09:28:06 +00:00
"tokio",
"tokio-util",
2022-08-30 07:43:53 +00:00
"tracing",
"zstd",
]
[[package]]
name = "actix-macros"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "465a6172cf69b960917811022d8f29bc0b7fa1398bc4f78b3c466673db1213b6"
dependencies = [
"quote",
"syn 1.0.109",
2022-08-30 07:43:53 +00:00
]
[[package]]
name = "actix-router"
2023-02-02 09:28:06 +00:00
version = "0.5.1"
2022-08-30 07:43:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-02 09:28:06 +00:00
checksum = "d66ff4d247d2b160861fa2866457e85706833527840e4133f8f49aa423a38799"
2022-08-30 07:43:53 +00:00
dependencies = [
"bytestring",
"http",
"regex",
"serde",
2023-02-02 09:28:06 +00:00
"tracing",
2022-08-30 07:43:53 +00:00
]
[[package]]
name = "actix-rt"
2023-02-02 09:28:06 +00:00
version = "2.8.0"
2022-08-30 07:43:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-02 09:28:06 +00:00
checksum = "15265b6b8e2347670eb363c47fc8c75208b4a4994b27192f345fcbe707804f3e"
2022-08-30 07:43:53 +00:00
dependencies = [
"futures-core",
"tokio",
]
[[package]]
name = "actix-server"
2023-02-02 09:28:06 +00:00
version = "2.2.0"
2022-08-30 07:43:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-02 09:28:06 +00:00
checksum = "3e8613a75dd50cc45f473cee3c34d59ed677c0f7b44480ce3b8247d7dc519327"
2022-08-30 07:43:53 +00:00
dependencies = [
"actix-rt",
"actix-service",
"actix-utils",
"futures-core",
"futures-util",
"mio",
"num_cpus",
"socket2",
"tokio",
"tracing",
]
[[package]]
name = "actix-service"
version = "2.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3b894941f818cfdc7ccc4b9e60fa7e53b5042a2e8567270f9147d5591893373a"
dependencies = [
"futures-core",
"paste",
"pin-project-lite",
]
2022-08-31 07:29:22 +00:00
[[package]]
name = "actix-tls"
version = "3.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9fde0cf292f7cdc7f070803cb9a0d45c018441321a78b1042ffbbb81ec333297"
dependencies = [
"actix-codec",
"actix-rt",
"actix-service",
"actix-utils",
"futures-core",
"log",
"pin-project-lite",
"tokio-rustls 0.23.4",
2022-08-31 07:29:22 +00:00
"tokio-util",
"webpki-roots",
]
2022-08-30 07:43:53 +00:00
[[package]]
name = "actix-utils"
2023-02-02 09:28:06 +00:00
version = "3.0.1"
2022-08-30 07:43:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-02 09:28:06 +00:00
checksum = "88a1dcdff1466e3c2488e1cb5c36a71822750ad43839937f85d2f4d9f8b705d8"
2022-08-30 07:43:53 +00:00
dependencies = [
"local-waker",
"pin-project-lite",
]
[[package]]
name = "actix-web"
version = "4.3.1"
2022-08-30 07:43:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cd3cb42f9566ab176e1ef0b8b3a896529062b4efc6be0123046095914c4c1c96"
2022-08-30 07:43:53 +00:00
dependencies = [
"actix-codec",
"actix-http",
"actix-macros",
"actix-router",
"actix-rt",
"actix-server",
"actix-service",
2022-08-31 07:29:22 +00:00
"actix-tls",
2022-08-30 07:43:53 +00:00
"actix-utils",
"actix-web-codegen",
"ahash 0.7.6",
2022-08-30 07:43:53 +00:00
"bytes",
"bytestring",
"cfg-if",
"cookie",
"derive_more",
"encoding_rs",
"futures-core",
"futures-util",
2023-02-02 09:28:06 +00:00
"http",
2022-08-30 07:43:53 +00:00
"itoa",
"language-tags",
"log",
"mime",
"once_cell",
"pin-project-lite",
"regex",
"serde",
"serde_json",
"serde_urlencoded",
"smallvec",
"socket2",
"time",
"url",
]
[[package]]
name = "actix-web-actors"
version = "4.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bf6e9ccc371cfddbed7aa842256a4abc7a6dcac9f3fce392fe1d0f68cfd136b2"
dependencies = [
"actix",
"actix-codec",
"actix-http",
"actix-web",
"bytes",
"bytestring",
"futures-core",
"pin-project-lite",
"tokio",
"tokio-util",
]
2022-08-30 07:43:53 +00:00
[[package]]
name = "actix-web-codegen"
version = "4.2.0"
2022-08-30 07:43:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2262160a7ae29e3415554a3f1fc04c764b1540c116aa524683208078b7a75bc9"
2022-08-30 07:43:53 +00:00
dependencies = [
"actix-router",
"proc-macro2",
"quote",
"syn 1.0.109",
2022-08-30 07:43:53 +00:00
]
2022-08-30 08:17:38 +00:00
[[package]]
name = "actix_derive"
version = "0.6.0"
2022-08-30 08:17:38 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6d44b8fee1ced9671ba043476deddef739dd0959bf77030b26b738cc591737a7"
2022-08-30 08:17:38 +00:00
dependencies = [
"proc-macro2",
"quote",
"syn 1.0.109",
2022-08-30 08:17:38 +00:00
]
2022-08-30 07:43:53 +00:00
[[package]]
name = "adler"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
[[package]]
name = "ahash"
version = "0.7.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47"
dependencies = [
"getrandom",
"once_cell",
"version_check",
]
[[package]]
name = "ahash"
version = "0.8.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2c99f64d1e06488f620f932677e24bc6e2897582980441ae90a671415bd7ec2f"
dependencies = [
"cfg-if",
"getrandom",
"once_cell",
"version_check",
]
2022-08-30 07:43:53 +00:00
[[package]]
name = "aho-corasick"
version = "1.0.1"
2022-08-30 07:43:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "67fc08ce920c31afb70f013dcce1bfc3a3195de6a228474e45e1f145b36f8d04"
2022-08-30 07:43:53 +00:00
dependencies = [
"memchr",
]
[[package]]
name = "alloc-no-stdlib"
2023-02-02 09:28:06 +00:00
version = "2.0.4"
2022-08-30 07:43:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-02 09:28:06 +00:00
checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3"
2022-08-30 07:43:53 +00:00
[[package]]
name = "alloc-stdlib"
2023-02-02 09:28:06 +00:00
version = "0.2.2"
2022-08-30 07:43:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-02 09:28:06 +00:00
checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece"
2022-08-30 07:43:53 +00:00
dependencies = [
"alloc-no-stdlib",
]
[[package]]
name = "anstream"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0ca84f3628370c59db74ee214b3263d58f9aadd9b4fe7e711fd87dc452b7f163"
dependencies = [
"anstyle",
"anstyle-parse",
2023-04-20 00:26:49 +00:00
"anstyle-query",
"anstyle-wincon",
2023-04-20 00:26:49 +00:00
"colorchoice",
"is-terminal",
"utf8parse",
]
[[package]]
name = "anstyle"
2023-04-20 00:26:49 +00:00
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-20 00:26:49 +00:00
checksum = "41ed9a86bf92ae6580e0a31281f65a1b1d867c0cc68d5346e2ae128dddfa6a7d"
[[package]]
name = "anstyle-parse"
2023-04-20 00:26:49 +00:00
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-20 00:26:49 +00:00
checksum = "e765fd216e48e067936442276d1d57399e37bce53c264d6fefbe298080cb57ee"
dependencies = [
"utf8parse",
]
2023-04-20 00:26:49 +00:00
[[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",
2023-04-20 00:26:49 +00:00
"windows-sys 0.48.0",
]
2022-08-31 13:37:51 +00:00
[[package]]
name = "asn1-rs"
version = "0.5.2"
2022-08-31 13:37:51 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7f6fd5ddaf0351dff5b8da21b2fb4ff8e08ddd02857f0bf69c47639106c0fff0"
2022-08-31 13:37:51 +00:00
dependencies = [
"asn1-rs-derive",
"asn1-rs-impl",
"displaydoc",
"nom",
"num-traits",
"rusticata-macros",
"thiserror",
"time",
]
[[package]]
name = "asn1-rs-derive"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "726535892e8eae7e70657b4c8ea93d26b8553afb1ce617caee529ef96d7dee6c"
dependencies = [
"proc-macro2",
"quote",
"syn 1.0.109",
2022-08-31 13:37:51 +00:00
"synstructure",
]
[[package]]
name = "asn1-rs-impl"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2777730b2039ac0f95f093556e61b6d26cebed5393ca6f152717777cec3a42ed"
dependencies = [
"proc-macro2",
"quote",
"syn 1.0.109",
2022-08-31 13:37:51 +00:00
]
2022-08-30 07:43:53 +00:00
[[package]]
name = "autocfg"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
[[package]]
name = "base64"
2023-02-02 09:28:06 +00:00
version = "0.13.1"
2022-08-30 07:43:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-02 09:28:06 +00:00
checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
2022-08-30 07:43:53 +00:00
[[package]]
name = "base64"
version = "0.21.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a4a4ddaa51a5bc52a6948f74c06d20aaaddb71924eab79b8c97a8c556e942d6a"
2022-08-30 07:43:53 +00:00
[[package]]
name = "bitflags"
version = "1.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
[[package]]
name = "block-buffer"
version = "0.10.4"
2022-08-30 07:43:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
2022-08-30 07:43:53 +00:00
dependencies = [
"generic-array",
]
[[package]]
name = "brotli"
version = "3.3.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a1a0b1dbcc8ae29329621f8d4f0d835787c1c38bb1401979b49d13b0b305ff68"
dependencies = [
"alloc-no-stdlib",
"alloc-stdlib",
"brotli-decompressor",
]
[[package]]
name = "brotli-decompressor"
2023-02-02 09:28:06 +00:00
version = "2.3.4"
2022-08-30 07:43:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-02 09:28:06 +00:00
checksum = "4b6561fd3f895a11e8f72af2cb7d22e08366bebc2b6b57f7744c4bda27034744"
2022-08-30 07:43:53 +00:00
dependencies = [
"alloc-no-stdlib",
"alloc-stdlib",
]
2022-08-30 08:38:26 +00:00
[[package]]
name = "bumpalo"
version = "3.12.2"
2022-08-30 08:38:26 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3c6ed94e98ecff0c12dd1b04c15ec0d7d9458ca8fe806cea6f12954efe74c63b"
2022-08-30 08:38:26 +00:00
2022-08-30 12:17:21 +00:00
[[package]]
name = "byteorder"
version = "1.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
2022-08-30 07:43:53 +00:00
[[package]]
name = "bytes"
2023-02-02 09:28:06 +00:00
version = "1.4.0"
2022-08-30 07:43:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-02 09:28:06 +00:00
checksum = "89b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be"
2022-08-30 07:43:53 +00:00
[[package]]
name = "bytestring"
version = "1.3.0"
2022-08-30 07:43:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "238e4886760d98c4f899360c834fa93e62cf7f721ac3c2da375cbdf4b8679aae"
2022-08-30 07:43:53 +00:00
dependencies = [
"bytes",
]
[[package]]
name = "cc"
2023-02-02 09:28:06 +00:00
version = "1.0.79"
2022-08-30 07:43:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-02 09:28:06 +00:00
checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f"
2022-08-30 07:43:53 +00:00
dependencies = [
"jobserver",
]
[[package]]
name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
[[package]]
name = "clap"
2023-07-22 00:40:37 +00:00
version = "4.3.19"
2022-08-30 07:43:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-22 00:40:37 +00:00
checksum = "5fd304a20bff958a57f04c4e96a2e7594cc4490a0e809cbd48bb6437edaa452d"
2022-08-30 07:43:53 +00:00
dependencies = [
"clap_builder",
2022-08-30 07:43:53 +00:00
"clap_derive",
"once_cell",
]
[[package]]
name = "clap_builder"
2023-07-22 00:40:37 +00:00
version = "4.3.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-22 00:40:37 +00:00
checksum = "01c6a3f08f1fe5662a35cfe393aec09c4df95f60ee93b7556505260f75eee9e1"
dependencies = [
"anstream",
"anstyle",
"clap_lex",
2022-08-30 07:43:53 +00:00
"strsim",
]
[[package]]
name = "clap_derive"
2023-07-15 00:16:31 +00:00
version = "4.3.12"
2022-08-30 07:43:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-15 00:16:31 +00:00
checksum = "54a9bb5758fc5dfe728d1019941681eccaf0cf8a4189b692a0ee2f2ecf90a050"
2022-08-30 07:43:53 +00:00
dependencies = [
"heck",
"proc-macro2",
"quote",
2023-07-11 00:17:34 +00:00
"syn 2.0.25",
2022-08-30 07:43:53 +00:00
]
[[package]]
name = "clap_lex"
2023-05-23 09:52:34 +00:00
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-23 09:52:34 +00:00
checksum = "2da6da31387c7e4ef160ffab6d5e7f00c42626fe39aea70a7b0f1773f7dd6c1b"
[[package]]
2023-04-20 00:26:49 +00:00
name = "colorchoice"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-20 00:26:49 +00:00
checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7"
2022-08-30 07:43:53 +00:00
[[package]]
name = "convert_case"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e"
[[package]]
name = "cookie"
2023-02-02 09:28:06 +00:00
version = "0.16.2"
2022-08-30 07:43:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-02 09:28:06 +00:00
checksum = "e859cd57d0710d9e06c381b550c06e76992472a8c6d527aecd2fc673dcc231fb"
2022-08-30 07:43:53 +00:00
dependencies = [
"percent-encoding",
"time",
"version_check",
]
2022-08-30 08:38:26 +00:00
[[package]]
name = "core-foundation"
version = "0.9.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146"
dependencies = [
"core-foundation-sys",
"libc",
]
[[package]]
name = "core-foundation-sys"
version = "0.8.4"
2022-08-30 08:38:26 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa"
2022-08-30 08:38:26 +00:00
2022-08-30 07:43:53 +00:00
[[package]]
name = "cpufeatures"
version = "0.2.7"
2022-08-30 07:43:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3e4c1eaa2012c47becbbad2ab175484c2a84d1185b566fb2cc5b8707343dfe58"
2022-08-30 07:43:53 +00:00
dependencies = [
"libc",
]
[[package]]
name = "crc32fast"
version = "1.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d"
dependencies = [
"cfg-if",
]
[[package]]
name = "crossbeam-channel"
version = "0.5.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a33c2bf77f2df06183c3aa30d1e96c0695a313d4f9c453cc3762a6db39f99200"
dependencies = [
"cfg-if",
"crossbeam-utils",
]
[[package]]
name = "crossbeam-utils"
version = "0.8.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3c063cd8cc95f5c377ed0d4b49a4b21f632396ff690e8470c29b3359b346984b"
dependencies = [
"cfg-if",
]
2022-08-30 07:43:53 +00:00
[[package]]
name = "crypto-common"
version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
dependencies = [
"generic-array",
"typenum",
]
2022-08-31 13:37:51 +00:00
[[package]]
name = "data-encoding"
2023-02-02 09:28:06 +00:00
version = "2.3.3"
2022-08-31 13:37:51 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-02 09:28:06 +00:00
checksum = "23d8666cb01533c39dde32bcbab8e227b4ed6679b2c925eba05feabea39508fb"
2022-08-31 13:37:51 +00:00
[[package]]
name = "der-parser"
version = "8.2.0"
2022-08-31 13:37:51 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dbd676fbbab537128ef0278adb5576cf363cff6aa22a7b24effe97347cfab61e"
2022-08-31 13:37:51 +00:00
dependencies = [
"asn1-rs",
"displaydoc",
"nom",
"num-bigint",
"num-traits",
"rusticata-macros",
]
2022-08-30 07:43:53 +00:00
[[package]]
name = "derive_more"
version = "0.99.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321"
dependencies = [
"convert_case",
"proc-macro2",
"quote",
"rustc_version",
"syn 1.0.109",
2022-08-30 07:43:53 +00:00
]
[[package]]
name = "digest"
2023-02-02 09:28:06 +00:00
version = "0.10.6"
2022-08-30 07:43:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-02 09:28:06 +00:00
checksum = "8168378f4e5023e7218c89c891c0fd8ecdb5e5e4f18cb78f38cf245dd021e76f"
2022-08-30 07:43:53 +00:00
dependencies = [
"block-buffer",
"crypto-common",
]
2022-08-31 13:37:51 +00:00
[[package]]
name = "displaydoc"
version = "0.2.4"
2022-08-31 13:37:51 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "487585f4d0c6655fe74905e2504d8ad6908e4db67f744eb140876906c2f3175d"
2022-08-31 13:37:51 +00:00
dependencies = [
"proc-macro2",
"quote",
2023-07-11 00:17:34 +00:00
"syn 2.0.25",
2022-08-31 13:37:51 +00:00
]
2022-08-30 07:43:53 +00:00
[[package]]
name = "encoding_rs"
2023-02-02 09:28:06 +00:00
version = "0.8.32"
2022-08-30 07:43:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-02 09:28:06 +00:00
checksum = "071a31f4ee85403370b58aca746f01041ede6f0da2730960ad001edc2b71b394"
2022-08-30 07:43:53 +00:00
dependencies = [
"cfg-if",
]
[[package]]
name = "env_logger"
2022-11-29 00:37:53 +00:00
version = "0.10.0"
2022-08-30 07:43:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-29 00:37:53 +00:00
checksum = "85cdab6a89accf66733ad5a1693a4dcced6aeff64602b634530dd73c1f3ee9f0"
2022-08-30 07:43:53 +00:00
dependencies = [
"humantime",
2022-11-29 00:37:53 +00:00
"is-terminal",
2022-08-30 07:43:53 +00:00
"log",
"regex",
"termcolor",
]
2022-11-29 00:37:53 +00:00
[[package]]
name = "errno"
version = "0.3.1"
2022-11-29 00:37:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4bcfec3a70f97c962c307b2d2c56e358cf1d00b558d74262b5f929ee8cc7e73a"
2022-11-29 00:37:53 +00:00
dependencies = [
"errno-dragonfly",
"libc",
"windows-sys 0.48.0",
2022-11-29 00:37:53 +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",
]
2022-08-30 07:43:53 +00:00
[[package]]
name = "flate2"
version = "1.0.26"
2022-08-30 07:43:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3b9429470923de8e8cbd4d2dc513535400b4b3fef0319fb5c4e1f520a7bef743"
2022-08-30 07:43:53 +00:00
dependencies = [
"crc32fast",
"miniz_oxide",
]
[[package]]
name = "fnv"
version = "1.0.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
[[package]]
name = "form_urlencoded"
2023-02-02 09:28:06 +00:00
version = "1.1.0"
2022-08-30 07:43:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-02 09:28:06 +00:00
checksum = "a9c384f161156f5260c24a097c56119f9be8c798586aecc13afbcbe7b7e26bf8"
2022-08-30 07:43:53 +00:00
dependencies = [
"percent-encoding",
]
2022-08-30 09:16:22 +00:00
[[package]]
name = "futures"
version = "0.3.28"
2022-08-30 09:16:22 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "23342abe12aba583913b2e62f22225ff9c950774065e4bfb61a19cd9770fec40"
2022-08-30 09:16:22 +00:00
dependencies = [
"futures-channel",
"futures-core",
"futures-executor",
"futures-io",
"futures-sink",
"futures-task",
"futures-util",
]
2022-08-30 08:38:26 +00:00
[[package]]
name = "futures-channel"
version = "0.3.28"
2022-08-30 08:38:26 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "955518d47e09b25bbebc7a18df10b81f0c766eaf4c4f1cccef2fca5f2a4fb5f2"
2022-08-30 08:38:26 +00:00
dependencies = [
"futures-core",
2022-08-30 09:16:22 +00:00
"futures-sink",
2022-08-30 08:38:26 +00:00
]
2022-08-30 07:43:53 +00:00
[[package]]
name = "futures-core"
version = "0.3.28"
2022-08-30 07:43:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4bca583b7e26f571124fe5b7561d49cb2868d79116cfa0eefce955557c6fee8c"
2022-08-30 07:43:53 +00:00
2022-08-30 09:16:22 +00:00
[[package]]
name = "futures-executor"
version = "0.3.28"
2022-08-30 09:16:22 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ccecee823288125bd88b4d7f565c9e58e41858e47ab72e8ea2d64e93624386e0"
2022-08-30 09:16:22 +00:00
dependencies = [
"futures-core",
"futures-task",
"futures-util",
]
[[package]]
name = "futures-io"
version = "0.3.28"
2022-08-30 09:16:22 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4fff74096e71ed47f8e023204cfd0aa1289cd54ae5430a9523be060cdb849964"
2022-08-30 09:16:22 +00:00
[[package]]
name = "futures-macro"
version = "0.3.28"
2022-08-30 09:16:22 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "89ca545a94061b6365f2c7355b4b32bd20df3ff95f02da9329b34ccc3bd6ee72"
2022-08-30 09:16:22 +00:00
dependencies = [
"proc-macro2",
"quote",
2023-07-11 00:17:34 +00:00
"syn 2.0.25",
2022-08-30 09:16:22 +00:00
]
2022-08-30 07:43:53 +00:00
[[package]]
name = "futures-sink"
version = "0.3.28"
2022-08-30 07:43:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f43be4fe21a13b9781a69afa4985b0f6ee0e1afab2c6f454a8cf30e2b2237b6e"
2022-08-30 07:43:53 +00:00
[[package]]
name = "futures-task"
version = "0.3.28"
2022-08-30 07:43:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "76d3d132be6c0e6aa1534069c705a74a5997a356c0dc2f86a47765e5617c5b65"
2022-08-30 07:43:53 +00:00
[[package]]
name = "futures-util"
version = "0.3.28"
2022-08-30 07:43:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "26b01e40b772d54cf6c6d721c1d1abd0647a0106a12ecaa1c186273392a69533"
2022-08-30 07:43:53 +00:00
dependencies = [
2022-08-30 09:16:22 +00:00
"futures-channel",
2022-08-30 07:43:53 +00:00
"futures-core",
2022-08-30 09:16:22 +00:00
"futures-io",
"futures-macro",
"futures-sink",
2022-08-30 07:43:53 +00:00
"futures-task",
2022-08-30 09:16:22 +00:00
"memchr",
2022-08-30 07:43:53 +00:00
"pin-project-lite",
"pin-utils",
2022-08-30 08:17:38 +00:00
"slab",
2022-08-30 07:43:53 +00:00
]
[[package]]
name = "generic-array"
version = "0.14.7"
2022-08-30 07:43:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
2022-08-30 07:43:53 +00:00
dependencies = [
"typenum",
"version_check",
]
[[package]]
name = "getrandom"
version = "0.2.9"
2022-08-30 07:43:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c85e1d9ab2eadba7e5040d4e09cbd6d072b76a557ad64e797c2cb9d4da21d7e4"
2022-08-30 07:43:53 +00:00
dependencies = [
"cfg-if",
"libc",
"wasi",
]
[[package]]
name = "h2"
version = "0.3.19"
2022-08-30 07:43:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d357c7ae988e7d2182f7d7871d0b963962420b0678b0997ce7de72001aeab782"
2022-08-30 07:43:53 +00:00
dependencies = [
"bytes",
"fnv",
"futures-core",
"futures-sink",
"futures-util",
"http",
"indexmap",
"slab",
"tokio",
"tokio-util",
"tracing",
]
[[package]]
name = "hashbrown"
version = "0.12.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
[[package]]
name = "heck"
2023-02-02 09:28:06 +00:00
version = "0.4.1"
2022-08-30 07:43:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-02 09:28:06 +00:00
checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
2022-08-30 07:43:53 +00:00
2022-11-29 00:37:53 +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"
2022-08-30 07:43:53 +00:00
[[package]]
name = "http"
version = "0.2.9"
2022-08-30 07:43:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bd6effc99afb63425aff9b05836f029929e345a6148a14b7ecd5ab67af944482"
2022-08-30 07:43:53 +00:00
dependencies = [
"bytes",
"fnv",
"itoa",
]
2022-08-30 08:38:26 +00:00
[[package]]
name = "http-body"
version = "0.4.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1"
dependencies = [
"bytes",
"http",
"pin-project-lite",
]
2022-08-30 07:43:53 +00:00
[[package]]
name = "httparse"
2023-02-02 09:28:06 +00:00
version = "1.8.0"
2022-08-30 07:43:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-02 09:28:06 +00:00
checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904"
2022-08-30 07:43:53 +00:00
[[package]]
name = "httpdate"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421"
[[package]]
name = "humantime"
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
2022-08-30 08:38:26 +00:00
[[package]]
name = "hyper"
version = "0.14.26"
2022-08-30 08:38:26 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ab302d72a6f11a3b910431ff93aae7e773078c769f0a3ef15fb9ec692ed147d4"
2022-08-30 08:38:26 +00:00
dependencies = [
"bytes",
"futures-channel",
"futures-core",
"futures-util",
"h2",
"http",
"http-body",
"httparse",
"httpdate",
"itoa",
"pin-project-lite",
"socket2",
"tokio",
"tower-service",
"tracing",
"want",
]
[[package]]
name = "hyper-rustls"
version = "0.23.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1788965e61b367cd03a62950836d5cd41560c3577d90e40e0819373194d1661c"
dependencies = [
"http",
"hyper",
"log",
"rustls 0.20.8",
"rustls-native-certs",
"tokio",
"tokio-rustls 0.23.4",
]
[[package]]
name = "hyper-rustls"
version = "0.24.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0646026eb1b3eea4cd9ba47912ea5ce9cc07713d105b1a14698f4e6433d348b7"
dependencies = [
"http",
"hyper",
"rustls 0.21.1",
"tokio",
"tokio-rustls 0.24.0",
]
2022-08-30 07:43:53 +00:00
[[package]]
name = "idna"
2023-02-02 09:28:06 +00:00
version = "0.3.0"
2022-08-30 07:43:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-02 09:28:06 +00:00
checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6"
2022-08-30 07:43:53 +00:00
dependencies = [
"unicode-bidi",
"unicode-normalization",
]
[[package]]
name = "indexmap"
version = "1.9.3"
2022-08-30 07:43:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
2022-08-30 07:43:53 +00:00
dependencies = [
"autocfg",
"hashbrown",
]
2022-11-29 00:37:53 +00:00
[[package]]
name = "io-lifetimes"
version = "1.0.10"
2022-11-29 00:37:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9c66c74d2ae7e79a5a8f7ac924adbe38ee42a859c6539ad869eb51f0b52dc220"
2022-11-29 00:37:53 +00:00
dependencies = [
"hermit-abi 0.3.1",
2022-11-29 00:37:53 +00:00
"libc",
"windows-sys 0.48.0",
2022-11-29 00:37:53 +00:00
]
2022-08-30 08:38:26 +00:00
[[package]]
name = "ipnet"
version = "2.7.2"
2022-08-30 08:38:26 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "12b6ee2129af8d4fb011108c73d99a1b83a85977f23b82460c0ae2e25bb4b57f"
2022-08-30 08:38:26 +00:00
2022-11-29 00:37:53 +00:00
[[package]]
name = "is-terminal"
version = "0.4.7"
2022-11-29 00:37:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "adcf93614601c8129ddf72e2d5633df827ba6551541c6d8c59520a371475be1f"
2022-11-29 00:37:53 +00:00
dependencies = [
"hermit-abi 0.3.1",
2022-11-29 00:37:53 +00:00
"io-lifetimes",
"rustix",
"windows-sys 0.48.0",
2022-11-29 00:37:53 +00:00
]
2022-08-30 07:43:53 +00:00
[[package]]
name = "itoa"
version = "1.0.6"
2022-08-30 07:43:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "453ad9f582a441959e5f0d088b02ce04cfe8d51a8eaf077f12ac6d3e94164ca6"
2022-08-30 07:43:53 +00:00
[[package]]
name = "jobserver"
version = "0.1.26"
2022-08-30 07:43:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "936cfd212a0155903bcbc060e316fb6cc7cbf2e1907329391ebadc1fe0ce77c2"
2022-08-30 07:43:53 +00:00
dependencies = [
"libc",
]
2022-08-30 08:38:26 +00:00
[[package]]
name = "js-sys"
version = "0.3.63"
2022-08-30 08:38:26 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2f37a4a5928311ac501dee68b3c7613a1037d0edb30c8e5427bd832d55d1b790"
2022-08-30 08:38:26 +00:00
dependencies = [
"wasm-bindgen",
]
2022-08-30 07:43:53 +00:00
[[package]]
name = "language-tags"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d4345964bb142484797b161f473a503a434de77149dd8c7427788c6e13379388"
2022-08-30 08:38:26 +00:00
[[package]]
name = "lazy_static"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
2022-08-30 07:43:53 +00:00
[[package]]
name = "libc"
version = "0.2.144"
2022-11-29 00:37:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2b00cc1c228a6782d0f076e7b232802e0c5689d41bb5df366f2a6b6621cfdfe1"
2022-11-29 00:37:53 +00:00
[[package]]
name = "linux-raw-sys"
version = "0.3.7"
2022-08-30 07:43:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ece97ea872ece730aed82664c424eb4c8291e1ff2480247ccf7409044bc6479f"
2022-08-30 07:43:53 +00:00
[[package]]
name = "local-channel"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7f303ec0e94c6c54447f84f3b0ef7af769858a9c4ef56ef2a986d3dcd4c3fc9c"
dependencies = [
"futures-core",
"futures-sink",
"futures-util",
"local-waker",
]
[[package]]
name = "local-waker"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e34f76eb3611940e0e7d53a9aaa4e6a3151f69541a282fd0dad5571420c53ff1"
[[package]]
name = "lock_api"
2023-02-02 09:28:06 +00:00
version = "0.4.9"
2022-08-30 07:43:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-02 09:28:06 +00:00
checksum = "435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df"
2022-08-30 07:43:53 +00:00
dependencies = [
"autocfg",
"scopeguard",
]
[[package]]
name = "log"
2023-06-12 00:27:03 +00:00
version = "0.4.19"
2022-08-30 07:43:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-12 00:27:03 +00:00
checksum = "b06a4cde4c0f271a446782e3eff8de789548ce57dbc8eca9292c27f4a42004b4"
2022-08-30 07:43:53 +00:00
[[package]]
name = "memchr"
version = "2.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
[[package]]
name = "mime"
version = "0.3.17"
2022-08-30 07:43:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
2022-08-30 07:43:53 +00:00
2022-08-31 13:37:51 +00:00
[[package]]
name = "minimal-lexical"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
2022-08-30 07:43:53 +00:00
[[package]]
name = "miniz_oxide"
version = "0.7.1"
2022-08-30 07:43:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7"
2022-08-30 07:43:53 +00:00
dependencies = [
"adler",
]
[[package]]
name = "mio"
version = "0.8.6"
2022-08-30 07:43:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5b9d9a46eff5b4ff64b45a9e316a6d1e0bc719ef429cbec4dc630684212bfdf9"
2022-08-30 07:43:53 +00:00
dependencies = [
"libc",
"log",
"wasi",
"windows-sys 0.45.0",
2022-08-30 07:43:53 +00:00
]
2022-09-02 06:59:07 +00:00
[[package]]
name = "mktemp"
2022-11-10 00:25:48 +00:00
version = "0.5.0"
2022-09-02 06:59:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-10 00:25:48 +00:00
checksum = "4bdc1f74dd7bb717d39f784f844e490d935b3aa7e383008006dbbf29c1f7820a"
2022-09-02 06:59:07 +00:00
dependencies = [
"uuid",
]
2022-08-31 13:37:51 +00:00
[[package]]
name = "nom"
2023-02-02 09:28:06 +00:00
version = "7.1.3"
2022-08-31 13:37:51 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-02 09:28:06 +00:00
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
2022-08-31 13:37:51 +00:00
dependencies = [
"memchr",
"minimal-lexical",
]
[[package]]
name = "num-bigint"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f93ab6289c7b344a8a9f60f88d80aa20032336fe78da341afc91c8a2341fc75f"
dependencies = [
"autocfg",
"num-integer",
"num-traits",
]
[[package]]
name = "num-integer"
version = "0.1.45"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9"
dependencies = [
"autocfg",
"num-traits",
]
[[package]]
name = "num-traits"
version = "0.2.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd"
dependencies = [
"autocfg",
]
2022-08-30 07:43:53 +00:00
[[package]]
name = "num_cpus"
2023-02-02 09:28:06 +00:00
version = "1.15.0"
2022-08-30 07:43:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-02 09:28:06 +00:00
checksum = "0fac9e2da13b5eb447a6ce3d392f23a29d8694bff781bf03a16cd9ac8697593b"
2022-08-30 07:43:53 +00:00
dependencies = [
"hermit-abi 0.2.6",
2022-08-30 07:43:53 +00:00
"libc",
]
2022-08-31 13:37:51 +00:00
[[package]]
name = "oid-registry"
2023-02-02 09:28:06 +00:00
version = "0.6.1"
2022-08-31 13:37:51 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-02 09:28:06 +00:00
checksum = "9bedf36ffb6ba96c2eb7144ef6270557b52e54b20c0a8e1eb2ff99a6c6959bff"
2022-08-31 13:37:51 +00:00
dependencies = [
"asn1-rs",
]
2022-08-30 07:43:53 +00:00
[[package]]
name = "once_cell"
version = "1.17.1"
2022-08-30 07:43:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b7e5500299e16ebb147ae15a00a942af264cf3688f47923b8fc2cd5858f23ad3"
2022-08-30 07:43:53 +00:00
2022-08-30 08:38:26 +00:00
[[package]]
name = "openssl-probe"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
2022-08-30 07:43:53 +00:00
[[package]]
name = "parking_lot"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
dependencies = [
"lock_api",
"parking_lot_core",
]
[[package]]
name = "parking_lot_core"
2023-02-02 09:28:06 +00:00
version = "0.9.7"
2022-08-30 07:43:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-02 09:28:06 +00:00
checksum = "9069cbb9f99e3a5083476ccb29ceb1de18b9118cafa53e90c9551235de2b9521"
2022-08-30 07:43:53 +00:00
dependencies = [
"cfg-if",
"libc",
"redox_syscall",
"smallvec",
2023-02-02 09:28:06 +00:00
"windows-sys 0.45.0",
2022-08-30 07:43:53 +00:00
]
[[package]]
name = "paste"
version = "1.0.12"
2022-08-30 07:43:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9f746c4065a8fa3fe23974dd82f15431cc8d40779821001404d10d2e79ca7d79"
2022-08-30 07:43:53 +00:00
2022-08-31 13:37:51 +00:00
[[package]]
name = "pem"
version = "2.0.1"
2022-08-31 13:37:51 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6b13fe415cdf3c8e44518e18a7c95a13431d9bdf6d15367d82b23c377fdd441a"
2022-08-31 13:37:51 +00:00
dependencies = [
"base64 0.21.0",
"serde",
2022-08-31 13:37:51 +00:00
]
2022-08-30 07:43:53 +00:00
[[package]]
name = "percent-encoding"
2023-02-02 09:28:06 +00:00
version = "2.2.0"
2022-08-30 07:43:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-02 09:28:06 +00:00
checksum = "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e"
2022-08-30 07:43:53 +00:00
[[package]]
name = "pin-project-lite"
version = "0.2.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116"
[[package]]
name = "pin-utils"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
2023-02-02 09:28:06 +00:00
[[package]]
name = "pkg-config"
version = "0.3.27"
2023-02-02 09:28:06 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964"
2023-02-02 09:28:06 +00:00
2022-08-30 07:43:53 +00:00
[[package]]
name = "ppv-lite86"
2023-02-02 09:28:06 +00:00
version = "0.2.17"
2022-08-30 07:43:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-02 09:28:06 +00:00
checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
2022-08-30 07:43:53 +00:00
[[package]]
name = "proc-macro2"
2023-07-04 00:11:44 +00:00
version = "1.0.63"
2022-08-30 07:43:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-04 00:11:44 +00:00
checksum = "7b368fba921b0dce7e60f5e04ec15e565b3303972b42bcfde1d0713b881959eb"
2022-08-30 07:43:53 +00:00
dependencies = [
"unicode-ident",
]
[[package]]
name = "quote"
2023-07-04 00:11:44 +00:00
version = "1.0.29"
2022-08-30 07:43:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-04 00:11:44 +00:00
checksum = "573015e8ab27661678357f27dc26460738fd2b6c86e46f386fde94cb5d913105"
2022-08-30 07:43:53 +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"
2023-02-02 09:28:06 +00:00
version = "0.6.4"
2022-08-30 07:43:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-02 09:28:06 +00:00
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
2022-08-30 07:43:53 +00:00
dependencies = [
"getrandom",
]
[[package]]
name = "redox_syscall"
version = "0.2.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
dependencies = [
"bitflags",
]
[[package]]
name = "regex"
version = "1.8.1"
2022-08-30 07:43:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "af83e617f331cc6ae2da5443c602dfa5af81e517212d9d611a5b3ba1777b5370"
2022-08-30 07:43:53 +00:00
dependencies = [
"aho-corasick",
"memchr",
"regex-syntax",
]
[[package]]
name = "regex-syntax"
version = "0.7.1"
2022-08-30 07:43:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a5996294f19bd3aae0453a862ad728f60e6600695733dd5df01da90c54363a3c"
2022-08-30 07:43:53 +00:00
2022-08-30 08:38:26 +00:00
[[package]]
name = "reqwest"
version = "0.11.18"
2022-08-30 08:38:26 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cde824a14b7c14f85caff81225f411faacc04a2013f41670f41443742b1c1c55"
2022-08-30 08:38:26 +00:00
dependencies = [
2023-02-02 09:28:06 +00:00
"base64 0.21.0",
2022-08-30 08:38:26 +00:00
"bytes",
"encoding_rs",
"futures-core",
"futures-util",
"h2",
"http",
"http-body",
"hyper",
"hyper-rustls 0.24.0",
2022-08-30 08:38:26 +00:00
"ipnet",
"js-sys",
"log",
"mime",
2023-02-02 09:28:06 +00:00
"once_cell",
2022-08-30 08:38:26 +00:00
"percent-encoding",
"pin-project-lite",
"rustls 0.21.1",
"rustls-pemfile",
2022-08-30 08:38:26 +00:00
"serde",
"serde_json",
"serde_urlencoded",
"tokio",
"tokio-rustls 0.24.0",
2022-08-30 08:38:26 +00:00
"tower-service",
"url",
"wasm-bindgen",
"wasm-bindgen-futures",
"web-sys",
"webpki-roots",
2022-08-30 08:38:26 +00:00
"winreg",
]
2022-08-31 07:29:22 +00:00
[[package]]
name = "ring"
version = "0.16.20"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc"
dependencies = [
"cc",
"libc",
"once_cell",
"spin",
"untrusted",
"web-sys",
"winapi",
]
2022-08-30 07:43:53 +00:00
[[package]]
name = "rustc_version"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
dependencies = [
"semver",
]
2022-08-31 13:37:51 +00:00
[[package]]
name = "rusticata-macros"
version = "4.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "faf0c4a6ece9950b9abdb62b1cfcf2a68b3b67a10ba445b3bb85be2a293d0632"
dependencies = [
"nom",
]
2022-11-29 00:37:53 +00:00
[[package]]
name = "rustix"
version = "0.37.19"
2022-11-29 00:37:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "acf8729d8542766f1b2cf77eb034d52f40d375bb8b615d0b147089946e16613d"
2022-11-29 00:37:53 +00:00
dependencies = [
"bitflags",
"errno",
"io-lifetimes",
"libc",
"linux-raw-sys",
"windows-sys 0.48.0",
2022-11-29 00:37:53 +00:00
]
2022-08-31 07:29:22 +00:00
[[package]]
name = "rustls"
2023-02-02 09:28:06 +00:00
version = "0.20.8"
2022-08-31 07:29:22 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-02 09:28:06 +00:00
checksum = "fff78fc74d175294f4e83b28343315ffcfb114b156f0185e9741cb5570f50e2f"
2022-08-31 07:29:22 +00:00
dependencies = [
"log",
"ring",
"sct",
"webpki",
]
[[package]]
name = "rustls"
version = "0.21.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c911ba11bc8433e811ce56fde130ccf32f5127cab0e0194e9c68c5a5b671791e"
dependencies = [
"log",
"ring",
"rustls-webpki",
"sct",
]
[[package]]
name = "rustls-native-certs"
version = "0.6.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0167bac7a9f490495f3c33013e7722b53cb087ecbe082fb0c6387c96f634ea50"
dependencies = [
"openssl-probe",
"rustls-pemfile",
"schannel",
"security-framework",
]
2022-08-31 07:29:22 +00:00
[[package]]
name = "rustls-pemfile"
version = "1.0.3"
2022-08-31 07:29:22 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2d3987094b1d07b653b7dfdc3f70ce9a1da9c51ac18c1b06b662e4f9a0e9f4b2"
2022-08-31 07:29:22 +00:00
dependencies = [
"base64 0.21.0",
2022-08-31 07:29:22 +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",
]
2022-08-30 07:43:53 +00:00
[[package]]
name = "ryu"
version = "1.0.13"
2022-08-30 07:43:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f91339c0467de62360649f8d3e185ca8de4224ff281f66000de5eb2a77a79041"
2022-08-30 07:43:53 +00:00
2022-08-30 08:38:26 +00:00
[[package]]
name = "schannel"
2023-02-02 09:28:06 +00:00
version = "0.1.21"
2022-08-30 08:38:26 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-02 09:28:06 +00:00
checksum = "713cfb06c7059f3588fb8044c0fad1d09e3c01d225e25b9220dbfdcf16dbb1b3"
2022-08-30 08:38:26 +00:00
dependencies = [
2023-02-02 09:28:06 +00:00
"windows-sys 0.42.0",
2022-08-30 08:38:26 +00:00
]
2022-08-30 07:43:53 +00:00
[[package]]
name = "scopeguard"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
2022-08-31 07:29:22 +00:00
[[package]]
name = "sct"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d53dcdb7c9f8158937a7981b48accfd39a43af418591a5d008c7b22b5e1b7ca4"
dependencies = [
"ring",
"untrusted",
]
2022-08-30 08:38:26 +00:00
[[package]]
name = "security-framework"
version = "2.9.1"
2022-08-30 08:38:26 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1fc758eb7bffce5b308734e9b0c1468893cae9ff70ebf13e7090be8dcbcc83a8"
2022-08-30 08:38:26 +00:00
dependencies = [
"bitflags",
"core-foundation",
"core-foundation-sys",
"libc",
"security-framework-sys",
]
[[package]]
name = "security-framework-sys"
version = "2.9.0"
2022-08-30 08:38:26 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f51d0c0d83bec45f16480d0ce0058397a69e48fcdc52d1dc8855fb68acbd31a7"
2022-08-30 08:38:26 +00:00
dependencies = [
"core-foundation-sys",
"libc",
]
2022-08-30 07:43:53 +00:00
[[package]]
name = "semver"
version = "1.0.17"
2022-08-30 07:43:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bebd363326d05ec3e2f532ab7660680f3b02130d780c299bca73469d521bc0ed"
2022-08-30 07:43:53 +00:00
[[package]]
name = "serde"
2023-07-29 00:30:57 +00:00
version = "1.0.178"
2022-08-30 07:43:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-29 00:30:57 +00:00
checksum = "60363bdd39a7be0266a520dab25fdc9241d2f987b08a01e01f0ec6d06a981348"
2022-08-30 07:43:53 +00:00
dependencies = [
"serde_derive",
]
[[package]]
name = "serde_derive"
2023-07-29 00:30:57 +00:00
version = "1.0.178"
2022-08-30 07:43:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-29 00:30:57 +00:00
checksum = "f28482318d6641454cb273da158647922d1be6b5a2fcc6165cd89ebdd7ed576b"
2022-08-30 07:43:53 +00:00
dependencies = [
"proc-macro2",
"quote",
2023-07-11 00:17:34 +00:00
"syn 2.0.25",
2022-08-30 07:43:53 +00:00
]
[[package]]
name = "serde_json"
version = "1.0.96"
2022-08-30 07:43:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "057d394a50403bcac12672b2b18fb387ab6d289d957dab67dd201875391e52f1"
2022-08-30 07:43:53 +00:00
dependencies = [
"itoa",
"ryu",
"serde",
]
[[package]]
name = "serde_urlencoded"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
dependencies = [
"form_urlencoded",
"itoa",
"ryu",
"serde",
]
[[package]]
name = "sha1"
2023-02-02 09:28:06 +00:00
version = "0.10.5"
2022-08-30 07:43:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-02 09:28:06 +00:00
checksum = "f04293dc80c3993519f2d7f6f511707ee7094fe0c6d3406feb330cdb3540eba3"
2022-08-30 07:43:53 +00:00
dependencies = [
"cfg-if",
"cpufeatures",
"digest",
]
[[package]]
name = "signal-hook-registry"
version = "1.4.1"
2022-08-30 07:43:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1"
2022-08-30 07:43:53 +00:00
dependencies = [
"libc",
]
[[package]]
name = "slab"
version = "0.4.8"
2022-08-30 07:43:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6528351c9bc8ab22353f9d776db39a20288e8d6c37ef8cfe3317cf875eecfc2d"
2022-08-30 07:43:53 +00:00
dependencies = [
"autocfg",
]
[[package]]
name = "smallvec"
2023-02-02 09:28:06 +00:00
version = "1.10.0"
2022-08-30 07:43:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-02 09:28:06 +00:00
checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0"
2022-08-30 07:43:53 +00:00
[[package]]
name = "socket2"
version = "0.4.9"
2022-08-30 07:43:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662"
2022-08-30 07:43:53 +00:00
dependencies = [
"libc",
"winapi",
]
2022-08-31 07:29:22 +00:00
[[package]]
name = "spin"
version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"
2022-08-30 07:43:53 +00:00
[[package]]
name = "strsim"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
[[package]]
name = "syn"
version = "1.0.109"
2022-08-30 07:43:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
2022-08-30 07:43:53 +00:00
dependencies = [
"proc-macro2",
"quote",
"unicode-ident",
]
2023-04-01 00:10:21 +00:00
[[package]]
name = "syn"
2023-07-11 00:17:34 +00:00
version = "2.0.25"
2023-04-01 00:10:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-11 00:17:34 +00:00
checksum = "15e3fc8c0c74267e2df136e5e5fb656a464158aa57624053375eb9c8c6e25ae2"
2023-04-01 00:10:21 +00:00
dependencies = [
"proc-macro2",
"quote",
"unicode-ident",
]
2022-08-31 13:37:51 +00:00
[[package]]
name = "synstructure"
version = "0.12.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f36bdaa60a83aca3921b5259d5400cbf5e90fc51931376a9bd4a0eb79aa7210f"
dependencies = [
"proc-macro2",
"quote",
"syn 1.0.109",
2022-08-31 13:37:51 +00:00
"unicode-xid",
]
2022-08-30 07:43:53 +00:00
[[package]]
name = "tcp_over_http"
2022-08-30 07:43:53 +00:00
version = "0.1.0"
dependencies = [
"actix",
2022-08-31 07:29:22 +00:00
"actix-tls",
2022-08-30 07:43:53 +00:00
"actix-web",
"actix-web-actors",
"bytes",
2022-08-30 07:43:53 +00:00
"clap",
"env_logger",
2022-08-30 10:33:16 +00:00
"futures",
"hyper-rustls 0.23.2",
2022-08-30 07:43:53 +00:00
"log",
2022-09-02 06:59:07 +00:00
"mktemp",
2022-08-31 13:37:51 +00:00
"pem",
2022-09-01 13:03:20 +00:00
"rand",
"reqwest",
"rustls 0.20.8",
"rustls-pemfile",
"serde",
2022-08-30 10:33:16 +00:00
"tokio",
"tokio-tungstenite",
"urlencoding",
2022-08-31 10:24:54 +00:00
"webpki",
2022-08-31 13:37:51 +00:00
"x509-parser",
2022-08-30 07:43:53 +00:00
]
[[package]]
name = "termcolor"
2023-02-02 09:28:06 +00:00
version = "1.2.0"
2022-08-30 07:43:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-02 09:28:06 +00:00
checksum = "be55cf8942feac5c765c2c993422806843c9a9a45d4d5c407ad6dd2ea95eb9b6"
2022-08-30 07:43:53 +00:00
dependencies = [
"winapi-util",
]
2022-08-30 12:17:21 +00:00
[[package]]
name = "thiserror"
version = "1.0.40"
2022-08-30 12:17:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "978c9a314bd8dc99be594bc3c175faaa9794be04a5a5e153caba6915336cebac"
2022-08-30 12:17:21 +00:00
dependencies = [
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
version = "1.0.40"
2022-08-30 12:17:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f9456a42c5b0d803c8cd86e73dd7cc9edd429499f37a3550d286d5e86720569f"
2022-08-30 12:17:21 +00:00
dependencies = [
"proc-macro2",
"quote",
2023-07-11 00:17:34 +00:00
"syn 2.0.25",
2022-08-30 12:17:21 +00:00
]
2022-08-30 07:43:53 +00:00
[[package]]
name = "time"
version = "0.3.21"
2022-08-30 07:43:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8f3403384eaacbca9923fa06940178ac13e4edb725486d70e8e15881d0c836cc"
2022-08-30 07:43:53 +00:00
dependencies = [
"itoa",
2023-02-02 09:28:06 +00:00
"serde",
"time-core",
2022-08-30 07:43:53 +00:00
"time-macros",
]
2023-02-02 09:28:06 +00:00
[[package]]
name = "time-core"
version = "0.1.1"
2023-02-02 09:28:06 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7300fbefb4dadc1af235a9cef3737cea692a9d97e1b9cbcd4ebdae6f8868e6fb"
2023-02-02 09:28:06 +00:00
2022-08-30 07:43:53 +00:00
[[package]]
name = "time-macros"
version = "0.2.9"
2022-08-30 07:43:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "372950940a5f07bf38dbe211d7283c9e6d7327df53794992d293e534c733d09b"
2023-02-02 09:28:06 +00:00
dependencies = [
"time-core",
]
2022-08-30 07:43:53 +00:00
[[package]]
name = "tinyvec"
version = "1.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
dependencies = [
"tinyvec_macros",
]
[[package]]
name = "tinyvec_macros"
version = "0.1.1"
2022-08-30 07:43:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
2022-08-30 07:43:53 +00:00
[[package]]
name = "tokio"
version = "1.28.1"
2022-08-30 07:43:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0aa32867d44e6f2ce3385e89dceb990188b8bb0fb25b0cf576647a6f98ac5105"
2022-08-30 07:43:53 +00:00
dependencies = [
"autocfg",
"bytes",
"libc",
"mio",
2022-08-30 08:38:26 +00:00
"num_cpus",
2022-08-30 07:43:53 +00:00
"parking_lot",
"pin-project-lite",
"signal-hook-registry",
"socket2",
2022-08-30 08:38:26 +00:00
"tokio-macros",
"windows-sys 0.48.0",
2022-08-30 07:43:53 +00:00
]
2022-08-30 08:38:26 +00:00
[[package]]
name = "tokio-macros"
version = "2.1.0"
2022-08-30 08:38:26 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "630bdcf245f78637c13ec01ffae6187cca34625e8c63150d424b59e55af2675e"
2022-08-30 08:38:26 +00:00
dependencies = [
"proc-macro2",
"quote",
2023-07-11 00:17:34 +00:00
"syn 2.0.25",
2022-08-30 08:38:26 +00:00
]
2022-08-31 07:29:22 +00:00
[[package]]
name = "tokio-rustls"
version = "0.23.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c43ee83903113e03984cb9e5cebe6c04a5116269e900e3ddba8f068a62adda59"
dependencies = [
"rustls 0.20.8",
2022-08-31 07:29:22 +00:00
"tokio",
"webpki",
]
[[package]]
name = "tokio-rustls"
version = "0.24.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e0d409377ff5b1e3ca6437aa86c1eb7d40c134bfec254e44c830defa92669db5"
dependencies = [
"rustls 0.21.1",
"tokio",
]
2022-08-30 12:17:21 +00:00
[[package]]
name = "tokio-tungstenite"
version = "0.18.0"
2022-08-30 12:17:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "54319c93411147bced34cb5609a80e0a8e44c5999c93903a81cd866630ec0bfd"
2022-08-30 12:17:21 +00:00
dependencies = [
"futures-util",
"log",
"rustls 0.20.8",
"rustls-native-certs",
2022-08-30 12:17:21 +00:00
"tokio",
"tokio-rustls 0.23.4",
2022-08-30 12:17:21 +00:00
"tungstenite",
"webpki",
2022-08-30 12:17:21 +00:00
]
2022-08-30 07:43:53 +00:00
[[package]]
name = "tokio-util"
version = "0.7.8"
2022-08-30 07:43:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "806fe8c2c87eccc8b3267cbae29ed3ab2d0bd37fca70ab622e46aaa9375ddb7d"
2022-08-30 07:43:53 +00:00
dependencies = [
"bytes",
"futures-core",
"futures-sink",
"pin-project-lite",
"tokio",
"tracing",
]
2022-08-30 08:38:26 +00:00
[[package]]
name = "tower-service"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52"
2022-08-30 07:43:53 +00:00
[[package]]
name = "tracing"
2023-02-02 09:28:06 +00:00
version = "0.1.37"
2022-08-30 07:43:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-02 09:28:06 +00:00
checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8"
2022-08-30 07:43:53 +00:00
dependencies = [
"cfg-if",
"log",
"pin-project-lite",
"tracing-core",
]
[[package]]
name = "tracing-core"
version = "0.1.31"
2022-08-30 07:43:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0955b8137a1df6f1a2e9a37d8a6656291ff0297c1a97c24e0d8425fe2312f79a"
2022-08-30 07:43:53 +00:00
dependencies = [
"once_cell",
]
2022-08-30 08:38:26 +00:00
[[package]]
name = "try-lock"
2023-02-02 09:28:06 +00:00
version = "0.2.4"
2022-08-30 08:38:26 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-02 09:28:06 +00:00
checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed"
2022-08-30 08:38:26 +00:00
2022-08-30 12:17:21 +00:00
[[package]]
name = "tungstenite"
version = "0.18.0"
2022-08-30 12:17:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "30ee6ab729cd4cf0fd55218530c4522ed30b7b6081752839b68fcec8d0960788"
2022-08-30 12:17:21 +00:00
dependencies = [
2023-02-02 09:28:06 +00:00
"base64 0.13.1",
2022-08-30 12:17:21 +00:00
"byteorder",
"bytes",
"http",
"httparse",
"log",
"rand",
"rustls 0.20.8",
"sha1",
2022-08-30 12:17:21 +00:00
"thiserror",
"url",
"utf-8",
"webpki",
2022-08-30 12:17:21 +00:00
]
2022-08-30 07:43:53 +00:00
[[package]]
name = "typenum"
2023-02-02 09:28:06 +00:00
version = "1.16.0"
2022-08-30 07:43:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-02 09:28:06 +00:00
checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba"
2022-08-30 07:43:53 +00:00
[[package]]
name = "unicode-bidi"
version = "0.3.13"
2022-08-30 07:43:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460"
2022-08-30 07:43:53 +00:00
[[package]]
name = "unicode-ident"
version = "1.0.8"
2022-08-30 07:43:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e5464a87b239f13a63a501f2701565754bae92d243d4bb7eb12f6d57d2269bf4"
2022-08-30 07:43:53 +00:00
[[package]]
name = "unicode-normalization"
2023-02-02 09:28:06 +00:00
version = "0.1.22"
2022-08-30 07:43:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-02 09:28:06 +00:00
checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921"
2022-08-30 07:43:53 +00:00
dependencies = [
"tinyvec",
]
2022-08-31 13:37:51 +00:00
[[package]]
name = "unicode-xid"
2023-02-02 09:28:06 +00:00
version = "0.2.4"
2022-08-31 13:37:51 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-02 09:28:06 +00:00
checksum = "f962df74c8c05a667b5ee8bcf162993134c104e96440b663c8daa176dc772d8c"
2022-08-31 13:37:51 +00:00
2022-08-31 07:29:22 +00:00
[[package]]
name = "untrusted"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
2022-08-30 07:43:53 +00:00
[[package]]
name = "url"
2023-02-02 09:28:06 +00:00
version = "2.3.1"
2022-08-30 07:43:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-02 09:28:06 +00:00
checksum = "0d68c799ae75762b8c3fe375feb6600ef5602c883c5d21eb51c09f22b83c4643"
2022-08-30 07:43:53 +00:00
dependencies = [
"form_urlencoded",
"idna",
"percent-encoding",
]
2022-08-30 12:17:21 +00:00
[[package]]
name = "urlencoding"
2023-07-22 08:05:11 +00:00
version = "2.1.3"
2022-08-30 12:17:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-22 08:05:11 +00:00
checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da"
2022-08-30 12:17:21 +00:00
[[package]]
name = "utf-8"
version = "0.7.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
[[package]]
name = "utf8parse"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a"
2022-09-02 06:59:07 +00:00
[[package]]
name = "uuid"
2023-02-02 09:28:06 +00:00
version = "1.2.2"
2022-09-02 06:59:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-02 09:28:06 +00:00
checksum = "422ee0de9031b5b948b97a8fc04e3aa35230001a722ddd27943e0be31564ce4c"
2022-09-02 06:59:07 +00:00
dependencies = [
"getrandom",
]
2022-08-30 07:43:53 +00:00
[[package]]
name = "version_check"
version = "0.9.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
2022-08-30 08:38:26 +00:00
[[package]]
name = "want"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0"
dependencies = [
"log",
"try-lock",
]
2022-08-30 07:43:53 +00:00
[[package]]
name = "wasi"
version = "0.11.0+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
2022-08-30 08:38:26 +00:00
[[package]]
name = "wasm-bindgen"
version = "0.2.86"
2022-08-30 08:38:26 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5bba0e8cb82ba49ff4e229459ff22a191bbe9a1cb3a341610c9c33efc27ddf73"
2022-08-30 08:38:26 +00:00
dependencies = [
"cfg-if",
"wasm-bindgen-macro",
]
[[package]]
name = "wasm-bindgen-backend"
version = "0.2.86"
2022-08-30 08:38:26 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "19b04bc93f9d6bdee709f6bd2118f57dd6679cf1176a1af464fca3ab0d66d8fb"
2022-08-30 08:38:26 +00:00
dependencies = [
"bumpalo",
"log",
"once_cell",
"proc-macro2",
"quote",
2023-07-11 00:17:34 +00:00
"syn 2.0.25",
2022-08-30 08:38:26 +00:00
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-futures"
version = "0.4.36"
2022-08-30 08:38:26 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2d1985d03709c53167ce907ff394f5316aa22cb4e12761295c5dc57dacb6297e"
2022-08-30 08:38:26 +00:00
dependencies = [
"cfg-if",
"js-sys",
"wasm-bindgen",
"web-sys",
]
[[package]]
name = "wasm-bindgen-macro"
version = "0.2.86"
2022-08-30 08:38:26 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "14d6b024f1a526bb0234f52840389927257beb670610081360e5a03c5df9c258"
2022-08-30 08:38:26 +00:00
dependencies = [
"quote",
"wasm-bindgen-macro-support",
]
[[package]]
name = "wasm-bindgen-macro-support"
version = "0.2.86"
2022-08-30 08:38:26 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e128beba882dd1eb6200e1dc92ae6c5dbaa4311aa7bb211ca035779e5efc39f8"
2022-08-30 08:38:26 +00:00
dependencies = [
"proc-macro2",
"quote",
2023-07-11 00:17:34 +00:00
"syn 2.0.25",
2022-08-30 08:38:26 +00:00
"wasm-bindgen-backend",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-shared"
version = "0.2.86"
2022-08-30 08:38:26 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ed9d5b4305409d1fc9482fee2d7f9bcbf24b3972bf59817ef757e23982242a93"
2022-08-30 08:38:26 +00:00
[[package]]
name = "web-sys"
version = "0.3.63"
2022-08-30 08:38:26 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3bdd9ef4e984da1187bf8110c5cf5b845fbc87a23602cdf912386a76fcd3a7c2"
2022-08-30 08:38:26 +00:00
dependencies = [
"js-sys",
"wasm-bindgen",
]
2022-08-31 07:29:22 +00:00
[[package]]
name = "webpki"
version = "0.22.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f095d78192e208183081cc07bc5515ef55216397af48b873e5edcd72637fa1bd"
dependencies = [
"ring",
"untrusted",
]
[[package]]
name = "webpki-roots"
2023-02-02 09:28:06 +00:00
version = "0.22.6"
2022-08-31 07:29:22 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-02 09:28:06 +00:00
checksum = "b6c71e40d7d2c34a5106301fb632274ca37242cd0c9d3e64dbece371a40a2d87"
2022-08-31 07:29:22 +00:00
dependencies = [
"webpki",
]
2022-08-30 07:43:53 +00:00
[[package]]
name = "winapi"
version = "0.3.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
dependencies = [
"winapi-i686-pc-windows-gnu",
"winapi-x86_64-pc-windows-gnu",
]
[[package]]
name = "winapi-i686-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
[[package]]
name = "winapi-util"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
dependencies = [
"winapi",
]
[[package]]
name = "winapi-x86_64-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
2022-11-29 00:37:53 +00:00
[[package]]
name = "windows-sys"
version = "0.42.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7"
dependencies = [
"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-08-30 07:43:53 +00:00
]
2022-11-29 00:37:53 +00:00
[[package]]
2023-02-02 09:28:06 +00:00
name = "windows-sys"
version = "0.45.0"
2022-11-29 00:37:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-02 09:28:06 +00:00
checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
dependencies = [
"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",
]
[[package]]
name = "windows-targets"
version = "0.42.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
dependencies = [
"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",
2023-02-02 09:28:06 +00:00
]
2022-11-29 00:37:53 +00:00
2022-08-30 07:43:53 +00:00
[[package]]
2023-02-02 09:28:06 +00:00
name = "windows-targets"
version = "0.48.0"
2022-08-30 07:43:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7b1eb6f0cd7c80c79759c929114ef071b87354ce476d9d94271031c0497adfd5"
2023-02-02 09:28:06 +00:00
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",
2023-02-02 09:28:06 +00:00
]
2022-08-30 07:43:53 +00:00
2022-11-29 00:37:53 +00:00
[[package]]
2023-02-02 09:28:06 +00:00
name = "windows_aarch64_gnullvm"
version = "0.42.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
[[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"
2022-11-29 00:37:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
2022-11-29 00:37:53 +00:00
2022-08-30 07:43:53 +00:00
[[package]]
2023-02-02 09:28:06 +00:00
name = "windows_aarch64_msvc"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3"
[[package]]
name = "windows_i686_gnu"
version = "0.42.2"
2022-08-30 07:43:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
2022-08-30 07:43:53 +00:00
2022-11-29 00:37:53 +00:00
[[package]]
name = "windows_i686_gnu"
version = "0.48.0"
2022-11-29 00:37:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241"
2022-11-29 00:37:53 +00:00
2022-08-30 07:43:53 +00:00
[[package]]
name = "windows_i686_msvc"
version = "0.42.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
[[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"
2022-08-30 07:43:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
2022-08-30 07:43:53 +00:00
2022-11-29 00:37:53 +00:00
[[package]]
name = "windows_x86_64_gnu"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1"
[[package]]
name = "windows_x86_64_gnullvm"
version = "0.42.2"
2022-11-29 00:37:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
2022-11-29 00:37:53 +00:00
[[package]]
name = "windows_x86_64_gnullvm"
version = "0.48.0"
2022-08-30 07:43:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953"
2022-08-30 07:43:53 +00:00
2022-11-29 00:37:53 +00:00
[[package]]
name = "windows_x86_64_msvc"
version = "0.42.2"
2022-11-29 00:37:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
[[package]]
name = "windows_x86_64_msvc"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a"
2022-11-29 00:37:53 +00:00
2022-08-30 08:38:26 +00:00
[[package]]
name = "winreg"
version = "0.10.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d"
dependencies = [
"winapi",
]
2022-08-31 13:37:51 +00:00
[[package]]
name = "x509-parser"
version = "0.15.0"
2022-08-31 13:37:51 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bab0c2f54ae1d92f4fcb99c0b7ccf0b1e3451cbd395e5f115ccbdbcb18d4f634"
2022-08-31 13:37:51 +00:00
dependencies = [
"asn1-rs",
"data-encoding",
"der-parser",
"lazy_static",
"nom",
"oid-registry",
"rusticata-macros",
"thiserror",
"time",
]
2022-08-30 07:43:53 +00:00
[[package]]
name = "zstd"
2023-02-02 09:28:06 +00:00
version = "0.12.3+zstd.1.5.2"
2022-08-30 07:43:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-02 09:28:06 +00:00
checksum = "76eea132fb024e0e13fd9c2f5d5d595d8a967aa72382ac2f9d39fcc95afd0806"
2022-08-30 07:43:53 +00:00
dependencies = [
"zstd-safe",
]
[[package]]
name = "zstd-safe"
version = "6.0.5+zstd.1.5.4"
2022-08-30 07:43:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d56d9e60b4b1758206c238a10165fbcae3ca37b01744e394c463463f6529d23b"
2022-08-30 07:43:53 +00:00
dependencies = [
"libc",
"zstd-sys",
]
[[package]]
name = "zstd-sys"
version = "2.0.8+zstd.1.5.5"
2022-08-30 07:43:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5556e6ee25d32df2586c098bbfa278803692a20d0ab9565e049480d52707ec8c"
2022-08-30 07:43:53 +00:00
dependencies = [
"cc",
"libc",
2023-02-02 09:28:06 +00:00
"pkg-config",
2022-08-30 07:43:53 +00:00
]