bkapi/Cargo.lock

2987 lines
71 KiB
Plaintext
Raw Normal View History

2021-07-28 02:25:53 +00:00
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
[[package]]
2021-07-28 19:08:19 +00:00
name = "actix-codec"
2022-03-23 19:25:21 +00:00
version = "0.5.0"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-23 19:25:21 +00:00
checksum = "57a7559404a7f3573127aab53c08ce37a6c6a315c374a31070f3c91cd1b4a7fe"
2021-07-28 02:25:53 +00:00
dependencies = [
2021-07-28 19:08:19 +00:00
"bitflags",
"bytes",
"futures-core",
"futures-sink",
"log",
2021-12-09 04:31:29 +00:00
"memchr",
2021-07-28 19:08:19 +00:00
"pin-project-lite",
"tokio",
2022-10-12 20:38:11 +00:00
"tokio-util",
2021-07-28 02:25:53 +00:00
]
[[package]]
2021-07-28 19:08:19 +00:00
name = "actix-http"
2022-10-12 20:38:11 +00:00
version = "3.2.2"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "0c83abf9903e1f0ad9973cc4f7b9767fd5a03a583f51a5b7a339e07987cd2724"
2021-07-28 02:25:53 +00:00
dependencies = [
2021-07-28 19:08:19 +00:00
"actix-codec",
"actix-rt",
"actix-service",
"actix-utils",
"ahash",
"base64",
"bitflags",
2022-03-23 19:25:21 +00:00
"brotli",
2021-07-28 19:08:19 +00:00
"bytes",
"bytestring",
"derive_more",
"encoding_rs",
"flate2",
"futures-core",
"h2",
"http",
"httparse",
2021-12-09 04:31:29 +00:00
"httpdate",
2021-07-28 19:08:19 +00:00
"itoa",
"language-tags",
"local-channel",
"mime",
"percent-encoding",
"pin-project-lite",
"rand",
2022-10-12 20:38:11 +00:00
"sha1",
2021-07-28 19:08:19 +00:00
"smallvec",
2022-10-12 20:38:11 +00:00
"tracing",
2021-07-28 19:08:19 +00:00
"zstd",
2021-07-28 02:25:53 +00:00
]
[[package]]
2021-07-28 19:08:19 +00:00
name = "actix-macros"
2021-12-09 04:31:29 +00:00
version = "0.2.3"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-09 04:31:29 +00:00
checksum = "465a6172cf69b960917811022d8f29bc0b7fa1398bc4f78b3c466673db1213b6"
2021-07-28 02:25:53 +00:00
dependencies = [
2021-07-28 19:08:19 +00:00
"quote",
"syn",
2021-07-28 02:25:53 +00:00
]
[[package]]
2021-07-28 19:08:19 +00:00
name = "actix-router"
2022-10-12 20:38:11 +00:00
version = "0.5.1"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "d66ff4d247d2b160861fa2866457e85706833527840e4133f8f49aa423a38799"
2021-07-28 02:25:53 +00:00
dependencies = [
2021-07-28 19:08:19 +00:00
"bytestring",
"http",
"regex",
"serde",
2022-10-12 20:38:11 +00:00
"tracing",
2021-07-28 02:25:53 +00:00
]
[[package]]
2021-07-28 19:08:19 +00:00
name = "actix-rt"
2022-03-23 19:25:21 +00:00
version = "2.7.0"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-23 19:25:21 +00:00
checksum = "7ea16c295198e958ef31930a6ef37d0fb64e9ca3b6116e6b93a8bdae96ee1000"
2021-07-28 02:25:53 +00:00
dependencies = [
2021-07-28 19:08:19 +00:00
"futures-core",
"tokio",
2021-07-28 02:25:53 +00:00
]
[[package]]
2021-07-28 19:08:19 +00:00
name = "actix-server"
2022-03-23 19:25:21 +00:00
version = "2.1.1"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-23 19:25:21 +00:00
checksum = "0da34f8e659ea1b077bb4637948b815cd3768ad5a188fdcd74ff4d84240cd824"
2021-07-28 02:25:53 +00:00
dependencies = [
2021-07-28 19:08:19 +00:00
"actix-rt",
"actix-service",
"actix-utils",
2021-07-28 02:25:53 +00:00
"futures-core",
2021-12-09 04:31:29 +00:00
"futures-util",
2022-03-23 19:25:21 +00:00
"mio",
2021-07-28 19:08:19 +00:00
"num_cpus",
2021-12-09 04:31:29 +00:00
"socket2",
2021-07-28 19:08:19 +00:00
"tokio",
2022-03-23 19:25:21 +00:00
"tracing",
2021-07-28 02:25:53 +00:00
]
[[package]]
2021-07-28 19:08:19 +00:00
name = "actix-service"
2022-03-23 19:25:21 +00:00
version = "2.0.2"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-23 19:25:21 +00:00
checksum = "3b894941f818cfdc7ccc4b9e60fa7e53b5042a2e8567270f9147d5591893373a"
2021-07-28 02:25:53 +00:00
dependencies = [
2021-07-28 19:08:19 +00:00
"futures-core",
"paste",
"pin-project-lite",
2021-07-28 02:25:53 +00:00
]
[[package]]
2021-07-28 19:08:19 +00:00
name = "actix-utils"
version = "3.0.0"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-28 19:08:19 +00:00
checksum = "e491cbaac2e7fc788dfff99ff48ef317e23b3cf63dbaf7aaab6418f40f92aa94"
2021-07-28 02:25:53 +00:00
dependencies = [
2021-07-28 19:08:19 +00:00
"local-waker",
"pin-project-lite",
2021-07-28 02:25:53 +00:00
]
[[package]]
2021-07-28 19:08:19 +00:00
name = "actix-web"
2022-10-12 20:38:11 +00:00
version = "4.2.1"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "d48f7b6534e06c7bfc72ee91db7917d4af6afe23e7d223b51e68fffbb21e96b9"
2021-07-28 02:25:53 +00:00
dependencies = [
2021-07-28 19:08:19 +00:00
"actix-codec",
"actix-http",
"actix-macros",
"actix-router",
"actix-rt",
"actix-server",
"actix-service",
"actix-utils",
"actix-web-codegen",
"ahash",
"bytes",
2022-03-23 19:25:21 +00:00
"bytestring",
2021-07-28 19:08:19 +00:00
"cfg-if",
"cookie",
"derive_more",
"encoding_rs",
2021-07-28 02:25:53 +00:00
"futures-core",
2021-07-28 19:08:19 +00:00
"futures-util",
2022-10-12 20:38:11 +00:00
"http",
2021-07-28 19:08:19 +00:00
"itoa",
"language-tags",
2021-07-28 02:25:53 +00:00
"log",
2021-07-28 19:08:19 +00:00
"mime",
2021-07-28 02:25:53 +00:00
"once_cell",
2021-12-09 04:31:29 +00:00
"pin-project-lite",
2021-07-28 19:08:19 +00:00
"regex",
"serde",
"serde_json",
"serde_urlencoded",
"smallvec",
2021-07-28 02:25:53 +00:00
"socket2",
2022-03-23 19:25:21 +00:00
"time",
2021-07-28 19:08:19 +00:00
"url",
2021-07-28 02:25:53 +00:00
]
[[package]]
2021-07-28 19:08:19 +00:00
name = "actix-web-codegen"
2022-10-12 20:38:11 +00:00
version = "4.1.0"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "1fa9362663c8643d67b2d5eafba49e4cb2c8a053a29ed00a0bea121f17c76b13"
2021-07-28 02:25:53 +00:00
dependencies = [
2021-12-09 04:31:29 +00:00
"actix-router",
2021-07-28 19:08:19 +00:00
"proc-macro2",
"quote",
"syn",
2021-07-28 02:25:53 +00:00
]
[[package]]
2021-07-28 19:08:19 +00:00
name = "adler"
version = "1.0.2"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-28 19:08:19 +00:00
checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
2021-07-28 02:25:53 +00:00
[[package]]
2021-07-28 19:08:19 +00:00
name = "ahash"
2021-12-09 04:31:29 +00:00
version = "0.7.6"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-09 04:31:29 +00:00
checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47"
2021-07-28 02:25:53 +00:00
dependencies = [
2021-07-28 19:08:19 +00:00
"getrandom",
2021-07-28 02:25:53 +00:00
"once_cell",
2021-07-28 19:08:19 +00:00
"version_check",
2021-07-28 02:25:53 +00:00
]
[[package]]
2021-07-28 19:08:19 +00:00
name = "aho-corasick"
2022-10-12 20:38:11 +00:00
version = "0.7.19"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "b4f55bd91a0978cbfd91c457a164bab8b4001c833b7f323132c0a4e1922dd44e"
2021-07-28 02:25:53 +00:00
dependencies = [
"memchr",
]
2022-03-23 19:25:21 +00:00
[[package]]
name = "alloc-no-stdlib"
2022-10-12 20:38:11 +00:00
version = "2.0.4"
2022-03-23 19:25:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3"
2022-03-23 19:25:21 +00:00
[[package]]
name = "alloc-stdlib"
2022-10-12 20:38:11 +00:00
version = "0.2.2"
2022-03-23 19:25:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece"
2022-03-23 19:25:21 +00:00
dependencies = [
"alloc-no-stdlib",
]
[[package]]
name = "async-nats"
version = "0.21.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a5788cd6eb396656c504ad4b2b7fd384715a4c188c03490a9d68f75931a1b182"
dependencies = [
"base64",
"base64-url",
"bytes",
"futures",
"http",
"itertools",
"itoa",
"lazy_static",
"nkeys",
"nuid",
"once_cell",
"regex",
"ring",
"rustls-native-certs",
"rustls-pemfile 0.3.0",
"serde",
"serde_json",
"serde_nanos",
"serde_repr",
"subslice",
"time",
"tokio",
"tokio-rustls",
"tokio-util",
"tracing",
"url",
]
2021-07-28 02:25:53 +00:00
[[package]]
name = "async-trait"
2022-10-12 20:38:11 +00:00
version = "0.1.57"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "76464446b8bc32758d7e88ee1a804d9914cd9b1cb264c029899680b0be29826f"
2021-07-28 02:25:53 +00:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "atoi"
2022-10-12 20:38:11 +00:00
version = "1.0.0"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "d7c57d12312ff59c811c0643f4d80830505833c9ffaebd193d819392b265be8e"
2021-07-28 02:25:53 +00:00
dependencies = [
"num-traits",
]
[[package]]
name = "atty"
version = "0.2.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
dependencies = [
"hermit-abi",
"libc",
"winapi",
]
2021-07-28 02:25:53 +00:00
[[package]]
name = "autocfg"
2022-03-23 19:25:21 +00:00
version = "1.1.0"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-23 19:25:21 +00:00
checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
2021-07-28 02:25:53 +00:00
[[package]]
name = "base64"
version = "0.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd"
[[package]]
name = "base64-url"
version = "1.4.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "67a99c239d0c7e77c85dddfa9cebce48704b3c49550fcd3b84dd637e4484899f"
dependencies = [
"base64",
]
[[package]]
name = "base64ct"
version = "1.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e6b4d9b1225d28d360ec6a231d65af1fd99a2a095154c8040689617290569c5c"
2021-07-28 02:25:53 +00:00
[[package]]
name = "bitflags"
2021-12-09 04:31:29 +00:00
version = "1.3.2"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-09 04:31:29 +00:00
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
2021-07-28 02:25:53 +00:00
[[package]]
name = "bk-tree"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6121f6e107e94d717b5ca2631d56e7c2ed1542a21b2eb87b4bda1d6c1420ef3f"
dependencies = [
"fnv",
"triple_accel",
]
[[package]]
name = "bkapi"
version = "0.1.0"
dependencies = [
2021-07-28 19:08:19 +00:00
"actix-http",
"actix-service",
"actix-web",
"async-nats",
2021-07-28 02:25:53 +00:00
"bk-tree",
"clap",
"dotenvy",
2021-07-28 02:25:53 +00:00
"futures",
"hamming",
"lazy_static",
2022-10-12 20:38:11 +00:00
"opentelemetry 0.18.0",
2021-07-28 02:25:53 +00:00
"opentelemetry-jaeger",
"prometheus",
"serde",
"serde_json",
"sqlx",
"thiserror",
2021-07-28 19:08:19 +00:00
"tokio",
2021-07-28 02:25:53 +00:00
"tracing",
2021-07-28 19:08:19 +00:00
"tracing-actix-web",
2022-10-12 20:38:11 +00:00
"tracing-opentelemetry 0.18.0",
2021-07-28 02:25:53 +00:00
"tracing-subscriber",
"tracing-unwrap",
]
2021-07-28 19:43:13 +00:00
[[package]]
name = "bkapi-client"
version = "0.1.0"
dependencies = [
"futures",
2022-10-12 20:38:11 +00:00
"opentelemetry 0.17.0",
2021-07-28 19:43:13 +00:00
"opentelemetry-http",
"reqwest",
"serde",
"serde_json",
"tokio",
"tracing",
2022-10-12 20:38:11 +00:00
"tracing-opentelemetry 0.17.4",
2021-07-28 19:43:13 +00:00
]
[[package]]
name = "block-buffer"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4152116fd6e9dadb291ae18fc1ec3575ed6d84c29642d97890f4b4a3417297e4"
dependencies = [
"generic-array",
]
2021-07-28 02:25:53 +00:00
[[package]]
2021-07-28 19:08:19 +00:00
name = "block-buffer"
2022-10-12 20:38:11 +00:00
version = "0.10.3"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "69cce20737498f97b993470a6e536b8523f0af7892a4f928cceb1ac5e52ebe7e"
2021-07-28 02:25:53 +00:00
dependencies = [
2022-03-23 19:25:21 +00:00
"generic-array",
2021-07-28 02:25:53 +00:00
]
[[package]]
2022-03-23 19:25:21 +00:00
name = "brotli"
2022-10-12 20:38:11 +00:00
version = "3.3.4"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "a1a0b1dbcc8ae29329621f8d4f0d835787c1c38bb1401979b49d13b0b305ff68"
2021-07-28 02:25:53 +00:00
dependencies = [
2022-03-23 19:25:21 +00:00
"alloc-no-stdlib",
"alloc-stdlib",
"brotli-decompressor",
]
[[package]]
name = "brotli-decompressor"
version = "2.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "59ad2d4653bf5ca36ae797b1f4bb4dbddb60ce49ca4aed8a2ce4829f60425b80"
dependencies = [
"alloc-no-stdlib",
"alloc-stdlib",
2021-07-28 02:25:53 +00:00
]
[[package]]
name = "bumpalo"
2022-10-12 20:38:11 +00:00
version = "3.11.0"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "c1ad822118d20d2c234f427000d5acc36eabe1e29a348c89b63dd60b13f28e5d"
2021-07-28 02:25:53 +00:00
[[package]]
name = "byteorder"
version = "1.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
[[package]]
name = "bytes"
2022-10-12 20:38:11 +00:00
version = "1.2.1"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "ec8a7b6a70fde80372154c65702f00a0f56f3e1c36abbc6c440484be248856db"
2021-07-28 02:25:53 +00:00
[[package]]
2021-07-28 19:08:19 +00:00
name = "bytestring"
2022-10-12 20:38:11 +00:00
version = "1.1.0"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "86b6a75fd3048808ef06af5cd79712be8111960adaf89d90250974b38fc3928a"
2021-07-28 19:08:19 +00:00
dependencies = [
"bytes",
]
2021-07-28 02:25:53 +00:00
[[package]]
name = "cc"
2022-03-23 19:25:21 +00:00
version = "1.0.73"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-23 19:25:21 +00:00
checksum = "2fff2a6927b3bb87f9595d67196a70493f627687a71d87a0d692242c33f58c11"
2021-07-28 19:08:19 +00:00
dependencies = [
"jobserver",
]
2021-07-28 02:25:53 +00:00
[[package]]
name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
[[package]]
name = "clap"
version = "4.0.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6ea54a38e4bce14ff6931c72e5b3c43da7051df056913d4e7e1fcdb1c03df69d"
dependencies = [
"atty",
"bitflags",
"clap_derive",
"clap_lex",
"once_cell",
"strsim",
"termcolor",
]
[[package]]
name = "clap_derive"
version = "4.0.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c42f169caba89a7d512b5418b09864543eeb4d497416c917d7137863bd2076ad"
dependencies = [
"heck",
"proc-macro-error",
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "clap_lex"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0d4198f73e42b4936b35b5bb248d81d2b595ecb170da0bac7655c54eedfa8da8"
dependencies = [
"os_str_bytes",
]
[[package]]
name = "const-oid"
version = "0.6.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9d6f2aa4d0537bcc1c74df8755072bd31c1ef1a3a1b85a68e8404a8c353b7b8b"
2021-07-28 02:25:53 +00:00
[[package]]
2021-07-28 19:08:19 +00:00
name = "convert_case"
version = "0.4.0"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-28 19:08:19 +00:00
checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e"
2021-07-28 02:25:53 +00:00
[[package]]
name = "cookie"
2022-10-12 20:38:11 +00:00
version = "0.16.1"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "344adc371239ef32293cb1c4fe519592fcf21206c79c02854320afcdf3ab4917"
2021-07-28 02:25:53 +00:00
dependencies = [
"percent-encoding",
2022-03-23 19:25:21 +00:00
"time",
2021-07-28 02:25:53 +00:00
"version_check",
]
2021-07-28 19:43:13 +00:00
[[package]]
name = "core-foundation"
2022-03-23 19:25:21 +00:00
version = "0.9.3"
2021-07-28 19:43:13 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-23 19:25:21 +00:00
checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146"
2021-07-28 19:43:13 +00:00
dependencies = [
"core-foundation-sys",
"libc",
]
[[package]]
name = "core-foundation-sys"
2021-12-09 04:31:29 +00:00
version = "0.8.3"
2021-07-28 19:43:13 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-09 04:31:29 +00:00
checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc"
2021-07-28 19:43:13 +00:00
2021-07-28 02:25:53 +00:00
[[package]]
name = "cpufeatures"
2022-10-12 20:38:11 +00:00
version = "0.2.5"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "28d997bd5e24a5928dd43e46dc529867e207907fe0b239c3477d924f7f2ca320"
2021-07-28 02:25:53 +00:00
dependencies = [
"libc",
]
[[package]]
name = "crc"
2022-10-12 20:38:11 +00:00
version = "3.0.0"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "53757d12b596c16c78b83458d732a5d1a17ab3f53f2f7412f6fb57cc8a140ab3"
2021-07-28 02:25:53 +00:00
dependencies = [
2021-12-09 04:31:29 +00:00
"crc-catalog",
2021-07-28 02:25:53 +00:00
]
2021-12-09 04:31:29 +00:00
[[package]]
name = "crc-catalog"
2022-10-12 20:38:11 +00:00
version = "2.1.0"
2021-12-09 04:31:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "2d0165d2900ae6778e36e80bbc4da3b5eefccee9ba939761f9c2882a5d9af3ff"
2021-12-09 04:31:29 +00:00
2021-07-28 02:25:53 +00:00
[[package]]
name = "crc32fast"
2022-03-23 19:25:21 +00:00
version = "1.3.2"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-23 19:25:21 +00:00
checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d"
2021-07-28 02:25:53 +00:00
dependencies = [
2021-07-28 19:08:19 +00:00
"cfg-if",
2021-07-28 02:25:53 +00:00
]
[[package]]
name = "crossbeam-channel"
2022-10-12 20:38:11 +00:00
version = "0.5.6"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "c2dd04ddaf88237dc3b8d8f9a3c1004b506b54b3313403944054d23c0870c521"
2021-07-28 02:25:53 +00:00
dependencies = [
2021-07-28 19:08:19 +00:00
"cfg-if",
2021-07-28 02:25:53 +00:00
"crossbeam-utils",
]
[[package]]
name = "crossbeam-queue"
2022-10-12 20:38:11 +00:00
version = "0.3.6"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "1cd42583b04998a5363558e5f9291ee5a5ff6b49944332103f251e7479a82aa7"
2021-07-28 02:25:53 +00:00
dependencies = [
2021-07-28 19:08:19 +00:00
"cfg-if",
2021-07-28 02:25:53 +00:00
"crossbeam-utils",
]
[[package]]
name = "crossbeam-utils"
2022-10-12 20:38:11 +00:00
version = "0.8.12"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "edbafec5fa1f196ca66527c1b12c2ec4745ca14b50f1ad8f9f6f720b55d11fac"
2021-07-28 02:25:53 +00:00
dependencies = [
2021-07-28 19:08:19 +00:00
"cfg-if",
2021-07-28 02:25:53 +00:00
]
2022-03-23 19:25:21 +00:00
[[package]]
name = "crypto-common"
2022-10-12 20:38:11 +00:00
version = "0.1.6"
2022-03-23 19:25:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
2022-03-23 19:25:21 +00:00
dependencies = [
"generic-array",
"typenum",
]
[[package]]
name = "curve25519-dalek"
version = "3.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0b9fdf9972b2bd6af2d913799d9ebc165ea4d2e65878e329d9c6b372c4491b61"
dependencies = [
"byteorder",
"digest 0.9.0",
"rand_core 0.5.1",
"subtle",
"zeroize",
]
2021-07-28 02:25:53 +00:00
[[package]]
2022-10-12 20:38:11 +00:00
name = "dashmap"
version = "5.4.0"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "907076dfda823b0b36d2a1bb5f90c96660a5bbcd7729e10727f07858f22c4edc"
2021-07-28 02:25:53 +00:00
dependencies = [
2022-10-12 20:38:11 +00:00
"cfg-if",
"hashbrown",
"lock_api",
"once_cell",
"parking_lot_core 0.9.3",
2021-07-28 02:25:53 +00:00
]
[[package]]
name = "data-encoding"
version = "2.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3ee2393c4a91429dffb4bedf19f4d6abf27d8a732c8ce4980305d782e5426d57"
[[package]]
name = "der"
version = "0.4.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "79b71cca7d95d7681a4b3b9cdf63c8dbc3730d0584c2c74e31416d64a90493f4"
dependencies = [
"const-oid",
]
2021-07-28 02:25:53 +00:00
[[package]]
2021-07-28 19:08:19 +00:00
name = "derive_more"
2021-12-09 04:31:29 +00:00
version = "0.99.17"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-09 04:31:29 +00:00
checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321"
2021-07-28 02:25:53 +00:00
dependencies = [
2021-07-28 19:08:19 +00:00
"convert_case",
"proc-macro2",
2021-07-28 02:25:53 +00:00
"quote",
2022-03-23 19:25:21 +00:00
"rustc_version",
2021-07-28 02:25:53 +00:00
"syn",
]
[[package]]
name = "digest"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066"
dependencies = [
"generic-array",
]
2021-07-28 02:25:53 +00:00
[[package]]
name = "digest"
2022-10-12 20:38:11 +00:00
version = "0.10.5"
2022-03-23 19:25:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "adfbc57365a37acbd2ebf2b64d7e69bb766e2fea813521ed536f5d0520dcf86c"
2022-03-23 19:25:21 +00:00
dependencies = [
"block-buffer 0.10.3",
2022-03-23 19:25:21 +00:00
"crypto-common",
2022-10-12 20:38:11 +00:00
"subtle",
2022-03-23 19:25:21 +00:00
]
2021-07-28 02:25:53 +00:00
[[package]]
name = "dirs"
2022-03-23 19:25:21 +00:00
version = "4.0.0"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-23 19:25:21 +00:00
checksum = "ca3aa72a6f96ea37bbc5aa912f6788242832f75369bdfdadcb0e38423f100059"
2021-07-28 02:25:53 +00:00
dependencies = [
"dirs-sys",
]
[[package]]
name = "dirs-sys"
2022-03-23 19:25:21 +00:00
version = "0.3.7"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-23 19:25:21 +00:00
checksum = "1b1d1d91c932ef41c0f2663aa8b0ca0342d444d842c06914aa0a7e352d0bada6"
2021-07-28 02:25:53 +00:00
dependencies = [
"libc",
"redox_users",
"winapi",
]
[[package]]
2022-10-12 20:38:11 +00:00
name = "dotenvy"
version = "0.15.5"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "ed9155c8f4dc55c7470ae9da3f63c6785245093b3f6aeb0f5bf2e968efbba314"
dependencies = [
"dirs",
]
2021-07-28 02:25:53 +00:00
[[package]]
name = "ed25519"
version = "1.5.2"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1e9c280362032ea4203659fc489832d0204ef09f247a0506f170dafcac08c369"
dependencies = [
"signature",
]
2021-07-28 02:25:53 +00:00
2021-07-28 19:08:19 +00:00
[[package]]
name = "ed25519-dalek"
version = "1.0.1"
2021-07-28 19:08:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c762bae6dcaf24c4c84667b8579785430908723d5c889f469d76a41d59cc7a9d"
2021-07-28 19:08:19 +00:00
dependencies = [
"curve25519-dalek",
"ed25519",
"sha2 0.9.9",
"zeroize",
2021-07-28 19:08:19 +00:00
]
2021-07-28 02:25:53 +00:00
[[package]]
name = "either"
version = "1.8.0"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "90e5c1c8368803113bf0c9584fc495a58b86dc8a29edbf8fe877d21d9507e797"
2021-07-28 02:25:53 +00:00
[[package]]
name = "encoding_rs"
version = "0.8.31"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9852635589dc9f9ea1b6fe9f05b50ef208c85c834a562f0c6abb1c475736ec2b"
2021-07-28 02:25:53 +00:00
dependencies = [
"cfg-if",
2021-07-28 02:25:53 +00:00
]
2022-10-12 20:38:11 +00:00
[[package]]
name = "event-listener"
version = "2.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0"
2022-03-23 19:25:21 +00:00
[[package]]
name = "fastrand"
2022-10-12 20:38:11 +00:00
version = "1.8.0"
2022-03-23 19:25:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "a7a407cfaa3385c4ae6b23e84623d48c2798d06e3e6a1878f7f59f17b3f86499"
2022-03-23 19:25:21 +00:00
dependencies = [
"instant",
]
2021-07-28 02:25:53 +00:00
[[package]]
name = "flate2"
2022-10-12 20:38:11 +00:00
version = "1.0.24"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "f82b0f4c27ad9f8bfd1f3208d882da2b09c301bc1c828fd3a00d0216d2fbbff6"
2021-07-28 02:25: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"
2021-07-28 19:43:13 +00:00
[[package]]
name = "foreign-types"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
dependencies = [
"foreign-types-shared",
]
[[package]]
name = "foreign-types-shared"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
2021-07-28 02:25:53 +00:00
[[package]]
name = "form_urlencoded"
2022-10-12 20:38:11 +00:00
version = "1.1.0"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "a9c384f161156f5260c24a097c56119f9be8c798586aecc13afbcbe7b7e26bf8"
2021-07-28 02:25:53 +00:00
dependencies = [
"percent-encoding",
]
[[package]]
name = "futures"
2022-10-12 20:38:11 +00:00
version = "0.3.24"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "7f21eda599937fba36daeb58a22e8f5cee2d14c4a17b5b7739c7c8e5e3b8230c"
2021-07-28 02:25:53 +00:00
dependencies = [
"futures-channel",
"futures-core",
"futures-executor",
"futures-io",
"futures-sink",
"futures-task",
"futures-util",
]
[[package]]
name = "futures-channel"
2022-10-12 20:38:11 +00:00
version = "0.3.24"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "30bdd20c28fadd505d0fd6712cdfcb0d4b5648baf45faef7f852afb2399bb050"
2021-07-28 02:25:53 +00:00
dependencies = [
"futures-core",
"futures-sink",
]
[[package]]
name = "futures-core"
2022-10-12 20:38:11 +00:00
version = "0.3.24"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "4e5aa3de05362c3fb88de6531e6296e85cde7739cccad4b9dfeeb7f6ebce56bf"
2021-07-28 02:25:53 +00:00
[[package]]
name = "futures-executor"
2022-10-12 20:38:11 +00:00
version = "0.3.24"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "9ff63c23854bee61b6e9cd331d523909f238fc7636290b96826e9cfa5faa00ab"
2021-07-28 02:25:53 +00:00
dependencies = [
"futures-core",
"futures-task",
"futures-util",
]
2021-12-09 04:31:29 +00:00
[[package]]
name = "futures-intrusive"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "62007592ac46aa7c2b6416f7deb9a8a8f63a01e0f1d6e1787d5630170db2b63e"
dependencies = [
"futures-core",
"lock_api",
2022-03-23 19:25:21 +00:00
"parking_lot 0.11.2",
2021-12-09 04:31:29 +00:00
]
2021-07-28 02:25:53 +00:00
[[package]]
name = "futures-io"
2022-10-12 20:38:11 +00:00
version = "0.3.24"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "bbf4d2a7a308fd4578637c0b17c7e1c7ba127b8f6ba00b29f717e9655d85eb68"
2021-07-28 02:25:53 +00:00
[[package]]
name = "futures-macro"
2022-10-12 20:38:11 +00:00
version = "0.3.24"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "42cd15d1c7456c04dbdf7e88bcd69760d74f3a798d6444e16974b505b0e62f17"
2021-07-28 02:25:53 +00:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "futures-sink"
2022-10-12 20:38:11 +00:00
version = "0.3.24"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "21b20ba5a92e727ba30e72834706623d94ac93a725410b6a6b6fbc1b07f7ba56"
2021-07-28 02:25:53 +00:00
[[package]]
name = "futures-task"
2022-10-12 20:38:11 +00:00
version = "0.3.24"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "a6508c467c73851293f390476d4491cf4d227dbabcd4170f3bb6044959b294f1"
2021-07-28 02:25:53 +00:00
[[package]]
name = "futures-util"
2022-10-12 20:38:11 +00:00
version = "0.3.24"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "44fb6cb1be61cc1d2e43b262516aafcf63b241cffdb1d3fa115f91d9c7b09c90"
2021-07-28 02:25:53 +00:00
dependencies = [
"futures-channel",
"futures-core",
"futures-io",
"futures-macro",
"futures-sink",
"futures-task",
"memchr",
2021-07-28 19:08:19 +00:00
"pin-project-lite",
2021-07-28 02:25:53 +00:00
"pin-utils",
"slab",
]
[[package]]
name = "generic-array"
2022-10-12 20:38:11 +00:00
version = "0.14.6"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "bff49e947297f3312447abdca79f45f4738097cc82b06e72054d2223f601f1b9"
2021-07-28 02:25:53 +00:00
dependencies = [
"typenum",
"version_check",
]
[[package]]
name = "getrandom"
2022-10-12 20:38:11 +00:00
version = "0.2.7"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "4eb1a864a501629691edf6c15a593b7a51eebaa1e8468e9ddc623de7c9b58ec6"
2021-07-28 02:25:53 +00:00
dependencies = [
2021-07-28 19:08:19 +00:00
"cfg-if",
2021-07-28 02:25:53 +00:00
"libc",
2022-10-12 20:38:11 +00:00
"wasi",
2021-07-28 02:25:53 +00:00
]
[[package]]
2021-07-28 19:08:19 +00:00
name = "h2"
2022-10-12 20:38:11 +00:00
version = "0.3.14"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "5ca32592cf21ac7ccab1825cd87f6c9b3d9022c44d086172ed0966bec8af30be"
2021-07-28 02:25:53 +00:00
dependencies = [
2021-07-28 19:08:19 +00:00
"bytes",
"fnv",
2021-07-28 02:25:53 +00:00
"futures-core",
2021-07-28 19:08:19 +00:00
"futures-sink",
"futures-util",
"http",
"indexmap",
"slab",
"tokio",
2022-10-12 20:38:11 +00:00
"tokio-util",
2021-07-28 19:08:19 +00:00
"tracing",
2021-07-28 02:25:53 +00:00
]
[[package]]
name = "hamming"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "65043da274378d68241eb9a8f8f8aa54e349136f7b8e12f63e3ef44043cc30e1"
[[package]]
name = "hashbrown"
2022-10-12 20:38:11 +00:00
version = "0.12.3"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
2021-07-28 02:25:53 +00:00
dependencies = [
"ahash",
]
[[package]]
name = "hashlink"
2022-10-12 20:38:11 +00:00
version = "0.8.1"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "69fe1fcf8b4278d860ad0548329f892a3631fb63f82574df68275f34cdbe0ffa"
2021-07-28 02:25:53 +00:00
dependencies = [
"hashbrown",
]
[[package]]
name = "heck"
2022-10-12 20:38:11 +00:00
version = "0.4.0"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "2540771e65fc8cb83cd6e8a237f70c319bd5c29f78ed1084ba5d50eeac86f7f9"
2021-07-28 02:25:53 +00:00
dependencies = [
"unicode-segmentation",
]
[[package]]
name = "hermit-abi"
version = "0.1.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
dependencies = [
"libc",
]
[[package]]
name = "hex"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
2022-10-12 20:38:11 +00:00
[[package]]
name = "hkdf"
version = "0.12.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "791a029f6b9fc27657f6f188ec6e5e43f6911f6f878e0dc5501396e09809d437"
dependencies = [
"hmac",
]
2021-07-28 02:25:53 +00:00
[[package]]
name = "hmac"
2022-10-12 20:38:11 +00:00
version = "0.12.1"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
2021-07-28 02:25:53 +00:00
dependencies = [
"digest 0.10.5",
2021-07-28 02:25:53 +00:00
]
[[package]]
2021-07-28 19:08:19 +00:00
name = "http"
2022-10-12 20:38:11 +00:00
version = "0.2.8"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "75f43d41e26995c17e71ee126451dd3941010b0514a81a9d11f3b341debc2399"
2021-07-28 02:25:53 +00:00
dependencies = [
2021-07-28 19:08:19 +00:00
"bytes",
"fnv",
"itoa",
2021-07-28 02:25:53 +00:00
]
2021-07-28 19:43:13 +00:00
[[package]]
name = "http-body"
2022-10-12 20:38:11 +00:00
version = "0.4.5"
2021-07-28 19:43:13 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1"
2021-07-28 19:43:13 +00:00
dependencies = [
"bytes",
"http",
"pin-project-lite",
]
2021-07-28 02:25:53 +00:00
[[package]]
name = "httparse"
2022-10-12 20:38:11 +00:00
version = "1.8.0"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904"
2021-07-28 02:25:53 +00:00
2021-07-28 19:43:13 +00:00
[[package]]
name = "httpdate"
2021-12-09 04:31:29 +00:00
version = "1.0.2"
2021-07-28 19:43:13 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-09 04:31:29 +00:00
checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421"
2021-07-28 19:43:13 +00:00
[[package]]
name = "hyper"
2022-10-12 20:38:11 +00:00
version = "0.14.20"
2021-07-28 19:43:13 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "02c929dc5c39e335a03c405292728118860721b10190d98c2a0f0efd5baafbac"
2021-07-28 19:43:13 +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-tls"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905"
dependencies = [
"bytes",
"hyper",
"native-tls",
"tokio",
"tokio-native-tls",
]
2021-07-28 02:25:53 +00:00
[[package]]
name = "idna"
2022-10-12 20:38:11 +00:00
version = "0.3.0"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6"
2021-07-28 02:25:53 +00:00
dependencies = [
"unicode-bidi",
"unicode-normalization",
]
[[package]]
2021-07-28 19:08:19 +00:00
name = "indexmap"
2022-10-12 20:38:11 +00:00
version = "1.9.1"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "10a35a97730320ffe8e2d410b5d3b69279b98d2c14bdb8b70ea89ecf7888d41e"
2021-07-28 19:08:19 +00:00
dependencies = [
"autocfg",
"hashbrown",
]
2021-07-28 02:25:53 +00:00
[[package]]
name = "instant"
2021-12-09 04:31:29 +00:00
version = "0.1.12"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-09 04:31:29 +00:00
checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
2021-07-28 02:25:53 +00:00
dependencies = [
2021-07-28 19:08:19 +00:00
"cfg-if",
2021-07-28 02:25:53 +00:00
]
[[package]]
name = "integer-encoding"
2022-10-12 20:38:11 +00:00
version = "3.0.4"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "8bb03732005da905c88227371639bf1ad885cc712789c011c31c5fb3ab3ccf02"
2021-07-28 02:25:53 +00:00
2021-07-28 19:43:13 +00:00
[[package]]
name = "ipnet"
2022-10-12 20:38:11 +00:00
version = "2.5.0"
2021-07-28 19:43:13 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "879d54834c8c76457ef4293a689b2a8c59b076067ad77b15efafbb05f92a592b"
2021-07-28 19:43:13 +00:00
2021-12-09 04:31:29 +00:00
[[package]]
name = "itertools"
2022-10-12 20:38:11 +00:00
version = "0.10.5"
2021-12-09 04:31:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
2021-12-09 04:31:29 +00:00
dependencies = [
"either",
]
2021-07-28 02:25:53 +00:00
[[package]]
name = "itoa"
2022-10-12 20:38:11 +00:00
version = "1.0.4"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "4217ad341ebadf8d8e724e264f13e593e0648f5b3e94b3896a5df283be015ecc"
2021-07-28 02:25:53 +00:00
2021-07-28 19:08:19 +00:00
[[package]]
name = "jobserver"
2022-10-12 20:38:11 +00:00
version = "0.1.25"
2021-07-28 19:08:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "068b1ee6743e4d11fb9c6a1e6064b3693a1b600e7f5f5988047d98b3dc9fb90b"
2021-07-28 19:08:19 +00:00
dependencies = [
"libc",
]
2021-07-28 02:25:53 +00:00
[[package]]
name = "js-sys"
2022-10-12 20:38:11 +00:00
version = "0.3.60"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "49409df3e3bf0856b916e2ceaca09ee28e6871cf7d9ce97a692cacfdb2a25a47"
2021-07-28 02:25:53 +00:00
dependencies = [
"wasm-bindgen",
]
[[package]]
2021-07-28 19:08:19 +00:00
name = "language-tags"
version = "0.3.2"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-28 19:08:19 +00:00
checksum = "d4345964bb142484797b161f473a503a434de77149dd8c7427788c6e13379388"
2021-07-28 02:25:53 +00:00
[[package]]
name = "lazy_static"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
[[package]]
name = "libc"
2022-10-12 20:38:11 +00:00
version = "0.2.135"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "68783febc7782c6c5cb401fbda4de5a9898be1762314da0bb2c10ced61f18b0c"
2021-07-28 02:25:53 +00:00
2021-07-28 19:08:19 +00:00
[[package]]
name = "local-channel"
2022-10-12 20:38:11 +00:00
version = "0.1.3"
2021-07-28 19:08:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "7f303ec0e94c6c54447f84f3b0ef7af769858a9c4ef56ef2a986d3dcd4c3fc9c"
2021-07-28 19:08:19 +00:00
dependencies = [
"futures-core",
"futures-sink",
"futures-util",
"local-waker",
]
[[package]]
name = "local-waker"
2022-10-12 20:38:11 +00:00
version = "0.1.3"
2021-07-28 19:08:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "e34f76eb3611940e0e7d53a9aaa4e6a3151f69541a282fd0dad5571420c53ff1"
2021-07-28 19:08:19 +00:00
2021-07-28 02:25:53 +00:00
[[package]]
name = "lock_api"
2022-10-12 20:38:11 +00:00
version = "0.4.9"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df"
2021-07-28 02:25:53 +00:00
dependencies = [
2022-10-12 20:38:11 +00:00
"autocfg",
2021-07-28 02:25:53 +00:00
"scopeguard",
]
[[package]]
name = "log"
2022-10-12 20:38:11 +00:00
version = "0.4.17"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
2021-07-28 02:25:53 +00:00
dependencies = [
2021-07-28 19:08:19 +00:00
"cfg-if",
2021-07-28 02:25:53 +00:00
]
[[package]]
name = "matchers"
2021-12-09 04:31:29 +00:00
version = "0.1.0"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-09 04:31:29 +00:00
checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558"
2021-07-28 02:25:53 +00:00
dependencies = [
"regex-automata",
]
[[package]]
name = "md-5"
2022-10-12 20:38:11 +00:00
version = "0.10.5"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "6365506850d44bff6e2fbcb5176cf63650e48bd45ef2fe2665ae1570e0f4b9ca"
2021-07-28 02:25:53 +00:00
dependencies = [
"digest 0.10.5",
2021-07-28 02:25:53 +00:00
]
[[package]]
name = "memchr"
2022-10-12 20:38:11 +00:00
version = "2.5.0"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
2021-07-28 02:25:53 +00:00
2021-07-28 19:08:19 +00:00
[[package]]
name = "mime"
version = "0.3.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2a60c7ce501c71e03a9c9c0d35b861413ae925bd979cc7a4e30d060069aaac8d"
2021-12-09 04:31:29 +00:00
[[package]]
name = "minimal-lexical"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
2021-07-28 02:25:53 +00:00
[[package]]
name = "miniz_oxide"
2022-10-12 20:38:11 +00:00
version = "0.5.4"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "96590ba8f175222643a85693f33d26e9c8a015f599c216509b1a6894af675d34"
2021-07-28 02:25:53 +00:00
dependencies = [
"adler",
]
2021-07-28 19:08:19 +00:00
[[package]]
name = "mio"
2022-10-12 20:38:11 +00:00
version = "0.8.4"
2021-12-09 04:31:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "57ee1c23c7c63b0c9250c339ffdc69255f110b298b901b9f6c82547b7b87caaf"
2021-07-28 19:08:19 +00:00
dependencies = [
"libc",
"log",
2022-10-12 20:38:11 +00:00
"wasi",
"windows-sys",
2021-07-28 19:08:19 +00:00
]
2021-07-28 19:43:13 +00:00
[[package]]
name = "native-tls"
2022-10-12 20:38:11 +00:00
version = "0.2.10"
2021-07-28 19:43:13 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "fd7e2f3618557f980e0b17e8856252eee3c97fa12c54dff0ca290fb6266ca4a9"
2021-07-28 19:43:13 +00:00
dependencies = [
"lazy_static",
"libc",
"log",
"openssl",
"openssl-probe",
"openssl-sys",
"schannel",
"security-framework",
"security-framework-sys",
"tempfile",
]
[[package]]
name = "nkeys"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0e66a7cd1358277b2a6f77078e70aea7315ff2f20db969cc61153103ec162594"
dependencies = [
"byteorder",
"data-encoding",
"ed25519-dalek",
"getrandom",
"log",
"rand",
"signatory",
]
2021-07-28 02:25:53 +00:00
[[package]]
name = "nom"
2022-03-23 19:25:21 +00:00
version = "7.1.1"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-23 19:25:21 +00:00
checksum = "a8903e5a29a317527874d0402f867152a3d21c908bb0b933e416c65e301d4c36"
2021-07-28 02:25:53 +00:00
dependencies = [
2021-07-28 19:08:19 +00:00
"memchr",
2021-12-09 04:31:29 +00:00
"minimal-lexical",
2021-07-28 19:08:19 +00:00
]
[[package]]
2022-10-12 20:38:11 +00:00
name = "nu-ansi-term"
version = "0.46.0"
2021-07-28 19:08:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84"
2021-07-28 19:08:19 +00:00
dependencies = [
2022-10-12 20:38:11 +00:00
"overload",
2021-07-28 19:08:19 +00:00
"winapi",
2021-07-28 02:25:53 +00:00
]
[[package]]
name = "nuid"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "20c1bb65186718d348306bf1afdeb20d9ab45b2ab80fb793c0fdcf59ffbb4f38"
dependencies = [
"lazy_static",
"rand",
]
2021-07-28 02:25:53 +00:00
[[package]]
name = "num-traits"
2022-10-12 20:38:11 +00:00
version = "0.2.15"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd"
2021-07-28 02:25:53 +00:00
dependencies = [
"autocfg",
]
[[package]]
name = "num_cpus"
2022-03-23 19:25:21 +00:00
version = "1.13.1"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-23 19:25:21 +00:00
checksum = "19e64526ebdee182341572e50e9ad03965aa510cd94427a4549448f285e957a1"
2021-07-28 02:25:53 +00:00
dependencies = [
"hermit-abi",
"libc",
]
2022-03-23 19:25:21 +00:00
[[package]]
name = "num_threads"
2022-10-12 20:38:11 +00:00
version = "0.1.6"
2022-03-23 19:25:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "2819ce041d2ee131036f4fc9d6ae7ae125a3a40e97ba64d04fe799ad9dabbb44"
2022-03-23 19:25:21 +00:00
dependencies = [
"libc",
]
2021-07-28 02:25:53 +00:00
[[package]]
name = "once_cell"
2022-10-12 20:38:11 +00:00
version = "1.15.0"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "e82dad04139b71a90c080c8463fe0dc7902db5192d939bd0950f074d014339e1"
2021-07-28 02:25:53 +00:00
[[package]]
name = "opaque-debug"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5"
2021-07-28 19:43:13 +00:00
[[package]]
name = "openssl"
2022-10-12 20:38:11 +00:00
version = "0.10.42"
2021-07-28 19:43:13 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "12fc0523e3bd51a692c8850d075d74dc062ccf251c0110668cbd921917118a13"
2021-07-28 19:43:13 +00:00
dependencies = [
"bitflags",
"cfg-if",
"foreign-types",
"libc",
"once_cell",
2022-10-12 20:38:11 +00:00
"openssl-macros",
2021-07-28 19:43:13 +00:00
"openssl-sys",
]
2022-10-12 20:38:11 +00:00
[[package]]
name = "openssl-macros"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b501e44f11665960c7e7fcf062c7d96a14ade4aa98116c004b2e37b5be7d736c"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
2021-07-28 19:43:13 +00:00
[[package]]
name = "openssl-probe"
2022-03-23 19:25:21 +00:00
version = "0.1.5"
2021-07-28 19:43:13 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-23 19:25:21 +00:00
checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
2021-07-28 19:43:13 +00:00
[[package]]
name = "openssl-sys"
2022-10-12 20:38:11 +00:00
version = "0.9.76"
2021-07-28 19:43:13 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "5230151e44c0f05157effb743e8d517472843121cf9243e8b81393edb5acd9ce"
2021-07-28 19:43:13 +00:00
dependencies = [
"autocfg",
"cc",
"libc",
"pkg-config",
"vcpkg",
]
2021-07-28 02:25:53 +00:00
[[package]]
name = "opentelemetry"
2022-03-23 19:25:21 +00:00
version = "0.17.0"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-23 19:25:21 +00:00
checksum = "6105e89802af13fdf48c49d7646d3b533a70e536d818aae7e78ba0433d01acb8"
2021-07-28 02:25:53 +00:00
dependencies = [
"async-trait",
"crossbeam-channel",
2022-03-23 19:25:21 +00:00
"futures-channel",
"futures-executor",
"futures-util",
2021-07-28 02:25:53 +00:00
"js-sys",
"lazy_static",
"percent-encoding",
"pin-project",
2021-07-28 19:08:19 +00:00
"rand",
2021-07-28 02:25:53 +00:00
"thiserror",
2022-10-12 20:38:11 +00:00
]
[[package]]
name = "opentelemetry"
version = "0.18.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "69d6c3d7288a106c0a363e4b0e8d308058d56902adefb16f4936f417ffef086e"
dependencies = [
"opentelemetry_api",
"opentelemetry_sdk",
2021-07-28 02:25:53 +00:00
]
2021-07-28 19:43:13 +00:00
[[package]]
name = "opentelemetry-http"
2022-03-23 19:25:21 +00:00
version = "0.6.0"
2021-07-28 19:43:13 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-23 19:25:21 +00:00
checksum = "449048140ee61e28f57abe6e9975eedc1f3a29855c7407bd6c12b18578863379"
2021-07-28 19:43:13 +00:00
dependencies = [
"async-trait",
"bytes",
"http",
2022-10-12 20:38:11 +00:00
"opentelemetry 0.17.0",
2021-07-28 19:43:13 +00:00
]
2021-07-28 02:25:53 +00:00
[[package]]
name = "opentelemetry-jaeger"
2022-10-12 20:38:11 +00:00
version = "0.17.0"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "1e785d273968748578931e4dc3b4f5ec86b26e09d9e0d66b55adda7fce742f7a"
2021-07-28 02:25:53 +00:00
dependencies = [
"async-trait",
2022-10-12 20:38:11 +00:00
"futures",
"futures-executor",
"once_cell",
"opentelemetry 0.18.0",
2021-12-09 04:31:29 +00:00
"opentelemetry-semantic-conventions",
2021-07-28 02:25:53 +00:00
"thiserror",
"thrift",
2021-12-09 04:31:29 +00:00
"tokio",
]
[[package]]
name = "opentelemetry-semantic-conventions"
2022-10-12 20:38:11 +00:00
version = "0.10.0"
2021-12-09 04:31:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "9b02e0230abb0ab6636d18e2ba8fa02903ea63772281340ccac18e0af3ec9eeb"
2021-12-09 04:31:29 +00:00
dependencies = [
2022-10-12 20:38:11 +00:00
"opentelemetry 0.18.0",
]
[[package]]
name = "opentelemetry_api"
version = "0.18.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c24f96e21e7acc813c7a8394ee94978929db2bcc46cf6b5014fc612bf7760c22"
dependencies = [
"fnv",
"futures-channel",
"futures-util",
"indexmap",
"js-sys",
"once_cell",
"pin-project-lite",
"thiserror",
]
[[package]]
name = "opentelemetry_sdk"
version = "0.18.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1ca41c4933371b61c2a2f214bf16931499af4ec90543604ec828f7a625c09113"
dependencies = [
"async-trait",
"crossbeam-channel",
"dashmap",
"fnv",
"futures-channel",
"futures-executor",
"futures-util",
"once_cell",
"opentelemetry_api",
"percent-encoding",
"rand",
"thiserror",
"tokio",
"tokio-stream",
2021-07-28 02:25:53 +00:00
]
[[package]]
name = "ordered-float"
version = "1.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3305af35278dd29f46fcdd139e0b1fbfae2153f0e5928b39b035542dd31e37b7"
dependencies = [
"num-traits",
]
[[package]]
name = "os_str_bytes"
version = "6.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9ff7415e9ae3fff1225851df9e0d9e4e5479f947619774677a63572e55e80eff"
2022-10-12 20:38:11 +00:00
[[package]]
name = "overload"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39"
2021-07-28 02:25:53 +00:00
[[package]]
name = "parking_lot"
2021-12-09 04:31:29 +00:00
version = "0.11.2"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-09 04:31:29 +00:00
checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99"
2021-07-28 02:25:53 +00:00
dependencies = [
"instant",
"lock_api",
2022-03-23 19:25:21 +00:00
"parking_lot_core 0.8.5",
]
[[package]]
name = "parking_lot"
2022-10-12 20:38:11 +00:00
version = "0.12.1"
2022-03-23 19:25:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
2022-03-23 19:25:21 +00:00
dependencies = [
"lock_api",
2022-10-12 20:38:11 +00:00
"parking_lot_core 0.9.3",
2021-07-28 02:25:53 +00:00
]
[[package]]
name = "parking_lot_core"
2021-12-09 04:31:29 +00:00
version = "0.8.5"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-09 04:31:29 +00:00
checksum = "d76e8e1493bcac0d2766c42737f34458f1c8c50c0d23bcb24ea953affb273216"
2021-07-28 02:25:53 +00:00
dependencies = [
2021-07-28 19:08:19 +00:00
"cfg-if",
2021-07-28 02:25:53 +00:00
"instant",
"libc",
"redox_syscall",
"smallvec",
"winapi",
]
2022-03-23 19:25:21 +00:00
[[package]]
name = "parking_lot_core"
2022-10-12 20:38:11 +00:00
version = "0.9.3"
2022-03-23 19:25:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "09a279cbf25cb0757810394fbc1e359949b59e348145c643a939a525692e6929"
2022-03-23 19:25:21 +00:00
dependencies = [
"cfg-if",
"libc",
"redox_syscall",
"smallvec",
"windows-sys",
]
2021-07-28 19:08:19 +00:00
[[package]]
name = "paste"
2022-10-12 20:38:11 +00:00
version = "1.0.9"
2021-07-28 19:08:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "b1de2e551fb905ac83f73f7aedf2f0cb4a0da7e35efa24a202a936269f1f18e1"
2021-07-28 19:08:19 +00:00
[[package]]
name = "pem-rfc7468"
version = "0.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "84e93a3b1cc0510b03020f33f21e62acdde3dcaef432edc95bea377fbd4c2cd4"
dependencies = [
"base64ct",
]
2021-07-28 02:25:53 +00:00
[[package]]
name = "percent-encoding"
2022-10-12 20:38:11 +00:00
version = "2.2.0"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e"
2021-07-28 02:25:53 +00:00
[[package]]
name = "pin-project"
2022-10-12 20:38:11 +00:00
version = "1.0.12"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "ad29a609b6bcd67fee905812e544992d216af9d755757c05ed2d0e15a74c6ecc"
2021-07-28 02:25:53 +00:00
dependencies = [
"pin-project-internal",
]
[[package]]
name = "pin-project-internal"
2022-10-12 20:38:11 +00:00
version = "1.0.12"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "069bdb1e05adc7a8990dce9cc75370895fbe4e3d58b9b73bf1aee56359344a55"
2021-07-28 02:25:53 +00:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "pin-project-lite"
2022-10-12 20:38:11 +00:00
version = "0.2.9"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116"
2021-07-28 02:25:53 +00:00
[[package]]
name = "pin-utils"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
[[package]]
name = "pkcs8"
version = "0.7.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ee3ef9b64d26bad0536099c816c6734379e45bbd5f14798def6809e5cc350447"
dependencies = [
"der",
"pem-rfc7468",
"spki",
"zeroize",
]
2021-07-28 19:43:13 +00:00
[[package]]
name = "pkg-config"
2022-10-12 20:38:11 +00:00
version = "0.3.25"
2021-07-28 19:43:13 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "1df8c4ec4b0627e53bdf214615ad287367e482558cf84b109250b37464dc03ae"
2021-07-28 19:43:13 +00:00
2021-07-28 02:25:53 +00:00
[[package]]
name = "ppv-lite86"
2022-03-23 19:25:21 +00:00
version = "0.2.16"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-23 19:25:21 +00:00
checksum = "eb9f9e6e233e5c4a35559a617bf40a4ec447db2e84c20b55a6f83167b7e57872"
2021-07-28 02:25:53 +00:00
[[package]]
name = "proc-macro-error"
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
dependencies = [
"proc-macro-error-attr",
"proc-macro2",
"quote",
"syn",
"version_check",
]
[[package]]
name = "proc-macro-error-attr"
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
dependencies = [
"proc-macro2",
"quote",
"version_check",
]
2021-07-28 02:25:53 +00:00
[[package]]
name = "proc-macro2"
2022-10-12 20:38:11 +00:00
version = "1.0.46"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "94e2ef8dbfc347b10c094890f778ee2e36ca9bb4262e86dc99cd217e35f3470b"
2021-07-28 02:25:53 +00:00
dependencies = [
2022-10-12 20:38:11 +00:00
"unicode-ident",
2021-07-28 02:25:53 +00:00
]
[[package]]
name = "procfs"
2022-10-12 20:38:11 +00:00
version = "0.12.0"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "0941606b9934e2d98a3677759a971756eb821f75764d0e0d26946d08e74d9104"
2021-07-28 02:25:53 +00:00
dependencies = [
"bitflags",
"byteorder",
"hex",
"lazy_static",
"libc",
]
[[package]]
name = "prometheus"
2022-10-12 20:38:11 +00:00
version = "0.13.2"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "45c8babc29389186697fe5a2a4859d697825496b83db5d0b65271cdc0488e88c"
2021-07-28 02:25:53 +00:00
dependencies = [
2021-07-28 19:08:19 +00:00
"cfg-if",
2021-07-28 02:25:53 +00:00
"fnv",
"lazy_static",
"libc",
"memchr",
2022-10-12 20:38:11 +00:00
"parking_lot 0.12.1",
2021-07-28 02:25:53 +00:00
"procfs",
"protobuf",
"thiserror",
]
[[package]]
name = "protobuf"
2022-10-12 20:38:11 +00:00
version = "2.28.0"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "106dd99e98437432fed6519dedecfade6a06a73bb7b2a1e019fdd2bee5778d94"
2021-07-28 02:25:53 +00:00
[[package]]
name = "quote"
2022-10-12 20:38:11 +00:00
version = "1.0.21"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "bbe448f377a7d6961e30f5955f9b8d106c3f5e449d493ee1b125c1d43c2b5179"
2021-07-28 02:25:53 +00:00
dependencies = [
"proc-macro2",
]
[[package]]
name = "rand"
2022-03-23 19:25:21 +00:00
version = "0.8.5"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-23 19:25:21 +00:00
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
2021-07-28 02:25:53 +00:00
dependencies = [
"libc",
2021-07-28 19:08:19 +00:00
"rand_chacha",
"rand_core 0.6.4",
2021-07-28 02:25:53 +00:00
]
[[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 0.6.4",
2021-07-28 02:25:53 +00:00
]
[[package]]
name = "rand_core"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19"
2021-07-28 02:25:53 +00:00
[[package]]
name = "rand_core"
2022-10-12 20:38:11 +00:00
version = "0.6.4"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
2021-07-28 02:25:53 +00:00
dependencies = [
2021-07-28 19:08:19 +00:00
"getrandom",
2021-07-28 02:25:53 +00:00
]
[[package]]
name = "redox_syscall"
2022-10-12 20:38:11 +00:00
version = "0.2.16"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
2021-07-28 02:25:53 +00:00
dependencies = [
"bitflags",
]
[[package]]
name = "redox_users"
2022-10-12 20:38:11 +00:00
version = "0.4.3"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b"
2021-07-28 02:25:53 +00:00
dependencies = [
2021-07-28 19:08:19 +00:00
"getrandom",
2021-07-28 02:25:53 +00:00
"redox_syscall",
2022-03-23 19:25:21 +00:00
"thiserror",
2021-07-28 02:25:53 +00:00
]
[[package]]
name = "regex"
2022-10-12 20:38:11 +00:00
version = "1.6.0"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "4c4eb3267174b8c6c2f654116623910a0fef09c4753f8dd83db29c48a0df988b"
2021-07-28 02:25:53 +00:00
dependencies = [
"aho-corasick",
"memchr",
"regex-syntax",
]
[[package]]
name = "regex-automata"
version = "0.1.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
dependencies = [
"regex-syntax",
]
[[package]]
name = "regex-syntax"
2022-10-12 20:38:11 +00:00
version = "0.6.27"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "a3f87b73ce11b1619a3c6332f45341e0047173771e8b8b73f87bfeefb7b56244"
2021-07-28 02:25:53 +00:00
2021-07-28 19:43:13 +00:00
[[package]]
name = "remove_dir_all"
version = "0.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7"
dependencies = [
"winapi",
]
[[package]]
name = "reqwest"
2022-10-12 20:38:11 +00:00
version = "0.11.12"
2021-07-28 19:43:13 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "431949c384f4e2ae07605ccaa56d1d9d2ecdb5cadd4f9577ccfab29f2e5149fc"
2021-07-28 19:43:13 +00:00
dependencies = [
"base64",
"bytes",
"encoding_rs",
"futures-core",
"futures-util",
2022-03-23 19:25:21 +00:00
"h2",
2021-07-28 19:43:13 +00:00
"http",
"http-body",
"hyper",
"hyper-tls",
"ipnet",
"js-sys",
"log",
"mime",
"native-tls",
2022-10-12 20:38:11 +00:00
"once_cell",
2021-07-28 19:43:13 +00:00
"percent-encoding",
"pin-project-lite",
"serde",
"serde_json",
"serde_urlencoded",
"tokio",
"tokio-native-tls",
2022-10-12 20:38:11 +00:00
"tower-service",
2021-07-28 19:43:13 +00:00
"url",
"wasm-bindgen",
"wasm-bindgen-futures",
"web-sys",
"winreg",
]
2021-07-28 02:25:53 +00:00
[[package]]
2021-07-28 02:47:56 +00:00
name = "ring"
version = "0.16.20"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-28 02:47:56 +00:00
checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc"
2021-07-28 02:25:53 +00:00
dependencies = [
2021-07-28 02:47:56 +00:00
"cc",
"libc",
"once_cell",
"spin",
"untrusted",
"web-sys",
2021-07-28 02:25:53 +00:00
"winapi",
]
[[package]]
name = "rustc_version"
2021-12-09 04:31:29 +00:00
version = "0.4.0"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-09 04:31:29 +00:00
checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
2021-07-28 02:25:53 +00:00
dependencies = [
2022-03-23 19:25:21 +00:00
"semver",
2021-07-28 02:25:53 +00:00
]
[[package]]
2021-07-28 02:47:56 +00:00
name = "rustls"
2022-10-12 20:38:11 +00:00
version = "0.20.6"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "5aab8ee6c7097ed6057f43c187a62418d0c05a4bd5f18b3571db50ee0f9ce033"
2021-07-28 02:47:56 +00:00
dependencies = [
"log",
"ring",
"sct",
"webpki",
]
2021-07-28 02:25:53 +00:00
[[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 1.0.1",
"schannel",
"security-framework",
]
[[package]]
name = "rustls-pemfile"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1ee86d63972a7c661d1536fefe8c3c8407321c3df668891286de28abcd087360"
dependencies = [
"base64",
]
2022-10-12 20:38:11 +00:00
[[package]]
name = "rustls-pemfile"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0864aeff53f8c05aa08d86e5ef839d3dfcf07aeba2db32f12db0ef716e87bd55"
dependencies = [
"base64",
]
2021-07-28 02:25:53 +00:00
[[package]]
2021-07-28 02:47:56 +00:00
name = "ryu"
2022-10-12 20:38:11 +00:00
version = "1.0.11"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "4501abdff3ae82a1c1b477a17252eb69cee9e66eb915c1abaa4f44d873df9f09"
2021-07-28 02:25:53 +00:00
2021-07-28 19:43:13 +00:00
[[package]]
name = "schannel"
2022-10-12 20:38:11 +00:00
version = "0.1.20"
2021-07-28 19:43:13 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "88d6731146462ea25d9244b2ed5fd1d716d25c52e4d54aa4fb0f3c4e9854dbe2"
2021-07-28 19:43:13 +00:00
dependencies = [
"lazy_static",
2022-10-12 20:38:11 +00:00
"windows-sys",
2021-07-28 19:43:13 +00:00
]
2021-07-28 02:25:53 +00:00
[[package]]
name = "scopeguard"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
[[package]]
2021-07-28 02:47:56 +00:00
name = "sct"
2022-10-12 20:38:11 +00:00
version = "0.7.0"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "d53dcdb7c9f8158937a7981b48accfd39a43af418591a5d008c7b22b5e1b7ca4"
2021-07-28 02:25:53 +00:00
dependencies = [
2021-07-28 02:47:56 +00:00
"ring",
"untrusted",
2021-07-28 02:25:53 +00:00
]
2021-07-28 19:43:13 +00:00
[[package]]
name = "security-framework"
2022-10-12 20:38:11 +00:00
version = "2.7.0"
2021-07-28 19:43:13 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "2bc1bb97804af6631813c55739f771071e0f2ed33ee20b68c86ec505d906356c"
2021-07-28 19:43:13 +00:00
dependencies = [
"bitflags",
"core-foundation",
"core-foundation-sys",
"libc",
"security-framework-sys",
]
[[package]]
name = "security-framework-sys"
2022-03-23 19:25:21 +00:00
version = "2.6.1"
2021-07-28 19:43:13 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-23 19:25:21 +00:00
checksum = "0160a13a177a45bfb43ce71c01580998474f556ad854dcbca936dd2841a5c556"
2021-07-28 19:43:13 +00:00
dependencies = [
"core-foundation-sys",
"libc",
]
2021-07-28 02:25:53 +00:00
[[package]]
name = "semver"
2022-10-12 20:38:11 +00:00
version = "1.0.14"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "e25dfac463d778e353db5be2449d1cce89bd6fd23c9f1ea21310ce6e5a1b29c4"
2021-07-28 02:25:53 +00:00
[[package]]
name = "serde"
2022-10-12 20:38:11 +00:00
version = "1.0.145"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "728eb6351430bccb993660dfffc5a72f91ccc1295abaa8ce19b27ebe4f75568b"
2021-07-28 02:25:53 +00:00
dependencies = [
"serde_derive",
]
[[package]]
name = "serde_derive"
2022-10-12 20:38:11 +00:00
version = "1.0.145"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "81fa1584d3d1bcacd84c277a0dfe21f5b0f6accf4a23d04d4c6d61f1af522b4c"
2021-07-28 02:25:53 +00:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "serde_json"
2022-10-12 20:38:11 +00:00
version = "1.0.86"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "41feea4228a6f1cd09ec7a3593a682276702cd67b5273544757dae23c096f074"
2021-07-28 02:25:53 +00:00
dependencies = [
"itoa",
"ryu",
"serde",
]
[[package]]
name = "serde_nanos"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e44969a61f5d316be20a42ff97816efb3b407a924d06824c3d8a49fa8450de0e"
dependencies = [
"serde",
]
[[package]]
name = "serde_repr"
version = "0.1.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1fe39d9fbb0ebf5eb2c7cb7e2a47e4f462fad1379f1166b8ae49ad9eae89a7ca"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
2021-07-28 02:25:53 +00:00
[[package]]
name = "serde_urlencoded"
2022-03-23 19:25:21 +00:00
version = "0.7.1"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-23 19:25:21 +00:00
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
2021-07-28 02:25:53 +00:00
dependencies = [
"form_urlencoded",
"itoa",
"ryu",
"serde",
]
[[package]]
2022-10-12 20:38:11 +00:00
name = "sha1"
version = "0.10.5"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "f04293dc80c3993519f2d7f6f511707ee7094fe0c6d3406feb330cdb3540eba3"
2021-07-28 02:25:53 +00:00
dependencies = [
2021-07-28 19:08:19 +00:00
"cfg-if",
2021-07-28 02:25:53 +00:00
"cpufeatures",
"digest 0.10.5",
]
[[package]]
name = "sha2"
version = "0.9.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4d58a1e1bf39749807d89cf2d98ac2dfa0ff1cb3faa38fbb64dd88ac8013d800"
dependencies = [
"block-buffer 0.9.0",
"cfg-if",
"cpufeatures",
"digest 0.9.0",
"opaque-debug",
2022-03-23 19:25:21 +00:00
]
2021-07-28 02:25:53 +00:00
[[package]]
name = "sha2"
2022-10-12 20:38:11 +00:00
version = "0.10.6"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "82e6b795fe2e3b1e845bafcb27aa35405c4d47cdfc92af5fc8d3002f76cebdc0"
2021-07-28 02:25:53 +00:00
dependencies = [
2021-07-28 19:08:19 +00:00
"cfg-if",
2021-07-28 02:25:53 +00:00
"cpufeatures",
"digest 0.10.5",
2021-07-28 02:25:53 +00:00
]
[[package]]
name = "sharded-slab"
2021-12-09 04:31:29 +00:00
version = "0.1.4"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-09 04:31:29 +00:00
checksum = "900fba806f70c630b0a382d0d825e17a0f19fcd059a2ade1ff237bcddf446b31"
2021-07-28 02:25:53 +00:00
dependencies = [
"lazy_static",
]
[[package]]
name = "signal-hook-registry"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e51e73328dc4ac0c7ccbda3a494dfa03df1de2f46018127f60c693f2648455b0"
dependencies = [
"libc",
]
[[package]]
name = "signatory"
version = "0.23.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5dfecc059e81632eef1dd9b79e22fc28b8fe69b30d3357512a77a0ad8ee3c782"
dependencies = [
"pkcs8",
"rand_core 0.6.4",
"signature",
"zeroize",
]
[[package]]
name = "signature"
version = "1.6.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "74233d3b3b2f6d4b006dc19dee745e73e2a6bfb6f93607cd3b02bd5b00797d7c"
2021-07-28 02:25:53 +00:00
[[package]]
name = "slab"
2022-10-12 20:38:11 +00:00
version = "0.4.7"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "4614a76b2a8be0058caa9dbbaf66d988527d86d003c11a94fbd335d7661edcef"
dependencies = [
"autocfg",
]
2021-07-28 02:25:53 +00:00
[[package]]
name = "smallvec"
2022-10-12 20:38:11 +00:00
version = "1.10.0"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0"
2021-07-28 02:25:53 +00:00
[[package]]
name = "socket2"
2022-10-12 20:38:11 +00:00
version = "0.4.7"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "02e2d2db9033d13a1567121ddd7a095ee144db4e1ca1b1bda3419bc0da294ebd"
2021-07-28 02:25:53 +00:00
dependencies = [
"libc",
"winapi",
]
2021-07-28 02:47:56 +00:00
[[package]]
name = "spin"
version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"
[[package]]
name = "spki"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5c01a0c15da1b0b0e1494112e7af814a678fec9bd157881b49beac661e9b6f32"
dependencies = [
"der",
]
2021-07-28 02:25:53 +00:00
[[package]]
name = "sqlformat"
2022-10-12 20:38:11 +00:00
version = "0.2.0"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "f87e292b4291f154971a43c3774364e2cbcaec599d3f5bf6fa9d122885dbc38a"
2021-07-28 02:25:53 +00:00
dependencies = [
2021-12-09 04:31:29 +00:00
"itertools",
2021-07-28 02:25:53 +00:00
"nom",
"unicode_categories",
]
[[package]]
name = "sqlx"
2022-10-12 20:38:11 +00:00
version = "0.6.2"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "9249290c05928352f71c077cc44a464d880c63f26f7534728cca008e135c0428"
2021-07-28 02:25:53 +00:00
dependencies = [
"sqlx-core",
"sqlx-macros",
]
[[package]]
name = "sqlx-core"
2022-10-12 20:38:11 +00:00
version = "0.6.2"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "dcbc16ddba161afc99e14d1713a453747a2b07fc097d2009f4c300ec99286105"
2021-07-28 02:25:53 +00:00
dependencies = [
"ahash",
"atoi",
2021-07-28 19:08:19 +00:00
"base64",
2021-07-28 02:25:53 +00:00
"bitflags",
"byteorder",
"bytes",
"crc",
"crossbeam-queue",
"dirs",
2022-10-12 20:38:11 +00:00
"dotenvy",
2021-07-28 02:25:53 +00:00
"either",
2022-10-12 20:38:11 +00:00
"event-listener",
2021-07-28 02:25:53 +00:00
"futures-channel",
"futures-core",
2021-12-09 04:31:29 +00:00
"futures-intrusive",
2021-07-28 02:25:53 +00:00
"futures-util",
"hashlink",
"hex",
2022-10-12 20:38:11 +00:00
"hkdf",
2021-07-28 19:08:19 +00:00
"hmac",
2021-12-09 04:31:29 +00:00
"indexmap",
2021-07-28 02:25:53 +00:00
"itoa",
"libc",
"log",
"md-5",
"memchr",
"once_cell",
2022-03-23 19:25:21 +00:00
"paste",
2021-07-28 02:25:53 +00:00
"percent-encoding",
2021-07-28 19:08:19 +00:00
"rand",
2021-07-28 02:47:56 +00:00
"rustls",
"rustls-pemfile 1.0.1",
2021-07-28 02:25:53 +00:00
"serde",
"serde_json",
2022-10-12 20:38:11 +00:00
"sha1",
"sha2 0.10.6",
2021-07-28 02:25:53 +00:00
"smallvec",
"sqlformat",
"sqlx-rt",
"stringprep",
"thiserror",
2021-07-28 19:08:19 +00:00
"tokio-stream",
2021-07-28 02:25:53 +00:00
"url",
2021-07-28 02:47:56 +00:00
"webpki-roots",
2021-07-28 02:25:53 +00:00
"whoami",
]
[[package]]
name = "sqlx-macros"
2022-10-12 20:38:11 +00:00
version = "0.6.2"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "b850fa514dc11f2ee85be9d055c512aa866746adfacd1cb42d867d68e6a5b0d9"
2021-07-28 02:25:53 +00:00
dependencies = [
2022-10-12 20:38:11 +00:00
"dotenvy",
2021-07-28 02:25:53 +00:00
"either",
"heck",
"once_cell",
"proc-macro2",
"quote",
"sha2 0.10.6",
2021-07-28 02:25:53 +00:00
"sqlx-core",
"sqlx-rt",
"syn",
"url",
]
[[package]]
name = "sqlx-rt"
2022-10-12 20:38:11 +00:00
version = "0.6.2"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "24c5b2d25fa654cc5f841750b8e1cdedbe21189bf9a9382ee90bfa9dd3562396"
2021-07-28 02:25:53 +00:00
dependencies = [
2021-07-28 19:08:19 +00:00
"once_cell",
"tokio",
"tokio-rustls",
2021-07-28 02:25:53 +00:00
]
[[package]]
name = "stringprep"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8ee348cb74b87454fff4b551cbf727025810a004f88aeacae7f85b87f4e9a1c1"
dependencies = [
"unicode-bidi",
"unicode-normalization",
]
[[package]]
name = "strsim"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
[[package]]
name = "subslice"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e0a8e4809a3bb02de01f1f7faf1ba01a83af9e8eabcd4d31dd6e413d14d56aae"
dependencies = [
"memchr",
]
2021-07-28 02:25:53 +00:00
[[package]]
name = "subtle"
version = "2.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601"
[[package]]
name = "syn"
2022-10-12 20:38:11 +00:00
version = "1.0.102"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "3fcd952facd492f9be3ef0d0b7032a6e442ee9b361d4acc2b1d0c4aaa5f613a1"
2021-07-28 02:25:53 +00:00
dependencies = [
"proc-macro2",
"quote",
2022-10-12 20:38:11 +00:00
"unicode-ident",
2021-07-28 02:25:53 +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",
"unicode-xid",
]
2021-07-28 19:43:13 +00:00
[[package]]
name = "tempfile"
2022-03-23 19:25:21 +00:00
version = "3.3.0"
2021-07-28 19:43:13 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-23 19:25:21 +00:00
checksum = "5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4"
2021-07-28 19:43:13 +00:00
dependencies = [
"cfg-if",
2022-03-23 19:25:21 +00:00
"fastrand",
2021-07-28 19:43:13 +00:00
"libc",
"redox_syscall",
"remove_dir_all",
"winapi",
]
[[package]]
name = "termcolor"
version = "1.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bab24d30b911b2376f3a13cc2cd443142f0c81dda04c118693e35b3835757755"
dependencies = [
"winapi-util",
]
2021-07-28 02:25:53 +00:00
[[package]]
name = "thiserror"
2022-10-12 20:38:11 +00:00
version = "1.0.37"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "10deb33631e3c9018b9baf9dcbbc4f737320d2b576bac10f6aefa048fa407e3e"
2021-07-28 02:25:53 +00:00
dependencies = [
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
2022-10-12 20:38:11 +00:00
version = "1.0.37"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "982d17546b47146b28f7c22e3d08465f6b8903d0ea13c1660d9d84a6e7adcdbb"
2021-07-28 02:25:53 +00:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "thread_local"
2022-03-23 19:25:21 +00:00
version = "1.1.4"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-23 19:25:21 +00:00
checksum = "5516c27b78311c50bf42c071425c560ac799b11c30b31f87e3081965fe5e0180"
2021-07-28 02:25:53 +00:00
dependencies = [
"once_cell",
]
[[package]]
name = "threadpool"
version = "1.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d050e60b33d41c19108b32cea32164033a9013fe3b46cbd4457559bfbf77afaa"
dependencies = [
"num_cpus",
]
[[package]]
name = "thrift"
2022-10-12 20:38:11 +00:00
version = "0.16.0"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "09678c4cdbb4eed72e18b7c2af1329c69825ed16fcbac62d083fc3e2b0590ff0"
2021-07-28 02:25:53 +00:00
dependencies = [
"byteorder",
"integer-encoding",
"log",
"ordered-float",
"threadpool",
]
[[package]]
name = "time"
2022-10-12 20:38:11 +00:00
version = "0.3.15"
2021-12-09 04:31:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "d634a985c4d4238ec39cacaed2e7ae552fbd3c476b552c1deac3021b7d7eaf0c"
2021-12-09 04:31:29 +00:00
dependencies = [
"itoa",
"libc",
2022-03-23 19:25:21 +00:00
"num_threads",
"serde",
2022-03-23 19:25:21 +00:00
"time-macros",
2021-12-09 04:31:29 +00:00
]
2021-07-28 02:25:53 +00:00
[[package]]
name = "time-macros"
2022-03-23 19:25:21 +00:00
version = "0.2.4"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-23 19:25:21 +00:00
checksum = "42657b1a6f4d817cda8e7a0ace261fe0cc946cf3a80314390b22cc61ae080792"
2021-07-28 02:25:53 +00:00
[[package]]
name = "tinyvec"
2022-10-12 20:38:11 +00:00
version = "1.6.0"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
2021-07-28 02:25:53 +00:00
dependencies = [
"tinyvec_macros",
]
[[package]]
name = "tinyvec_macros"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
2021-07-28 19:08:19 +00:00
[[package]]
name = "tokio"
2022-10-12 20:38:11 +00:00
version = "1.21.2"
2021-07-28 19:08:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "a9e03c497dc955702ba729190dc4aac6f2a0ce97f913e5b1b5912fc5039d9099"
2021-07-28 19:08:19 +00:00
dependencies = [
2022-10-12 20:38:11 +00:00
"autocfg",
2021-07-28 19:08:19 +00:00
"bytes",
"libc",
"memchr",
2022-03-23 19:25:21 +00:00
"mio",
2021-07-28 19:08:19 +00:00
"num_cpus",
2022-10-12 20:38:11 +00:00
"parking_lot 0.12.1",
2021-07-28 19:08:19 +00:00
"pin-project-lite",
"signal-hook-registry",
2022-03-23 19:25:21 +00:00
"socket2",
2021-07-28 19:43:13 +00:00
"tokio-macros",
2021-07-28 19:08:19 +00:00
"winapi",
]
2021-07-28 19:43:13 +00:00
[[package]]
name = "tokio-macros"
2022-10-12 20:38:11 +00:00
version = "1.8.0"
2021-07-28 19:43:13 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "9724f9a975fb987ef7a3cd9be0350edcbe130698af5b8f7a631e23d42d052484"
2021-07-28 19:43:13 +00:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "tokio-native-tls"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f7d995660bd2b7f8c1568414c1126076c13fbb725c40112dc0120b78eb9b717b"
dependencies = [
"native-tls",
"tokio",
]
2021-07-28 19:08:19 +00:00
[[package]]
name = "tokio-rustls"
2022-10-12 20:38:11 +00:00
version = "0.23.4"
2021-07-28 19:08:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "c43ee83903113e03984cb9e5cebe6c04a5116269e900e3ddba8f068a62adda59"
2021-07-28 19:08:19 +00:00
dependencies = [
"rustls",
"tokio",
"webpki",
]
[[package]]
name = "tokio-stream"
2022-10-12 20:38:11 +00:00
version = "0.1.11"
2021-07-28 19:08:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "d660770404473ccd7bc9f8b28494a811bc18542b915c0855c51e8f419d5223ce"
2021-07-28 19:08:19 +00:00
dependencies = [
"futures-core",
"pin-project-lite",
"tokio",
]
[[package]]
name = "tokio-util"
2022-10-12 20:38:11 +00:00
version = "0.7.4"
2021-07-28 19:08:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "0bb2e075f03b3d66d8d8785356224ba688d2906a371015e225beeb65ca92c740"
2021-07-28 19:08:19 +00:00
dependencies = [
"bytes",
"futures-core",
"futures-sink",
2022-03-23 19:25:21 +00:00
"pin-project-lite",
"tokio",
2022-10-12 20:38:11 +00:00
"tracing",
2022-03-23 19:25:21 +00:00
]
2021-07-28 19:43:13 +00:00
[[package]]
name = "tower-service"
2022-10-12 20:38:11 +00:00
version = "0.3.2"
2021-07-28 19:43:13 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52"
2021-07-28 19:43:13 +00:00
2021-07-28 02:25:53 +00:00
[[package]]
name = "tracing"
2022-10-12 20:38:11 +00:00
version = "0.1.37"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8"
2021-07-28 02:25:53 +00:00
dependencies = [
2021-07-28 19:08:19 +00:00
"cfg-if",
2022-03-23 19:25:21 +00:00
"log",
2021-07-28 19:08:19 +00:00
"pin-project-lite",
2021-07-28 02:25:53 +00:00
"tracing-attributes",
"tracing-core",
]
2021-07-28 19:08:19 +00:00
[[package]]
name = "tracing-actix-web"
2022-10-12 20:38:11 +00:00
version = "0.6.1"
2021-07-28 19:08:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "ee7247a77b494ee07bda43bce40a33e76f885662f11b3dda9894ecfdbe31fa06"
2021-07-28 19:08:19 +00:00
dependencies = [
"actix-web",
2022-10-12 20:38:11 +00:00
"opentelemetry 0.17.0",
2021-12-09 04:31:29 +00:00
"pin-project",
2021-07-28 19:08:19 +00:00
"tracing",
2022-10-12 20:38:11 +00:00
"tracing-opentelemetry 0.17.4",
2021-07-28 19:08:19 +00:00
"uuid",
]
2021-07-28 02:25:53 +00:00
[[package]]
name = "tracing-attributes"
2022-10-12 20:38:11 +00:00
version = "0.1.23"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "4017f8f45139870ca7e672686113917c71c7a6e02d4924eda67186083c03081a"
2021-07-28 02:25:53 +00:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "tracing-core"
2022-10-12 20:38:11 +00:00
version = "0.1.30"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "24eb03ba0eab1fd845050058ce5e616558e8f8d8fca633e6b163fe25c797213a"
2021-07-28 02:25:53 +00:00
dependencies = [
2022-10-12 20:38:11 +00:00
"once_cell",
2022-03-23 19:25:21 +00:00
"valuable",
2021-07-28 02:25:53 +00:00
]
[[package]]
2022-10-12 20:38:11 +00:00
name = "tracing-log"
version = "0.1.3"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "78ddad33d2d10b1ed7eb9d1f518a5674713876e97e5bb9b7345a7984fbb4f922"
2021-07-28 02:25:53 +00:00
dependencies = [
2022-10-12 20:38:11 +00:00
"lazy_static",
"log",
"tracing-core",
2021-07-28 02:25:53 +00:00
]
[[package]]
2022-10-12 20:38:11 +00:00
name = "tracing-opentelemetry"
version = "0.17.4"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "fbbe89715c1dbbb790059e2565353978564924ee85017b5fff365c872ff6721f"
2021-07-28 02:25:53 +00:00
dependencies = [
2022-10-12 20:38:11 +00:00
"once_cell",
"opentelemetry 0.17.0",
"tracing",
2021-07-28 02:25:53 +00:00
"tracing-core",
2022-10-12 20:38:11 +00:00
"tracing-log",
"tracing-subscriber",
2021-07-28 02:25:53 +00:00
]
[[package]]
name = "tracing-opentelemetry"
2022-10-12 20:38:11 +00:00
version = "0.18.0"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "21ebb87a95ea13271332df069020513ab70bdb5637ca42d6e492dc3bbbad48de"
2021-07-28 02:25:53 +00:00
dependencies = [
2022-10-12 20:38:11 +00:00
"once_cell",
"opentelemetry 0.18.0",
2021-07-28 02:25:53 +00:00
"tracing",
"tracing-core",
"tracing-log",
"tracing-subscriber",
]
[[package]]
name = "tracing-subscriber"
2022-10-12 20:38:11 +00:00
version = "0.3.16"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "a6176eae26dd70d0c919749377897b54a9276bd7061339665dd68777926b5a70"
2021-07-28 02:25:53 +00:00
dependencies = [
"matchers",
2022-10-12 20:38:11 +00:00
"nu-ansi-term",
"once_cell",
2021-07-28 02:25:53 +00:00
"regex",
"sharded-slab",
"smallvec",
"thread_local",
"tracing",
"tracing-core",
"tracing-log",
]
[[package]]
name = "tracing-unwrap"
version = "0.9.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7908a5f1475756bd7f81d6fe7e3607f13b33562c3ec8f9fb7502df790350f74a"
dependencies = [
"tracing",
]
[[package]]
name = "triple_accel"
version = "0.3.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "622b09ce2fe2df4618636fb92176d205662f59803f39e70d1c333393082de96c"
2021-07-28 19:43:13 +00:00
[[package]]
name = "try-lock"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642"
2021-07-28 02:25:53 +00:00
[[package]]
name = "typenum"
2022-03-23 19:25:21 +00:00
version = "1.15.0"
2021-07-28 19:08:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-23 19:25:21 +00:00
checksum = "dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987"
2021-07-28 19:08:19 +00:00
2021-07-28 02:25:53 +00:00
[[package]]
name = "unicode-bidi"
2022-10-12 20:38:11 +00:00
version = "0.3.8"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "099b7128301d285f79ddd55b9a83d5e6b9e97c92e0ea0daebee7263e932de992"
[[package]]
name = "unicode-ident"
version = "1.0.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6ceab39d59e4c9499d4e5a8ee0e2735b891bb7308ac83dfb4e80cad195c9f6f3"
2021-07-28 02:25:53 +00:00
[[package]]
name = "unicode-normalization"
2022-10-12 20:38:11 +00:00
version = "0.1.22"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921"
2021-07-28 02:25:53 +00:00
dependencies = [
"tinyvec",
]
[[package]]
name = "unicode-segmentation"
2022-10-12 20:38:11 +00:00
version = "1.10.0"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "0fdbf052a0783de01e944a6ce7a8cb939e295b1e7be835a1112c3b9a7f047a5a"
2021-07-28 02:25:53 +00:00
[[package]]
name = "unicode-xid"
version = "0.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f962df74c8c05a667b5ee8bcf162993134c104e96440b663c8daa176dc772d8c"
2021-07-28 02:25:53 +00:00
[[package]]
name = "unicode_categories"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "39ec24b3121d976906ece63c9daad25b85969647682eee313cb5779fdd69e14e"
2021-07-28 02:47:56 +00:00
[[package]]
name = "untrusted"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
2021-07-28 02:25:53 +00:00
[[package]]
name = "url"
2022-10-12 20:38:11 +00:00
version = "2.3.1"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "0d68c799ae75762b8c3fe375feb6600ef5602c883c5d21eb51c09f22b83c4643"
2021-07-28 02:25:53 +00:00
dependencies = [
"form_urlencoded",
"idna",
"percent-encoding",
]
[[package]]
2021-07-28 19:08:19 +00:00
name = "uuid"
2022-10-12 20:38:11 +00:00
version = "1.2.1"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "feb41e78f93363bb2df8b0e86a2ca30eed7806ea16ea0c790d757cf93f79be83"
2021-07-28 02:25:53 +00:00
dependencies = [
2021-07-28 19:08:19 +00:00
"getrandom",
2021-07-28 02:25:53 +00:00
]
2022-03-23 19:25:21 +00:00
[[package]]
name = "valuable"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d"
2021-07-28 19:43:13 +00:00
[[package]]
name = "vcpkg"
version = "0.2.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
2021-07-28 02:25:53 +00:00
[[package]]
name = "version_check"
2022-03-23 19:25:21 +00:00
version = "0.9.4"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-23 19:25:21 +00:00
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
2021-07-28 02:25:53 +00:00
2021-07-28 19:43:13 +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-03-23 19:25:21 +00:00
[[package]]
name = "wasi"
version = "0.11.0+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
2021-07-28 02:25:53 +00:00
[[package]]
name = "wasm-bindgen"
2022-10-12 20:38:11 +00:00
version = "0.2.83"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "eaf9f5aceeec8be17c128b2e93e031fb8a4d469bb9c4ae2d7dc1888b26887268"
2021-07-28 02:25:53 +00:00
dependencies = [
2021-07-28 19:08:19 +00:00
"cfg-if",
2021-07-28 02:25:53 +00:00
"wasm-bindgen-macro",
]
[[package]]
name = "wasm-bindgen-backend"
2022-10-12 20:38:11 +00:00
version = "0.2.83"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "4c8ffb332579b0557b52d268b91feab8df3615f265d5270fec2a8c95b17c1142"
2021-07-28 02:25:53 +00:00
dependencies = [
"bumpalo",
"log",
2022-10-12 20:38:11 +00:00
"once_cell",
2021-07-28 02:25:53 +00:00
"proc-macro2",
"quote",
"syn",
"wasm-bindgen-shared",
]
2021-07-28 19:43:13 +00:00
[[package]]
name = "wasm-bindgen-futures"
2022-10-12 20:38:11 +00:00
version = "0.4.33"
2021-07-28 19:43:13 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "23639446165ca5a5de86ae1d8896b737ae80319560fbaa4c2887b7da6e7ebd7d"
2021-07-28 19:43:13 +00:00
dependencies = [
"cfg-if",
"js-sys",
"wasm-bindgen",
"web-sys",
]
2021-07-28 02:25:53 +00:00
[[package]]
name = "wasm-bindgen-macro"
2022-10-12 20:38:11 +00:00
version = "0.2.83"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "052be0f94026e6cbc75cdefc9bae13fd6052cdcaf532fa6c45e7ae33a1e6c810"
2021-07-28 02:25:53 +00:00
dependencies = [
"quote",
"wasm-bindgen-macro-support",
]
[[package]]
name = "wasm-bindgen-macro-support"
2022-10-12 20:38:11 +00:00
version = "0.2.83"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "07bc0c051dc5f23e307b13285f9d75df86bfdf816c5721e573dec1f9b8aa193c"
2021-07-28 02:25:53 +00:00
dependencies = [
"proc-macro2",
"quote",
"syn",
"wasm-bindgen-backend",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-shared"
2022-10-12 20:38:11 +00:00
version = "0.2.83"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "1c38c045535d93ec4f0b4defec448e4291638ee608530863b1e2ba115d4fff7f"
2021-07-28 02:25:53 +00:00
[[package]]
name = "web-sys"
2022-10-12 20:38:11 +00:00
version = "0.3.60"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "bcda906d8be16e728fd5adc5b729afad4e444e106ab28cd1c7256e54fa61510f"
2021-07-28 02:25:53 +00:00
dependencies = [
"js-sys",
"wasm-bindgen",
]
2021-07-28 02:47:56 +00:00
[[package]]
name = "webpki"
2022-10-12 20:38:11 +00:00
version = "0.22.0"
2021-07-28 02:47:56 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "f095d78192e208183081cc07bc5515ef55216397af48b873e5edcd72637fa1bd"
2021-07-28 02:47:56 +00:00
dependencies = [
"ring",
"untrusted",
]
[[package]]
name = "webpki-roots"
2022-10-12 20:38:11 +00:00
version = "0.22.5"
2021-07-28 02:47:56 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "368bfe657969fb01238bb756d351dcade285e0f6fcbd36dcb23359a5169975be"
2021-07-28 02:47:56 +00:00
dependencies = [
"webpki",
]
2021-07-28 02:25:53 +00:00
[[package]]
name = "whoami"
2022-10-12 20:38:11 +00:00
version = "1.2.3"
2021-07-28 02:25:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "d6631b6a2fd59b1841b622e8f1a7ad241ef0a46f2d580464ce8140ac94cbd571"
2021-07-28 02:25:53 +00:00
dependencies = [
2022-10-12 20:38:11 +00:00
"bumpalo",
2021-07-28 02:25:53 +00:00
"wasm-bindgen",
"web-sys",
]
[[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",
]
2021-07-28 02:25:53 +00:00
[[package]]
name = "winapi-x86_64-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
2022-03-23 19:25:21 +00:00
[[package]]
name = "windows-sys"
2022-10-12 20:38:11 +00:00
version = "0.36.1"
2022-03-23 19:25:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "ea04155a16a59f9eab786fe12a4a450e75cdb175f9e0d80da1e17db09f55b8d2"
2022-03-23 19:25:21 +00:00
dependencies = [
"windows_aarch64_msvc",
"windows_i686_gnu",
"windows_i686_msvc",
"windows_x86_64_gnu",
"windows_x86_64_msvc",
]
[[package]]
name = "windows_aarch64_msvc"
2022-10-12 20:38:11 +00:00
version = "0.36.1"
2022-03-23 19:25:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "9bb8c3fd39ade2d67e9874ac4f3db21f0d710bee00fe7cab16949ec184eeaa47"
2022-03-23 19:25:21 +00:00
[[package]]
name = "windows_i686_gnu"
2022-10-12 20:38:11 +00:00
version = "0.36.1"
2022-03-23 19:25:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "180e6ccf01daf4c426b846dfc66db1fc518f074baa793aa7d9b9aaeffad6a3b6"
2022-03-23 19:25:21 +00:00
[[package]]
name = "windows_i686_msvc"
2022-10-12 20:38:11 +00:00
version = "0.36.1"
2022-03-23 19:25:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "e2e7917148b2812d1eeafaeb22a97e4813dfa60a3f8f78ebe204bcc88f12f024"
2022-03-23 19:25:21 +00:00
[[package]]
name = "windows_x86_64_gnu"
2022-10-12 20:38:11 +00:00
version = "0.36.1"
2022-03-23 19:25:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "4dcd171b8776c41b97521e5da127a2d86ad280114807d0b2ab1e462bc764d9e1"
2022-03-23 19:25:21 +00:00
[[package]]
name = "windows_x86_64_msvc"
2022-10-12 20:38:11 +00:00
version = "0.36.1"
2022-03-23 19:25:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "c811ca4a8c853ef420abd8592ba53ddbbac90410fab6903b3e79972a631f7680"
2022-03-23 19:25:21 +00:00
2021-07-28 19:43:13 +00:00
[[package]]
name = "winreg"
2022-03-23 19:25:21 +00:00
version = "0.10.1"
2021-07-28 19:43:13 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-23 19:25:21 +00:00
checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d"
2021-07-28 19:43:13 +00:00
dependencies = [
"winapi",
]
[[package]]
name = "zeroize"
version = "1.5.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c394b5bd0c6f669e7275d9c20aa90ae064cb22e75a1cad54e1b34088034b149f"
dependencies = [
"zeroize_derive",
]
[[package]]
name = "zeroize_derive"
version = "1.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f8f187641dad4f680d25c4bfc4225b418165984179f26ca76ec4fb6441d3a17"
dependencies = [
"proc-macro2",
"quote",
"syn",
"synstructure",
]
2021-07-28 19:08:19 +00:00
[[package]]
name = "zstd"
2022-10-12 20:38:11 +00:00
version = "0.11.2+zstd.1.5.2"
2021-07-28 19:08:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "20cc960326ece64f010d2d2107537f26dc589a6573a316bd5b1dba685fa5fde4"
2021-07-28 19:08:19 +00:00
dependencies = [
"zstd-safe",
]
[[package]]
name = "zstd-safe"
2022-10-12 20:38:11 +00:00
version = "5.0.2+zstd.1.5.2"
2021-07-28 19:08:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "1d2a5585e04f9eea4b2a3d1eca508c4dee9592a89ef6f450c11719da0726f4db"
2021-07-28 19:08:19 +00:00
dependencies = [
"libc",
"zstd-sys",
]
[[package]]
name = "zstd-sys"
2022-10-12 20:38:11 +00:00
version = "2.0.1+zstd.1.5.2"
2021-07-28 19:08:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:38:11 +00:00
checksum = "9fd07cbbc53846d9145dbffdf6dd09a7a0aa52be46741825f5c97bdd4f73f12b"
2021-07-28 19:08:19 +00:00
dependencies = [
"cc",
"libc",
]