zero-to-production/Cargo.lock

3205 lines
76 KiB
Plaintext
Raw Normal View History

2020-08-23 10:34:29 +00:00
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
2021-07-21 20:41:13 +00:00
version = 3
2020-10-18 12:50:32 +00:00
[[package]]
name = "actix-codec"
2022-02-25 23:56:02 +00:00
version = "0.5.0"
2020-10-18 12:50:32 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-25 23:56:02 +00:00
checksum = "57a7559404a7f3573127aab53c08ce37a6c6a315c374a31070f3c91cd1b4a7fe"
2020-10-18 12:50:32 +00:00
dependencies = [
"bitflags",
2021-02-11 09:23:13 +00:00
"bytes",
2020-10-18 12:50:32 +00:00
"futures-core",
"futures-sink",
"log",
"memchr",
2021-02-11 09:23:13 +00:00
"pin-project-lite",
"tokio",
2022-07-05 16:47:21 +00:00
"tokio-util 0.7.3",
2020-08-23 10:53:08 +00:00
]
[[package]]
name = "actix-files"
2022-07-05 16:47:21 +00:00
version = "0.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "e04dcf7654254676d434b0285e2298d577ed4826f67f536e7a39bb0f64721164"
dependencies = [
"actix-http",
"actix-service",
"actix-utils",
"actix-web",
"askama_escape",
"bitflags",
"bytes",
"derive_more",
"futures-core",
"http-range",
"log",
"mime",
"mime_guess",
"percent-encoding",
"pin-project-lite",
]
2020-08-23 10:53:08 +00:00
[[package]]
name = "actix-http"
2022-07-05 16:47:21 +00:00
version = "3.2.1"
2020-08-23 10:53:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "6f9ffb6db08c1c3a1f4aef540f1a63193adc73c4fbd40b75a95fc8c5258f6e51"
2020-10-18 12:50:32 +00:00
dependencies = [
"actix-codec",
2020-10-18 12:50:32 +00:00
"actix-rt",
"actix-service",
"actix-utils",
2021-08-30 08:10:32 +00:00
"ahash",
2021-02-11 09:23:13 +00:00
"base64",
2020-10-18 12:50:32 +00:00
"bitflags",
2022-02-25 23:56:02 +00:00
"brotli",
2021-02-11 09:23:13 +00:00
"bytes",
"bytestring",
2020-10-18 12:50:32 +00:00
"derive_more",
"encoding_rs",
"flate2",
"futures-core",
2021-02-11 09:23:13 +00:00
"h2",
2020-10-18 12:50:32 +00:00
"http",
"httparse",
"httpdate",
2022-07-05 16:47:21 +00:00
"itoa 1.0.2",
2020-10-18 12:50:32 +00:00
"language-tags",
2021-05-01 15:11:16 +00:00
"local-channel",
2020-10-18 12:50:32 +00:00
"mime",
"percent-encoding",
2021-05-01 15:11:16 +00:00
"pin-project-lite",
2022-02-25 23:56:02 +00:00
"rand 0.8.5",
2022-07-05 16:47:21 +00:00
"sha1",
2021-02-11 09:23:13 +00:00
"smallvec",
2022-07-05 16:47:21 +00:00
"tracing",
2021-07-09 07:37:14 +00:00
"zstd",
2020-08-23 10:53:08 +00:00
]
[[package]]
name = "actix-macros"
version = "0.2.3"
2020-08-23 10:53:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "465a6172cf69b960917811022d8f29bc0b7fa1398bc4f78b3c466673db1213b6"
2020-08-23 10:53:08 +00:00
dependencies = [
2020-10-18 12:50:32 +00:00
"quote",
"syn",
2020-08-23 10:53:08 +00:00
]
[[package]]
name = "actix-router"
2022-02-25 23:56:02 +00:00
version = "0.5.0"
2020-08-23 10:53:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-25 23:56:02 +00:00
checksum = "eb60846b52c118f2f04a56cc90880a274271c489b2498623d58176f8ca21fa80"
2020-08-23 10:53:08 +00:00
dependencies = [
2020-10-18 12:50:32 +00:00
"bytestring",
2021-09-11 19:59:51 +00:00
"firestorm",
2020-10-18 12:50:32 +00:00
"http",
"log",
"regex",
"serde",
2020-08-23 10:53:08 +00:00
]
[[package]]
name = "actix-rt"
2022-07-05 16:47:21 +00:00
version = "2.7.0"
2020-08-23 10:53:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "7ea16c295198e958ef31930a6ef37d0fb64e9ca3b6116e6b93a8bdae96ee1000"
2020-08-23 10:53:08 +00:00
dependencies = [
2021-02-11 09:23:13 +00:00
"futures-core",
"tokio",
2020-08-23 10:53:08 +00:00
]
[[package]]
name = "actix-server"
2022-07-05 16:47:21 +00:00
version = "2.1.1"
2020-08-23 10:53:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "0da34f8e659ea1b077bb4637948b815cd3768ad5a188fdcd74ff4d84240cd824"
2020-08-23 10:53:08 +00:00
dependencies = [
2020-10-18 12:50:32 +00:00
"actix-rt",
"actix-service",
"actix-utils",
2021-02-11 09:23:13 +00:00
"futures-core",
"futures-util",
2022-02-25 23:56:02 +00:00
"mio",
2020-10-18 12:50:32 +00:00
"num_cpus",
"socket2",
2021-02-11 09:23:13 +00:00
"tokio",
2022-07-05 16:47:21 +00:00
"tracing",
2020-08-23 10:53:08 +00:00
]
[[package]]
name = "actix-service"
2021-12-27 10:32:52 +00:00
version = "2.0.2"
2020-08-23 10:53:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-27 10:32:52 +00:00
checksum = "3b894941f818cfdc7ccc4b9e60fa7e53b5042a2e8567270f9147d5591893373a"
2020-08-23 10:53:08 +00:00
dependencies = [
2021-02-11 09:23:13 +00:00
"futures-core",
2021-07-09 07:37:14 +00:00
"paste",
2021-02-11 09:23:13 +00:00
"pin-project-lite",
2020-08-23 10:53:08 +00:00
]
[[package]]
name = "actix-session"
2022-07-05 16:47:21 +00:00
version = "0.6.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0c9138a66462f1e65da829f9c0de81b44a96dfe193a4f19bfea32ee2be312368"
dependencies = [
"actix-service",
"actix-utils",
"actix-web",
"anyhow",
"async-trait",
"derive_more",
"rand 0.8.5",
"redis",
"serde",
"serde_json",
2022-07-05 16:47:21 +00:00
"time 0.3.11",
"tracing",
]
2020-08-23 10:53:08 +00:00
[[package]]
2020-10-18 12:50:32 +00:00
name = "actix-utils"
2021-05-01 15:11:16 +00:00
version = "3.0.0"
2020-08-23 10:53:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-01 15:11:16 +00:00
checksum = "e491cbaac2e7fc788dfff99ff48ef317e23b3cf63dbaf7aaab6418f40f92aa94"
2020-08-23 10:53:08 +00:00
dependencies = [
2021-05-01 15:11:16 +00:00
"local-waker",
2021-02-11 09:23:13 +00:00
"pin-project-lite",
2020-10-18 12:50:32 +00:00
]
[[package]]
name = "actix-web"
2022-07-05 16:47:21 +00:00
version = "4.1.0"
2020-10-18 12:50:32 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "a27e8fe9ba4ae613c21f677c2cfaf0696c3744030c6f485b34634e502d6bb379"
2020-10-18 12:50:32 +00:00
dependencies = [
"actix-codec",
2020-10-18 12:50:32 +00:00
"actix-http",
"actix-macros",
"actix-router",
"actix-rt",
"actix-server",
"actix-service",
"actix-utils",
2020-10-18 12:50:32 +00:00
"actix-web-codegen",
2021-08-30 08:10:32 +00:00
"ahash",
2021-02-11 09:23:13 +00:00
"bytes",
2022-02-25 23:56:02 +00:00
"bytestring",
2021-07-09 07:37:14 +00:00
"cfg-if",
2022-07-05 16:47:21 +00:00
"cookie",
2020-10-18 12:50:32 +00:00
"derive_more",
"encoding_rs",
"futures-core",
"futures-util",
2022-07-05 16:47:21 +00:00
"itoa 1.0.2",
2021-05-01 15:11:16 +00:00
"language-tags",
2020-10-18 12:50:32 +00:00
"log",
"mime",
2021-05-01 15:11:16 +00:00
"once_cell",
"pin-project-lite",
2020-10-18 12:50:32 +00:00
"regex",
"serde",
"serde_json",
"serde_urlencoded",
2021-02-11 09:23:13 +00:00
"smallvec",
"socket2",
2022-07-05 16:47:21 +00:00
"time 0.3.11",
2020-10-18 12:50:32 +00:00
"url",
2020-08-23 10:53:08 +00:00
]
[[package]]
name = "actix-web-codegen"
2022-07-05 16:47:21 +00:00
version = "4.0.1"
2020-08-23 10:53:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "5f270541caec49c15673b0af0e9a00143421ad4f118d2df7edcb68b627632f56"
2020-08-23 10:53:08 +00:00
dependencies = [
2021-09-11 19:59:51 +00:00
"actix-router",
2020-10-18 12:50:32 +00:00
"proc-macro2",
"quote",
"syn",
2020-08-23 10:53:08 +00:00
]
[[package]]
name = "actix-web-flash-messages"
2022-07-05 16:47:21 +00:00
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "05c89d051c33e7044e8a6e811ed06dda6ce65dfb51a1e379146f723116ca362a"
dependencies = [
"actix-web",
"anyhow",
"percent-encoding",
"serde",
"serde_json",
"thiserror",
2022-07-05 16:47:21 +00:00
"time 0.3.11",
"tokio",
]
[[package]]
name = "actix-web-lab"
2022-07-05 16:47:21 +00:00
version = "0.16.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "8cf633bf3ced3b374e3c990a9b5d7b09148852178d8be9bbef3706c80b28e151"
dependencies = [
"actix-files",
"actix-http",
"actix-router",
"actix-service",
"actix-utils",
"actix-web",
2022-07-05 16:47:21 +00:00
"actix-web-lab-derive",
"ahash",
2022-07-05 16:47:21 +00:00
"arc-swap",
"async-trait",
"bytes",
"csv",
"derive_more",
2022-07-05 16:47:21 +00:00
"digest",
"futures-core",
"futures-util",
2022-07-05 16:47:21 +00:00
"generic-array",
"hmac",
"http",
"local-channel",
"mime",
"once_cell",
"pin-project-lite",
2022-07-05 16:47:21 +00:00
"regex",
"serde",
2022-07-05 16:47:21 +00:00
"serde_html_form",
"serde_json",
"subtle",
"tokio",
2022-07-05 16:47:21 +00:00
"tracing",
]
[[package]]
name = "actix-web-lab-derive"
version = "0.16.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a44a15d9ddb31a4f41decd22f743a154e519fb326120e8133ef9ea6283335ad2"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
2020-08-23 10:53:08 +00:00
[[package]]
name = "adler"
2021-05-01 15:11:16 +00:00
version = "1.0.2"
2020-08-23 10:53:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-01 15:11:16 +00:00
checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
2020-08-23 10:53:08 +00:00
[[package]]
name = "aead"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0b613b8e1e3cf911a086f53f03bf286f52fd7a7258e4fa606f0ef220d39d8877"
dependencies = [
"generic-array",
]
[[package]]
name = "aes"
version = "0.7.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9e8b47f52ea9bae42228d07ec09eb676433d7c4ed1ebdf0f1d1c29ed446f1ab8"
dependencies = [
"cfg-if",
"cipher",
"cpufeatures",
"opaque-debug",
]
[[package]]
name = "aes-gcm"
version = "0.9.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "df5f85a83a7d8b0442b6aa7b504b8212c1733da07b98aae43d4bc21b2cb3cdf6"
dependencies = [
"aead",
"aes",
"cipher",
"ctr",
"ghash",
"subtle",
]
2020-08-25 21:19:53 +00:00
[[package]]
name = "ahash"
2021-12-27 10:32:52 +00:00
version = "0.7.6"
2020-08-25 21:19:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-27 10:32:52 +00:00
checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47"
2021-02-11 09:23:13 +00:00
dependencies = [
2022-07-05 16:47:21 +00:00
"getrandom 0.2.7",
2021-02-11 09:23:13 +00:00
"once_cell",
2021-01-03 18:06:10 +00:00
"version_check",
2020-12-05 19:14:22 +00:00
]
2020-08-25 21:19:53 +00:00
2020-08-23 10:53:08 +00:00
[[package]]
name = "aho-corasick"
2021-05-01 15:11:16 +00:00
version = "0.7.18"
2020-08-23 10:53:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-01 15:11:16 +00:00
checksum = "1e37cfd5e7657ada45f742d6e99ca5788580b5c529dc78faf11ece6dc702656f"
2020-08-23 10:53:08 +00:00
dependencies = [
2020-10-18 12:50:32 +00:00
"memchr",
2020-08-23 10:53:08 +00:00
]
2022-02-25 23:56:02 +00:00
[[package]]
name = "alloc-no-stdlib"
version = "2.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "35ef4730490ad1c4eae5c4325b2a95f521d023e5c885853ff7aca0a6a1631db3"
[[package]]
name = "alloc-stdlib"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "697ed7edc0f1711de49ce108c541623a0af97c6c60b2f6e2b65229847ac843c2"
dependencies = [
"alloc-no-stdlib",
]
[[package]]
name = "ansi_term"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-18 12:50:32 +00:00
checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2"
dependencies = [
2021-02-11 09:23:13 +00:00
"winapi",
]
2021-01-16 23:01:08 +00:00
[[package]]
name = "anyhow"
2022-07-05 16:47:21 +00:00
version = "1.0.58"
2021-01-16 23:01:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "bb07d2053ccdbe10e2af2995a2f116c1330396493dc1269f6a91d0ae82e19704"
2021-01-16 23:01:08 +00:00
[[package]]
name = "arc-swap"
version = "1.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c5d78ce20460b82d3fa150275ed9d55e21064fc7951177baacf86a145c4a4b1f"
[[package]]
name = "argon2"
2022-07-05 16:47:21 +00:00
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "db4ce4441f99dbd377ca8a8f57b698c44d0d6e712d8329b5040da5a64aa1ce73"
dependencies = [
"base64ct",
"blake2",
"password-hash",
]
[[package]]
name = "askama_escape"
version = "0.10.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "619743e34b5ba4e9703bba34deac3427c72507c7159f5fd030aea8cac0cfe341"
2022-02-25 23:56:02 +00:00
[[package]]
name = "assert-json-diff"
2022-07-05 16:47:21 +00:00
version = "2.0.2"
2022-02-25 23:56:02 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "47e4f2b81832e72834d7518d8487a0396a28cc408186a2e8854c0f98011faf12"
2022-02-25 23:56:02 +00:00
dependencies = [
"serde",
"serde_json",
]
2021-01-16 23:01:08 +00:00
[[package]]
name = "async-channel"
2021-05-01 15:11:16 +00:00
version = "1.6.1"
2021-01-16 23:01:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-01 15:11:16 +00:00
checksum = "2114d64672151c0c5eaa5e131ec84a74f06e1e559830dabba01ca30605d66319"
2021-01-16 23:01:08 +00:00
dependencies = [
"concurrent-queue",
"event-listener",
"futures-core",
]
2020-08-23 10:53:08 +00:00
[[package]]
name = "async-trait"
2022-07-05 16:47:21 +00:00
version = "0.1.56"
2020-08-23 10:53:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "96cf8829f67d2eab0b2dfa42c5d0ef737e0724e4a82b01b3e292456202b19716"
2020-08-23 10:53:08 +00:00
dependencies = [
2020-10-18 12:50:32 +00:00
"proc-macro2",
"quote",
"syn",
2020-08-23 10:53:08 +00:00
]
2020-08-25 21:19:53 +00:00
[[package]]
name = "atoi"
2022-07-05 16:47:21 +00:00
version = "1.0.0"
2020-08-25 21:19:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "d7c57d12312ff59c811c0643f4d80830505833c9ffaebd193d819392b265be8e"
2020-08-25 21:19:53 +00:00
dependencies = [
2020-10-18 12:50:32 +00:00
"num-traits",
]
2020-08-23 10:53:08 +00:00
[[package]]
name = "autocfg"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-18 12:50:32 +00:00
checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a"
2020-08-23 10:53:08 +00:00
2020-12-05 19:14:22 +00:00
[[package]]
name = "base64"
version = "0.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd"
[[package]]
name = "base64ct"
2022-07-05 16:47:21 +00:00
version = "1.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "3bdca834647821e0b13d9539a8634eb62d3501b6b6c2cec1722786ee6671b851"
2020-08-23 10:53:08 +00:00
[[package]]
name = "bitflags"
2021-08-30 08:10:32 +00:00
version = "1.3.2"
2020-12-05 19:14:22 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-30 08:10:32 +00:00
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
2020-12-05 19:14:22 +00:00
[[package]]
name = "blake2"
2022-02-25 23:56:02 +00:00
version = "0.10.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-25 23:56:02 +00:00
checksum = "b9cf849ee05b2ee5fba5e36f97ff8ec2533916700fc0758d40d92136a42f3388"
dependencies = [
2022-07-05 16:47:21 +00:00
"digest",
2020-08-25 21:19:53 +00:00
]
2021-12-27 10:32:52 +00:00
[[package]]
name = "block-buffer"
2022-02-25 23:56:02 +00:00
version = "0.10.2"
2021-12-27 10:32:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-25 23:56:02 +00:00
checksum = "0bf7fe51849ea569fd452f37822f606a5cabb684dc918707a0193fd4664ff324"
2021-12-27 10:32:52 +00:00
dependencies = [
"generic-array",
]
2020-08-23 10:53:08 +00:00
[[package]]
2022-02-25 23:56:02 +00:00
name = "brotli"
2022-07-05 16:47:21 +00:00
version = "3.3.4"
2020-08-23 10:53:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "a1a0b1dbcc8ae29329621f8d4f0d835787c1c38bb1401979b49d13b0b305ff68"
2020-08-23 10:53:08 +00:00
dependencies = [
2022-02-25 23:56:02 +00:00
"alloc-no-stdlib",
"alloc-stdlib",
"brotli-decompressor",
2020-08-23 10:53:08 +00:00
]
[[package]]
2022-02-25 23:56:02 +00:00
name = "brotli-decompressor"
version = "2.3.2"
2020-08-23 10:53:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-25 23:56:02 +00:00
checksum = "59ad2d4653bf5ca36ae797b1f4bb4dbddb60ce49ca4aed8a2ce4829f60425b80"
2020-08-23 10:53:08 +00:00
dependencies = [
2022-02-25 23:56:02 +00:00
"alloc-no-stdlib",
"alloc-stdlib",
2020-08-23 10:53:08 +00:00
]
[[package]]
name = "bstr"
version = "0.2.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ba3569f383e8f1598449f1a423e72e99569137b47740b1da11ef19af3d5c3223"
dependencies = [
"lazy_static",
"memchr",
"regex-automata",
"serde",
]
2020-08-23 10:53:08 +00:00
[[package]]
name = "bumpalo"
2022-07-05 16:47:21 +00:00
version = "3.10.0"
2020-08-23 10:53:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "37ccbd214614c6783386c1af30caf03192f17891059cecc394b4fb119e363de3"
2021-01-03 18:06:10 +00:00
2020-08-23 10:53:08 +00:00
[[package]]
name = "byteorder"
2021-05-01 15:11:16 +00:00
version = "1.4.3"
2020-08-23 10:53:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-01 15:11:16 +00:00
checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
2020-08-23 10:53:08 +00:00
2021-01-16 23:01:08 +00:00
[[package]]
name = "bytes"
2021-08-30 08:10:32 +00:00
version = "1.1.0"
2021-01-16 23:01:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-30 08:10:32 +00:00
checksum = "c4872d67bab6358e59559027aa3b9157c53d9358c51423c17554809a8858e0f8"
2021-01-16 23:01:08 +00:00
2020-08-23 10:53:08 +00:00
[[package]]
name = "bytestring"
2022-07-05 16:47:21 +00:00
version = "1.1.0"
2020-08-23 10:53:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "86b6a75fd3048808ef06af5cd79712be8111960adaf89d90250974b38fc3928a"
2020-08-23 10:53:08 +00:00
dependencies = [
2021-02-11 09:23:13 +00:00
"bytes",
2020-08-23 10:53:08 +00:00
]
2021-01-16 23:01:08 +00:00
[[package]]
name = "cache-padded"
2021-12-27 10:32:52 +00:00
version = "1.2.0"
2021-01-16 23:01:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-27 10:32:52 +00:00
checksum = "c1db59621ec70f09c5e9b597b220c7a2b43611f4710dc03ceb8748637775692c"
2021-01-16 23:01:08 +00:00
2020-08-23 10:53:08 +00:00
[[package]]
name = "cc"
2022-02-25 23:56:02 +00:00
version = "1.0.73"
2020-08-23 10:53:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-25 23:56:02 +00:00
checksum = "2fff2a6927b3bb87f9595d67196a70493f627687a71d87a0d692242c33f58c11"
2021-07-09 07:37:14 +00:00
dependencies = [
"jobserver",
]
2020-10-18 12:50:32 +00:00
[[package]]
name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
2020-08-23 10:53:08 +00:00
[[package]]
name = "chrono"
2020-10-18 12:50:32 +00:00
version = "0.4.19"
2020-08-23 10:53:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-18 12:50:32 +00:00
checksum = "670ad68c9088c2a963aaa298cb369688cf3f9465ce5e2d4ca10e6e0098a1ce73"
2020-08-23 10:53:08 +00:00
dependencies = [
2020-10-18 12:50:32 +00:00
"libc",
"num-integer",
"num-traits",
2022-02-25 23:56:02 +00:00
"time 0.1.44",
2021-02-11 09:23:13 +00:00
"winapi",
2020-08-23 10:53:08 +00:00
]
[[package]]
name = "cipher"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7ee52072ec15386f770805afd189a01c8841be8696bed250fa2f13c4c0d6dfb7"
dependencies = [
"generic-array",
]
2020-12-11 15:50:09 +00:00
[[package]]
name = "claim"
2021-12-28 11:56:29 +00:00
version = "0.5.0"
2020-12-11 15:50:09 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-28 11:56:29 +00:00
checksum = "f81099d6bb72e1df6d50bb2347224b666a670912bb7f06dbe867a4a070ab3ce8"
2020-12-11 15:50:09 +00:00
dependencies = [
"autocfg",
]
[[package]]
name = "combine"
2022-07-05 16:47:21 +00:00
version = "4.6.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "2a604e93b79d1808327a6fca85a6f2d69de66461e7620f5a4cbf5fb4d1d7c948"
dependencies = [
"bytes",
"futures-core",
"memchr",
"pin-project-lite",
"tokio",
2022-07-05 16:47:21 +00:00
"tokio-util 0.7.3",
]
2021-01-16 23:01:08 +00:00
[[package]]
name = "concurrent-queue"
version = "1.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "30ed07550be01594c6026cff2a1d7fe9c8f683caa798e12b68694ac9e88286a3"
dependencies = [
"cache-padded",
]
2021-12-28 11:56:29 +00:00
[[package]]
name = "config"
2022-07-05 16:47:21 +00:00
version = "0.13.1"
2021-12-28 11:56:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "3ea917b74b6edfb5024e3b55d3c8f710b5f4ed92646429601a42e96f0812b31b"
2020-08-25 21:19:53 +00:00
dependencies = [
2022-07-05 16:47:21 +00:00
"async-trait",
2020-10-18 12:50:32 +00:00
"lazy_static",
2022-07-05 16:47:21 +00:00
"nom",
"pathdiff",
2020-10-18 12:50:32 +00:00
"serde",
"yaml-rust",
2020-08-25 21:19:53 +00:00
]
2021-05-01 15:11:16 +00:00
[[package]]
name = "convert_case"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-01 15:11:16 +00:00
checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e"
[[package]]
name = "cookie"
2022-01-05 18:16:56 +00:00
version = "0.16.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-05 18:16:56 +00:00
checksum = "94d4706de1b0fa5b132270cddffa8585166037822e260a944fe161acd137ca05"
dependencies = [
"aes-gcm",
"base64",
"hkdf",
2022-07-05 16:47:21 +00:00
"hmac",
"percent-encoding",
"rand 0.8.5",
2022-07-05 16:47:21 +00:00
"sha2",
"subtle",
2022-07-05 16:47:21 +00:00
"time 0.3.11",
"version_check",
]
[[package]]
name = "cookie_store"
2022-07-05 16:47:21 +00:00
version = "0.16.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "2e4b6aa369f41f5faa04bb80c9b1f4216ea81646ed6124d76ba5c49a7aafd9cd"
dependencies = [
2022-07-05 16:47:21 +00:00
"cookie",
"idna",
"log",
"publicsuffix",
"serde",
"serde_json",
2022-07-05 16:47:21 +00:00
"time 0.3.11",
"url",
]
[[package]]
name = "core-foundation"
version = "0.9.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146"
dependencies = [
"core-foundation-sys",
"libc",
]
[[package]]
name = "core-foundation-sys"
version = "0.8.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc"
2020-08-25 21:19:53 +00:00
[[package]]
2021-05-13 16:11:15 +00:00
name = "cpufeatures"
2022-07-05 16:47:21 +00:00
version = "0.2.2"
2020-08-25 21:19:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "59a6001667ab124aebae2a495118e11d30984c3a653e99d86d58971708cf5e4b"
2021-05-13 16:11:15 +00:00
dependencies = [
"libc",
]
2020-08-25 21:19:53 +00:00
[[package]]
name = "crc"
2022-07-05 16:47:21 +00:00
version = "3.0.0"
2020-08-25 21:19:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "53757d12b596c16c78b83458d732a5d1a17ab3f53f2f7412f6fb57cc8a140ab3"
2020-08-25 21:19:53 +00:00
dependencies = [
2021-08-30 08:10:32 +00:00
"crc-catalog",
2020-08-25 21:19:53 +00:00
]
2021-08-30 08:10:32 +00:00
[[package]]
name = "crc-catalog"
2022-07-05 16:47:21 +00:00
version = "2.1.0"
2021-08-30 08:10:32 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "2d0165d2900ae6778e36e80bbc4da3b5eefccee9ba939761f9c2882a5d9af3ff"
2021-08-30 08:10:32 +00:00
2020-08-23 10:53:08 +00:00
[[package]]
name = "crc32fast"
2022-02-25 23:56:02 +00:00
version = "1.3.2"
2020-08-23 10:53:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-25 23:56:02 +00:00
checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d"
2020-08-23 10:53:08 +00:00
dependencies = [
2021-05-01 15:11:16 +00:00
"cfg-if",
2020-08-23 10:53:08 +00:00
]
2020-08-25 21:19:53 +00:00
[[package]]
name = "crossbeam-queue"
2022-07-05 16:47:21 +00:00
version = "0.3.5"
2020-08-25 21:19:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "1f25d8400f4a7a5778f0e4e52384a48cbd9b5c495d110786187fc750075277a2"
2020-08-25 21:19:53 +00:00
dependencies = [
2021-05-01 15:11:16 +00:00
"cfg-if",
2020-10-18 12:50:32 +00:00
"crossbeam-utils",
2020-08-25 21:19:53 +00:00
]
[[package]]
name = "crossbeam-utils"
2022-07-05 16:47:21 +00:00
version = "0.8.10"
2020-08-25 21:19:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "7d82ee10ce34d7bc12c2122495e7593a9c41347ecdd64185af4ecf72cb1a7f83"
2020-08-25 21:19:53 +00:00
dependencies = [
2021-05-01 15:11:16 +00:00
"cfg-if",
2022-07-05 16:47:21 +00:00
"once_cell",
2020-08-25 21:19:53 +00:00
]
[[package]]
2021-12-27 10:32:52 +00:00
name = "crypto-common"
2022-07-05 16:47:21 +00:00
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "5999502d32b9c48d492abe66392408144895020ec4709e549e840799f3bb74c0"
dependencies = [
"generic-array",
2022-02-25 23:56:02 +00:00
"typenum",
]
[[package]]
name = "csv"
version = "1.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "22813a6dc45b335f9bade10bf7271dc477e81113e89eb251a0bc2a8a81c536e1"
dependencies = [
"bstr",
"csv-core",
"itoa 0.4.8",
"ryu",
"serde",
]
[[package]]
name = "csv-core"
version = "0.1.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2b2466559f260f48ad25fe6317b3c8dac77b5bdb5763ac7d9d6103530663bc90"
dependencies = [
"memchr",
]
[[package]]
name = "ctr"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "049bb91fb4aaf0e3c7efa6cd5ef877dbbbd15b39dad06d9948de4ec8a75761ea"
dependencies = [
"cipher",
]
2021-01-16 23:01:08 +00:00
[[package]]
name = "deadpool"
2022-07-05 16:47:21 +00:00
version = "0.9.5"
2021-01-16 23:01:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "421fe0f90f2ab22016f32a9881be5134fdd71c65298917084b0c7477cbc3856e"
2021-01-16 23:01:08 +00:00
dependencies = [
"async-trait",
2022-02-25 23:56:02 +00:00
"deadpool-runtime",
2021-01-16 23:01:08 +00:00
"num_cpus",
2022-07-05 16:47:21 +00:00
"retain_mut",
2021-02-11 09:23:13 +00:00
"tokio",
2021-01-16 23:01:08 +00:00
]
2022-02-25 23:56:02 +00:00
[[package]]
name = "deadpool-runtime"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eaa37046cc0f6c3cc6090fbdbf73ef0b8ef4cfcc37f6befc0020f63e8cf121e1"
2020-08-23 10:53:08 +00:00
[[package]]
name = "derive_more"
2021-12-27 10:32:52 +00:00
version = "0.99.17"
2020-08-23 10:53:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-27 10:32:52 +00:00
checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321"
2020-08-23 10:53:08 +00:00
dependencies = [
2021-05-01 15:11:16 +00:00
"convert_case",
2020-10-18 12:50:32 +00:00
"proc-macro2",
"quote",
2022-07-05 16:47:21 +00:00
"rustc_version",
2020-10-18 12:50:32 +00:00
"syn",
2020-08-23 10:53:08 +00:00
]
2021-12-27 10:32:52 +00:00
[[package]]
name = "digest"
2022-02-25 23:56:02 +00:00
version = "0.10.3"
2021-12-27 10:32:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-25 23:56:02 +00:00
checksum = "f2fb860ca6fafa5552fb6d0e816a69c8e49f0908bf524e30a90d97c85892d506"
2021-12-27 10:32:52 +00:00
dependencies = [
2022-07-05 16:47:21 +00:00
"block-buffer",
2021-12-27 10:32:52 +00:00
"crypto-common",
"subtle",
]
2021-05-01 15:11:16 +00:00
[[package]]
name = "dirs"
2022-02-25 23:56:02 +00:00
version = "4.0.0"
2021-05-01 15:11:16 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-25 23:56:02 +00:00
checksum = "ca3aa72a6f96ea37bbc5aa912f6788242832f75369bdfdadcb0e38423f100059"
2021-05-01 15:11:16 +00:00
dependencies = [
"dirs-sys",
]
[[package]]
name = "dirs-sys"
2022-07-05 16:47:21 +00:00
version = "0.3.7"
2021-05-01 15:11:16 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "1b1d1d91c932ef41c0f2663aa8b0ca0342d444d842c06914aa0a7e352d0bada6"
2021-05-01 15:11:16 +00:00
dependencies = [
"libc",
"redox_users",
"winapi",
]
2020-08-25 21:19:53 +00:00
[[package]]
name = "dotenv"
version = "0.15.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-18 12:50:32 +00:00
checksum = "77c90badedccf4105eca100756a0b1289e191f6fcbdadd3cee1d2f614f97da8f"
2020-08-25 21:19:53 +00:00
[[package]]
name = "dtoa"
version = "0.4.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "56899898ce76aaf4a0f24d914c97ea6ed976d42fec6ad33fcbb0a1103e07b2b0"
2020-08-23 10:53:08 +00:00
[[package]]
name = "either"
2022-07-05 16:47:21 +00:00
version = "1.7.0"
2020-08-23 10:53:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "3f107b87b6afc2a64fd13cac55fe06d6c8859f12d4b14cbcdd2c67d0976781be"
dependencies = [
"serde",
]
2020-08-23 10:53:08 +00:00
[[package]]
name = "encoding_rs"
2022-07-05 16:47:21 +00:00
version = "0.8.31"
2020-08-23 10:53:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "9852635589dc9f9ea1b6fe9f05b50ef208c85c834a562f0c6abb1c475736ec2b"
2020-08-23 10:53:08 +00:00
dependencies = [
2021-05-01 15:11:16 +00:00
"cfg-if",
2020-08-23 10:53:08 +00:00
]
2020-12-29 10:00:11 +00:00
[[package]]
name = "env_logger"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "44533bbbb3bb3c1fa17d9f2e4e38bbbaf8396ba82193c4cb1b6445d711445d36"
dependencies = [
"log",
"regex",
]
2021-01-16 23:01:08 +00:00
[[package]]
name = "event-listener"
2022-02-25 23:56:02 +00:00
version = "2.5.2"
2021-01-16 23:01:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-25 23:56:02 +00:00
checksum = "77f3309417938f28bf8228fcff79a4a37103981e3e186d2ccd19c74b38f4eb71"
2021-01-16 23:01:08 +00:00
2020-12-29 10:00:11 +00:00
[[package]]
name = "fake"
version = "2.3.0"
2020-12-29 10:00:11 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6479fa2c7e83ddf8be7d435421e093b072ca891b99a49bc84eba098f4044f818"
2020-12-29 10:00:11 +00:00
dependencies = [
2021-02-11 09:23:13 +00:00
"rand 0.7.3",
2020-12-29 10:00:11 +00:00
]
2021-01-16 23:01:08 +00:00
[[package]]
name = "fastrand"
2022-02-25 23:56:02 +00:00
version = "1.7.0"
2021-01-16 23:01:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-25 23:56:02 +00:00
checksum = "c3fcf0cee53519c866c09b5de1f6c56ff9d647101f81c1964fa632e148896cdf"
2021-01-16 23:01:08 +00:00
dependencies = [
"instant",
]
2021-09-11 19:59:51 +00:00
[[package]]
name = "firestorm"
2022-07-05 16:47:21 +00:00
version = "0.5.1"
2021-09-11 19:59:51 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "2c5f6c2c942da57e2aaaa84b8a521489486f14e75e7fa91dab70aba913975f98"
2021-09-11 19:59:51 +00:00
2020-08-23 10:53:08 +00:00
[[package]]
name = "flate2"
2022-07-05 16:47:21 +00:00
version = "1.0.24"
2020-08-23 10:53:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "f82b0f4c27ad9f8bfd1f3208d882da2b09c301bc1c828fd3a00d0216d2fbbff6"
2020-08-23 10:53:08 +00:00
dependencies = [
2020-10-18 12:50:32 +00:00
"crc32fast",
"miniz_oxide",
2020-08-23 10:53:08 +00:00
]
[[package]]
name = "fnv"
version = "1.0.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-18 12:50:32 +00:00
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
2020-08-23 10:53:08 +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"
2020-12-05 19:14:22 +00:00
[[package]]
name = "form_urlencoded"
2021-05-01 15:11:16 +00:00
version = "1.0.1"
2020-12-05 19:14:22 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-01 15:11:16 +00:00
checksum = "5fc25a87fa4fd2094bffb06925852034d90a17f0d1e05197d4956d3555752191"
2020-12-05 19:14:22 +00:00
dependencies = [
"matches",
"percent-encoding",
]
2020-08-23 10:53:08 +00:00
[[package]]
name = "futures"
2022-02-25 23:56:02 +00:00
version = "0.3.21"
2020-08-23 10:53:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-25 23:56:02 +00:00
checksum = "f73fe65f54d1e12b726f517d3e2135ca3125a437b6d998caf1962961f7172d9e"
2020-08-23 10:53:08 +00:00
dependencies = [
2020-10-18 12:50:32 +00:00
"futures-channel",
"futures-core",
"futures-executor",
"futures-io",
"futures-sink",
"futures-task",
"futures-util",
2020-08-23 10:53:08 +00:00
]
[[package]]
name = "futures-channel"
2022-02-25 23:56:02 +00:00
version = "0.3.21"
2020-08-23 10:53:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-25 23:56:02 +00:00
checksum = "c3083ce4b914124575708913bca19bfe887522d6e2e6d0952943f5eac4a74010"
2020-08-23 10:53:08 +00:00
dependencies = [
2020-10-18 12:50:32 +00:00
"futures-core",
"futures-sink",
2020-08-23 10:53:08 +00:00
]
[[package]]
name = "futures-core"
2022-02-25 23:56:02 +00:00
version = "0.3.21"
2020-08-23 10:53:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-25 23:56:02 +00:00
checksum = "0c09fd04b7e4073ac7156a9539b57a484a8ea920f79c7c675d05d289ab6110d3"
2020-08-23 10:53:08 +00:00
[[package]]
name = "futures-executor"
2022-02-25 23:56:02 +00:00
version = "0.3.21"
2020-08-23 10:53:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-25 23:56:02 +00:00
checksum = "9420b90cfa29e327d0429f19be13e7ddb68fa1cccb09d65e5706b8c7a749b8a6"
2020-08-23 10:53:08 +00:00
dependencies = [
2020-10-18 12:50:32 +00:00
"futures-core",
"futures-task",
"futures-util",
2020-08-23 10:53:08 +00:00
]
2021-08-30 08:10:32 +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-02-25 23:56:02 +00:00
"parking_lot 0.11.2",
2021-08-30 08:10:32 +00:00
]
2020-08-23 10:53:08 +00:00
[[package]]
name = "futures-io"
2022-02-25 23:56:02 +00:00
version = "0.3.21"
2020-08-23 10:53:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-25 23:56:02 +00:00
checksum = "fc4045962a5a5e935ee2fdedaa4e08284547402885ab326734432bed5d12966b"
2020-08-23 10:53:08 +00:00
2021-01-16 23:01:08 +00:00
[[package]]
name = "futures-lite"
2021-08-30 08:10:32 +00:00
version = "1.12.0"
2021-01-16 23:01:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-30 08:10:32 +00:00
checksum = "7694489acd39452c77daa48516b894c153f192c3578d5a839b62c58099fcbf48"
2021-01-16 23:01:08 +00:00
dependencies = [
"fastrand",
"futures-core",
"futures-io",
"memchr",
"parking",
2021-02-11 09:23:13 +00:00
"pin-project-lite",
2021-01-16 23:01:08 +00:00
"waker-fn",
]
2020-08-23 10:53:08 +00:00
[[package]]
name = "futures-macro"
2022-02-25 23:56:02 +00:00
version = "0.3.21"
2020-08-23 10:53:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-25 23:56:02 +00:00
checksum = "33c1e13800337f4d4d7a316bf45a567dbcb6ffe087f16424852d97e97a91f512"
2020-08-23 10:53:08 +00:00
dependencies = [
2020-10-18 12:50:32 +00:00
"proc-macro2",
"quote",
"syn",
2020-08-23 10:53:08 +00:00
]
[[package]]
name = "futures-sink"
2022-02-25 23:56:02 +00:00
version = "0.3.21"
2020-08-23 10:53:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-25 23:56:02 +00:00
checksum = "21163e139fa306126e6eedaf49ecdb4588f939600f0b1e770f4205ee4b7fa868"
2020-08-23 10:53:08 +00:00
[[package]]
name = "futures-task"
2022-02-25 23:56:02 +00:00
version = "0.3.21"
2020-08-23 10:53:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-25 23:56:02 +00:00
checksum = "57c66a976bf5909d801bbef33416c41372779507e7a6b3a5e25e4749c58f776a"
2020-08-23 10:53:08 +00:00
2021-01-16 23:01:08 +00:00
[[package]]
name = "futures-timer"
version = "3.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e64b03909df88034c26dc1547e8970b91f98bdb65165d6a4e9110d94263dbb2c"
2020-08-23 10:53:08 +00:00
[[package]]
name = "futures-util"
2022-02-25 23:56:02 +00:00
version = "0.3.21"
2020-08-23 10:53:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-25 23:56:02 +00:00
checksum = "d8b7abd5d659d9b90c8cba917f6ec750a74e2dc23902ef9cd4cc8c8b22e6036a"
2020-08-23 10:53:08 +00:00
dependencies = [
2020-10-18 12:50:32 +00:00
"futures-channel",
"futures-core",
"futures-io",
"futures-macro",
"futures-sink",
"futures-task",
"memchr",
2021-02-11 09:23:13 +00:00
"pin-project-lite",
2020-10-18 12:50:32 +00:00
"pin-utils",
"slab",
2020-08-23 10:53:08 +00:00
]
2020-08-25 21:19:53 +00:00
[[package]]
name = "generic-array"
2022-02-25 23:56:02 +00:00
version = "0.14.5"
2020-08-25 21:19:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-25 23:56:02 +00:00
checksum = "fd48d33ec7f05fbfa152300fdad764757cbded343c1aa1cff2fbaf4134851803"
2020-08-25 21:19:53 +00:00
dependencies = [
2020-10-18 12:50:32 +00:00
"typenum",
"version_check",
2020-08-25 21:19:53 +00:00
]
[[package]]
name = "gethostname"
2022-07-05 16:47:21 +00:00
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "c1ebd34e35c46e00bb73e81363248d627782724609fe1b6396f553f68fe3862e"
dependencies = [
2020-10-18 12:50:32 +00:00
"libc",
2021-02-11 09:23:13 +00:00
"winapi",
]
2020-08-23 10:53:08 +00:00
[[package]]
name = "getrandom"
2021-01-03 18:06:10 +00:00
version = "0.1.16"
2020-08-23 10:53:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-03 18:06:10 +00:00
checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce"
2020-08-23 10:53:08 +00:00
dependencies = [
2021-05-01 15:11:16 +00:00
"cfg-if",
2020-10-18 12:50:32 +00:00
"libc",
"wasi 0.9.0+wasi-snapshot-preview1",
2020-08-23 10:53:08 +00:00
]
2020-12-05 19:14:22 +00:00
[[package]]
name = "getrandom"
2022-07-05 16:47:21 +00:00
version = "0.2.7"
2020-12-05 19:14:22 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "4eb1a864a501629691edf6c15a593b7a51eebaa1e8468e9ddc623de7c9b58ec6"
2020-12-05 19:14:22 +00:00
dependencies = [
2021-05-01 15:11:16 +00:00
"cfg-if",
2020-12-05 19:14:22 +00:00
"libc",
2022-07-05 16:47:21 +00:00
"wasi 0.11.0+wasi-snapshot-preview1",
2021-01-16 23:01:08 +00:00
]
[[package]]
name = "ghash"
version = "0.4.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1583cc1656d7839fd3732b80cf4f38850336cdb9b8ded1cd399ca62958de3c99"
dependencies = [
"opaque-debug",
"polyval",
]
2021-01-16 23:01:08 +00:00
[[package]]
name = "h2"
2022-07-05 16:47:21 +00:00
version = "0.3.13"
2021-01-16 23:01:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "37a82c6d637fc9515a4694bbf1cb2457b79d81ce52b3108bdeea58b07dd34a57"
2021-01-16 23:01:08 +00:00
dependencies = [
2021-02-11 09:23:13 +00:00
"bytes",
2020-10-18 12:50:32 +00:00
"fnv",
"futures-core",
"futures-sink",
"futures-util",
"http",
"indexmap",
"slab",
2021-02-11 09:23:13 +00:00
"tokio",
2022-07-05 16:47:21 +00:00
"tokio-util 0.7.3",
2020-10-18 12:50:32 +00:00
"tracing",
2020-08-23 10:53:08 +00:00
]
2020-10-18 12:50:32 +00:00
[[package]]
name = "hashbrown"
2021-08-30 08:10:32 +00:00
version = "0.11.2"
2020-10-18 12:50:32 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-30 08:10:32 +00:00
checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e"
2022-07-05 16:47:21 +00:00
[[package]]
name = "hashbrown"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "db0d4cf898abf0081f964436dc980e96670a0f36863e4b83aaacdb65c9d7ccc3"
2021-01-03 18:06:10 +00:00
dependencies = [
2021-08-30 08:10:32 +00:00
"ahash",
2021-01-03 18:06:10 +00:00
]
[[package]]
name = "hashlink"
2022-07-05 16:47:21 +00:00
version = "0.8.0"
2021-01-03 18:06:10 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "d452c155cb93fecdfb02a73dd57b5d8e442c2063bd7aac72f1bc5e4263a43086"
2021-01-03 18:06:10 +00:00
dependencies = [
2022-07-05 16:47:21 +00:00
"hashbrown 0.12.1",
2021-01-03 18:06:10 +00:00
]
2020-10-18 12:50:32 +00:00
2020-08-23 10:53:08 +00:00
[[package]]
name = "heck"
2022-07-05 16:47:21 +00:00
version = "0.4.0"
2020-08-23 10:53:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "2540771e65fc8cb83cd6e8a237f70c319bd5c29f78ed1084ba5d50eeac86f7f9"
2020-08-23 10:53:08 +00:00
dependencies = [
2020-10-18 12:50:32 +00:00
"unicode-segmentation",
2020-08-23 10:53:08 +00:00
]
[[package]]
name = "hermit-abi"
2021-08-30 08:10:32 +00:00
version = "0.1.19"
2020-08-23 10:53:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-30 08:10:32 +00:00
checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
2020-08-23 10:53:08 +00:00
dependencies = [
2020-10-18 12:50:32 +00:00
"libc",
2020-08-23 10:53:08 +00:00
]
2020-08-25 21:19:53 +00:00
[[package]]
name = "hex"
2021-05-01 15:11:16 +00:00
version = "0.4.3"
2020-08-25 21:19:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-01 15:11:16 +00:00
checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
2020-08-25 21:19:53 +00:00
[[package]]
name = "hkdf"
version = "0.12.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "791a029f6b9fc27657f6f188ec6e5e43f6911f6f878e0dc5501396e09809d437"
dependencies = [
2022-07-05 16:47:21 +00:00
"hmac",
2020-08-23 10:53:08 +00:00
]
[[package]]
name = "hmac"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
dependencies = [
2022-07-05 16:47:21 +00:00
"digest",
]
2020-08-23 10:53:08 +00:00
[[package]]
name = "http"
2022-07-05 16:47:21 +00:00
version = "0.2.8"
2020-08-23 10:53:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "75f43d41e26995c17e71ee126451dd3941010b0514a81a9d11f3b341debc2399"
2020-08-23 10:53:08 +00:00
dependencies = [
2021-02-11 09:23:13 +00:00
"bytes",
2020-10-18 12:50:32 +00:00
"fnv",
2022-07-05 16:47:21 +00:00
"itoa 1.0.2",
2020-08-23 10:53:08 +00:00
]
2021-01-16 23:01:08 +00:00
[[package]]
name = "http-body"
2022-07-05 16:47:21 +00:00
version = "0.4.5"
2021-01-16 23:01:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1"
2021-01-16 23:01:08 +00:00
dependencies = [
2021-02-11 09:23:13 +00:00
"bytes",
2021-01-16 23:01:08 +00:00
"http",
2021-05-01 15:11:16 +00:00
"pin-project-lite",
2021-01-16 23:01:08 +00:00
]
[[package]]
name = "http-range"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "21dec9db110f5f872ed9699c3ecf50cf16f423502706ba5c72462e28d3157573"
2021-01-16 23:01:08 +00:00
[[package]]
name = "http-types"
2021-08-30 08:10:32 +00:00
version = "2.12.0"
2021-01-16 23:01:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-30 08:10:32 +00:00
checksum = "6e9b187a72d63adbfba487f48095306ac823049cb504ee195541e91c7775f5ad"
2021-01-16 23:01:08 +00:00
dependencies = [
"anyhow",
"async-channel",
2021-02-11 09:23:13 +00:00
"base64",
2021-01-16 23:01:08 +00:00
"futures-lite",
"http",
"infer",
2021-02-11 09:23:13 +00:00
"pin-project-lite",
"rand 0.7.3",
2021-01-16 23:01:08 +00:00
"serde",
"serde_json",
"serde_qs",
"serde_urlencoded",
"url",
]
2020-08-23 10:53:08 +00:00
[[package]]
name = "httparse"
2022-07-05 16:47:21 +00:00
version = "1.7.1"
2020-08-23 10:53:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "496ce29bb5a52785b44e0f7ca2847ae0bb839c9bd28f69acac9b99d461c0c04c"
2020-08-23 10:53:08 +00:00
[[package]]
2020-10-18 12:50:32 +00:00
name = "httpdate"
2021-12-27 10:32:52 +00:00
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-27 10:32:52 +00:00
checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421"
2020-08-23 10:53:08 +00:00
[[package]]
name = "hyper"
2022-07-05 16:47:21 +00:00
version = "0.14.19"
2021-01-16 23:01:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "42dc3c131584288d375f2d07f822b0cb012d8c6fb899a5b9fdb3cb7eb9b6004f"
2021-01-16 23:01:08 +00:00
dependencies = [
2021-02-11 09:23:13 +00:00
"bytes",
2020-10-18 12:50:32 +00:00
"futures-channel",
"futures-core",
"futures-util",
2021-02-11 09:23:13 +00:00
"h2",
2020-10-18 12:50:32 +00:00
"http",
2021-02-11 09:23:13 +00:00
"http-body",
2020-10-18 12:50:32 +00:00
"httparse",
"httpdate",
2022-07-05 16:47:21 +00:00
"itoa 1.0.2",
2021-08-30 08:10:32 +00:00
"pin-project-lite",
2020-10-18 12:50:32 +00:00
"socket2",
2021-02-11 09:23:13 +00:00
"tokio",
2020-10-18 12:50:32 +00:00
"tower-service",
"tracing",
"want",
2020-08-23 10:53:08 +00:00
]
2021-01-11 08:32:27 +00:00
[[package]]
name = "hyper-rustls"
2021-12-27 10:32:52 +00:00
version = "0.23.0"
2021-01-11 08:32:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-27 10:32:52 +00:00
checksum = "d87c48c02e0dc5e3b849a2041db3029fd066650f8f717c07bf8ed78ccb895cac"
2021-01-11 08:32:27 +00:00
dependencies = [
2021-12-27 10:32:52 +00:00
"http",
2021-02-11 09:23:13 +00:00
"hyper",
2022-07-05 16:47:21 +00:00
"rustls",
2021-02-11 09:23:13 +00:00
"tokio",
2022-07-05 16:47:21 +00:00
"tokio-rustls",
2021-01-11 08:32:27 +00:00
]
2020-08-23 10:53:08 +00:00
[[package]]
name = "idna"
2021-05-01 15:11:16 +00:00
version = "0.2.3"
2020-08-23 10:53:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-01 15:11:16 +00:00
checksum = "418a0a6fab821475f634efe3ccc45c013f742efe03d853e8d3355d5cb850ecf8"
2020-08-23 10:53:08 +00:00
dependencies = [
2020-10-18 12:50:32 +00:00
"matches",
"unicode-bidi",
"unicode-normalization",
2020-08-23 10:53:08 +00:00
]
[[package]]
name = "indexmap"
2022-07-05 16:47:21 +00:00
version = "1.9.1"
2020-08-23 10:53:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "10a35a97730320ffe8e2d410b5d3b69279b98d2c14bdb8b70ea89ecf7888d41e"
2020-08-23 10:53:08 +00:00
dependencies = [
2020-10-18 12:50:32 +00:00
"autocfg",
2022-07-05 16:47:21 +00:00
"hashbrown 0.12.1",
2020-08-23 10:53:08 +00:00
]
2021-01-16 23:01:08 +00:00
[[package]]
name = "infer"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "64e9829a50b42bb782c1df523f78d332fe371b10c661e78b7a3c34b0198e9fac"
2020-08-23 10:53:08 +00:00
[[package]]
name = "instant"
2021-12-27 10:32:52 +00:00
version = "0.1.12"
2020-08-23 10:53:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-27 10:32:52 +00:00
checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
2020-10-18 12:50:32 +00:00
dependencies = [
2021-05-01 15:11:16 +00:00
"cfg-if",
2020-10-18 12:50:32 +00:00
]
2020-08-23 10:53:08 +00:00
[[package]]
name = "ipnet"
2022-07-05 16:47:21 +00:00
version = "2.5.0"
2020-08-23 10:53:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "879d54834c8c76457ef4293a689b2a8c59b076067ad77b15efafbb05f92a592b"
2020-08-23 10:53:08 +00:00
2021-09-30 20:13:14 +00:00
[[package]]
name = "itertools"
2021-12-27 10:32:52 +00:00
version = "0.10.3"
2021-09-30 20:13:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-27 10:32:52 +00:00
checksum = "a9a9d19fa1e79b6215ff29b9d6880b706147f16e9b1dbb1e4e5947b5b02bc5e3"
2021-09-30 20:13:14 +00:00
dependencies = [
"either",
]
[[package]]
name = "itoa"
version = "0.4.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4"
2021-12-27 10:32:52 +00:00
[[package]]
name = "itoa"
2022-07-05 16:47:21 +00:00
version = "1.0.2"
2021-12-27 10:32:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "112c678d4050afce233f4f2852bb2eb519230b3cf12f33585275537d7e41578d"
2021-12-27 10:32:52 +00:00
2021-07-09 07:37:14 +00:00
[[package]]
name = "jobserver"
2021-08-30 08:10:32 +00:00
version = "0.1.24"
2021-07-09 07:37:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-30 08:10:32 +00:00
checksum = "af25a77299a7f711a01975c35a6a424eb6862092cc2d6c72c4ed6cbc56dfc1fa"
2021-07-09 07:37:14 +00:00
dependencies = [
"libc",
]
2020-08-23 10:53:08 +00:00
[[package]]
name = "js-sys"
2022-07-05 16:47:21 +00:00
version = "0.3.58"
2020-08-23 10:53:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "c3fac17f7123a73ca62df411b1bf727ccc805daa070338fda671c86dac1bdc27"
2020-08-23 10:53:08 +00:00
dependencies = [
2020-10-18 12:50:32 +00:00
"wasm-bindgen",
2020-08-23 10:53:08 +00:00
]
[[package]]
name = "language-tags"
2021-07-09 07:37:14 +00:00
version = "0.3.2"
2020-08-23 10:53:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-09 07:37:14 +00:00
checksum = "d4345964bb142484797b161f473a503a434de77149dd8c7427788c6e13379388"
2020-08-23 10:53:08 +00:00
[[package]]
name = "lazy_static"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-18 12:50:32 +00:00
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
2020-08-23 10:53:08 +00:00
[[package]]
name = "libc"
2022-07-05 16:47:21 +00:00
version = "0.2.126"
2020-08-23 10:53:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "349d5a591cd28b49e1d1037471617a32ddcda5731b99419008085f72d5a53836"
2020-08-23 10:53:08 +00:00
[[package]]
name = "linked-hash-map"
2022-07-05 16:47:21 +00:00
version = "0.5.6"
2020-08-23 10:53:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f"
2020-08-23 10:53:08 +00:00
2021-03-08 22:10:23 +00:00
[[package]]
name = "linkify"
2022-07-05 16:47:21 +00:00
version = "0.8.1"
2021-03-08 22:10:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "28d9967eb7d0bc31c39c6f52e8fce42991c0cd1f7a2078326f0b7a399a584c8d"
2021-03-08 22:10:23 +00:00
dependencies = [
"memchr",
]
2021-05-01 15:11:16 +00:00
[[package]]
name = "local-channel"
2022-07-05 16:47:21 +00:00
version = "0.1.3"
2021-05-01 15:11:16 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "7f303ec0e94c6c54447f84f3b0ef7af769858a9c4ef56ef2a986d3dcd4c3fc9c"
2021-05-01 15:11:16 +00:00
dependencies = [
"futures-core",
"futures-sink",
"futures-util",
"local-waker",
]
[[package]]
name = "local-waker"
2022-07-05 16:47:21 +00:00
version = "0.1.3"
2021-05-01 15:11:16 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "e34f76eb3611940e0e7d53a9aaa4e6a3151f69541a282fd0dad5571420c53ff1"
2021-05-01 15:11:16 +00:00
2020-08-23 10:53:08 +00:00
[[package]]
name = "lock_api"
2022-02-25 23:56:02 +00:00
version = "0.4.6"
2020-08-23 10:53:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-25 23:56:02 +00:00
checksum = "88943dd7ef4a2e5a4bfa2753aaab3013e34ce2533d1996fb18ef591e315e2b3b"
2020-08-23 10:53:08 +00:00
dependencies = [
2020-10-18 12:50:32 +00:00
"scopeguard",
2020-08-23 10:53:08 +00:00
]
[[package]]
name = "log"
2022-07-05 16:47:21 +00:00
version = "0.4.17"
2020-08-23 10:53:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
2020-08-23 10:53:08 +00:00
dependencies = [
2021-05-01 15:11:16 +00:00
"cfg-if",
2020-08-23 10:53:08 +00:00
]
[[package]]
name = "matchers"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558"
dependencies = [
2020-10-18 12:50:32 +00:00
"regex-automata",
]
2020-08-23 10:53:08 +00:00
[[package]]
name = "matches"
2021-08-30 08:10:32 +00:00
version = "0.1.9"
2020-08-23 10:53:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-30 08:10:32 +00:00
checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f"
2020-08-23 10:53:08 +00:00
2020-08-25 21:19:53 +00:00
[[package]]
name = "md-5"
2022-07-05 16:47:21 +00:00
version = "0.10.1"
2020-08-25 21:19:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "658646b21e0b72f7866c7038ab086d3d5e1cd6271f060fd37defb241949d0582"
2020-08-25 21:19:53 +00:00
dependencies = [
2022-07-05 16:47:21 +00:00
"digest",
2020-08-25 21:19:53 +00:00
]
2020-08-23 10:53:08 +00:00
[[package]]
name = "memchr"
2022-07-05 16:47:21 +00:00
version = "2.5.0"
2020-08-23 10:53:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
2020-08-23 10:53:08 +00:00
[[package]]
name = "mime"
version = "0.3.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-18 12:50:32 +00:00
checksum = "2a60c7ce501c71e03a9c9c0d35b861413ae925bd979cc7a4e30d060069aaac8d"
2020-08-23 10:53:08 +00:00
[[package]]
name = "mime_guess"
version = "2.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4192263c238a5f0d0c6bfd21f336a313a4ce1c450542449ca191bb657b4642ef"
dependencies = [
"mime",
"unicase",
]
2021-08-30 08:10:32 +00:00
[[package]]
name = "minimal-lexical"
2021-12-27 10:32:52 +00:00
version = "0.2.1"
2021-08-30 08:10:32 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-27 10:32:52 +00:00
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
2021-08-30 08:10:32 +00:00
2020-08-23 10:53:08 +00:00
[[package]]
name = "miniz_oxide"
2022-07-05 16:47:21 +00:00
version = "0.5.3"
2020-08-23 10:53:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "6f5c75688da582b8ffc1f1799e9db273f32133c49e048f614d22ec3256773ccc"
2020-08-23 10:53:08 +00:00
dependencies = [
2020-10-18 12:50:32 +00:00
"adler",
2020-08-23 10:53:08 +00:00
]
[[package]]
name = "mio"
2022-07-05 16:47:21 +00:00
version = "0.8.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "57ee1c23c7c63b0c9250c339ffdc69255f110b298b901b9f6c82547b7b87caaf"
dependencies = [
"libc",
"log",
2022-07-05 16:47:21 +00:00
"wasi 0.11.0+wasi-snapshot-preview1",
"windows-sys",
2020-08-23 10:53:08 +00:00
]
[[package]]
name = "native-tls"
2022-07-05 16:47:21 +00:00
version = "0.2.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "fd7e2f3618557f980e0b17e8856252eee3c97fa12c54dff0ca290fb6266ca4a9"
dependencies = [
"lazy_static",
"libc",
"log",
"openssl",
"openssl-probe",
"openssl-sys",
"schannel",
"security-framework",
"security-framework-sys",
"tempfile",
]
2020-08-25 21:19:53 +00:00
[[package]]
name = "nom"
2022-07-05 16:47:21 +00:00
version = "7.1.1"
2020-08-25 21:19:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "a8903e5a29a317527874d0402f867152a3d21c908bb0b933e416c65e301d4c36"
2020-12-05 19:14:22 +00:00
dependencies = [
"memchr",
2021-08-30 08:10:32 +00:00
"minimal-lexical",
2021-01-16 23:01:08 +00:00
]
2020-08-23 10:53:08 +00:00
[[package]]
name = "num-integer"
2022-07-05 16:47:21 +00:00
version = "0.1.45"
2020-08-23 10:53:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9"
2020-08-23 10:53:08 +00:00
dependencies = [
2020-10-18 12:50:32 +00:00
"autocfg",
"num-traits",
2020-08-23 10:53:08 +00:00
]
[[package]]
name = "num-traits"
2022-07-05 16:47:21 +00:00
version = "0.2.15"
2020-08-23 10:53:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd"
2020-08-23 10:53:08 +00:00
dependencies = [
2020-10-18 12:50:32 +00:00
"autocfg",
2020-08-23 10:53:08 +00:00
]
[[package]]
name = "num_cpus"
2021-12-27 10:32:52 +00:00
version = "1.13.1"
2020-08-23 10:53:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-27 10:32:52 +00:00
checksum = "19e64526ebdee182341572e50e9ad03965aa510cd94427a4549448f285e957a1"
2020-08-23 10:53:08 +00:00
dependencies = [
2020-10-18 12:50:32 +00:00
"hermit-abi",
2021-02-11 09:23:13 +00:00
"libc",
]
2020-08-23 10:53:08 +00:00
2022-02-25 23:56:02 +00:00
[[package]]
name = "num_threads"
2022-07-05 16:47:21 +00:00
version = "0.1.6"
2022-02-25 23:56:02 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "2819ce041d2ee131036f4fc9d6ae7ae125a3a40e97ba64d04fe799ad9dabbb44"
2022-02-25 23:56:02 +00:00
dependencies = [
"libc",
]
2020-08-23 10:53:08 +00:00
[[package]]
name = "once_cell"
2022-07-05 16:47:21 +00:00
version = "1.13.0"
2020-08-23 10:53:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "18a6dbe30758c9f83eb00cbea4ac95966305f5a7772f3f42ebfc7fc7eddbd8e1"
2020-08-23 10:53:08 +00:00
2020-08-25 21:19:53 +00:00
[[package]]
name = "opaque-debug"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-18 12:50:32 +00:00
checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5"
2020-08-25 21:19:53 +00:00
[[package]]
name = "openssl"
2022-07-05 16:47:21 +00:00
version = "0.10.40"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "fb81a6430ac911acb25fe5ac8f1d2af1b4ea8a4fdfda0f1ee4292af2e2d8eb0e"
dependencies = [
"bitflags",
"cfg-if",
"foreign-types",
"libc",
"once_cell",
2022-07-05 16:47:21 +00:00
"openssl-macros",
"openssl-sys",
]
2022-07-05 16:47:21 +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",
]
[[package]]
name = "openssl-probe"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
[[package]]
name = "openssl-sys"
2022-07-05 16:47:21 +00:00
version = "0.9.74"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "835363342df5fba8354c5b453325b110ffd54044e588c539cf2f20a8014e4cb1"
dependencies = [
"autocfg",
"cc",
"libc",
"pkg-config",
"vcpkg",
]
2021-01-16 23:01:08 +00:00
[[package]]
name = "parking"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "427c3892f9e783d91cc128285287e70a59e206ca452770ece88a76f7a3eddd72"
2020-08-23 10:53:08 +00:00
[[package]]
name = "parking_lot"
2021-08-30 08:10:32 +00:00
version = "0.11.2"
2020-08-23 10:53:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-30 08:10:32 +00:00
checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99"
2020-08-23 10:53:08 +00:00
dependencies = [
2020-10-18 12:50:32 +00:00
"instant",
"lock_api",
2022-02-25 23:56:02 +00:00
"parking_lot_core 0.8.5",
]
[[package]]
name = "parking_lot"
2022-07-05 16:47:21 +00:00
version = "0.12.1"
2022-02-25 23:56:02 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
2022-02-25 23:56:02 +00:00
dependencies = [
"lock_api",
2022-07-05 16:47:21 +00:00
"parking_lot_core 0.9.3",
2020-08-23 10:53:08 +00:00
]
[[package]]
name = "parking_lot_core"
2021-08-30 08:10:32 +00:00
version = "0.8.5"
2020-08-23 10:53:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-30 08:10:32 +00:00
checksum = "d76e8e1493bcac0d2766c42737f34458f1c8c50c0d23bcb24ea953affb273216"
2020-08-23 10:53:08 +00:00
dependencies = [
2021-05-01 15:11:16 +00:00
"cfg-if",
2020-10-18 12:50:32 +00:00
"instant",
"libc",
"redox_syscall",
"smallvec",
2021-02-11 09:23:13 +00:00
"winapi",
2020-08-23 10:53:08 +00:00
]
2022-02-25 23:56:02 +00:00
[[package]]
name = "parking_lot_core"
2022-07-05 16:47:21 +00:00
version = "0.9.3"
2022-02-25 23:56:02 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "09a279cbf25cb0757810394fbc1e359949b59e348145c643a939a525692e6929"
2022-02-25 23:56:02 +00:00
dependencies = [
"cfg-if",
"libc",
"redox_syscall",
"smallvec",
"windows-sys",
]
[[package]]
name = "password-hash"
2022-07-05 16:47:21 +00:00
version = "0.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "7676374caaee8a325c9e7a2ae557f216c5563a171d6997b0ef8a65af35147700"
dependencies = [
"base64ct",
2021-08-30 08:10:32 +00:00
"rand_core 0.6.3",
"subtle",
]
2021-07-09 07:37:14 +00:00
[[package]]
name = "paste"
2022-07-05 16:47:21 +00:00
version = "1.0.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0c520e05135d6e763148b6426a837e239041653ba7becd2e538c076c738025fc"
[[package]]
name = "pathdiff"
version = "0.2.1"
2021-07-09 07:37:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "8835116a5c179084a830efb3adc117ab007512b535bc1a21c991d3b32a6b44dd"
2021-07-09 07:37:14 +00:00
2020-08-23 10:53:08 +00:00
[[package]]
name = "percent-encoding"
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-18 12:50:32 +00:00
checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e"
2020-08-23 10:53:08 +00:00
[[package]]
name = "pin-project"
2022-07-05 16:47:21 +00:00
version = "1.0.11"
2020-08-23 10:53:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "78203e83c48cffbe01e4a2d35d566ca4de445d79a85372fc64e378bfc812a260"
2020-08-23 10:53:08 +00:00
dependencies = [
2021-05-01 15:11:16 +00:00
"pin-project-internal",
2020-08-23 10:53:08 +00:00
]
2020-12-05 19:14:22 +00:00
[[package]]
name = "pin-project-internal"
2022-07-05 16:47:21 +00:00
version = "1.0.11"
2020-12-05 19:14:22 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "710faf75e1b33345361201d36d04e98ac1ed8909151a017ed384700836104c74"
2020-12-05 19:14:22 +00:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
2020-08-23 10:53:08 +00:00
[[package]]
name = "pin-project-lite"
2022-07-05 16:47:21 +00:00
version = "0.2.9"
2020-12-05 19:14:22 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116"
2020-08-23 10:53:08 +00:00
[[package]]
name = "pin-utils"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-18 12:50:32 +00:00
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
2020-08-23 10:53:08 +00:00
[[package]]
name = "pkg-config"
2022-07-05 16:47:21 +00:00
version = "0.3.25"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "1df8c4ec4b0627e53bdf214615ad287367e482558cf84b109250b37464dc03ae"
[[package]]
name = "polyval"
version = "0.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8419d2b623c7c0896ff2d5d96e2cb4ede590fed28fcc34934f4c33c036e620a1"
dependencies = [
"cfg-if",
"cpufeatures",
"opaque-debug",
"universal-hash",
]
2020-08-23 10:53:08 +00:00
[[package]]
name = "ppv-lite86"
2022-02-25 23:56:02 +00:00
version = "0.2.16"
2020-08-23 10:53:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-25 23:56:02 +00:00
checksum = "eb9f9e6e233e5c4a35559a617bf40a4ec447db2e84c20b55a6f83167b7e57872"
2020-08-23 10:53:08 +00:00
[[package]]
name = "proc-macro-hack"
version = "0.5.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dbf0c48bc1d91375ae5c3cd81e3722dff1abcf81a30960240640d223f59fe0e5"
2020-08-23 10:53:08 +00:00
[[package]]
name = "proc-macro2"
2022-07-05 16:47:21 +00:00
version = "1.0.40"
2020-08-23 10:53:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "dd96a1e8ed2596c337f8eae5f24924ec83f5ad5ab21ea8e455d3566c69fbcaf7"
2020-08-23 10:53:08 +00:00
dependencies = [
2022-07-05 16:47:21 +00:00
"unicode-ident",
2020-08-23 10:53:08 +00:00
]
[[package]]
name = "psl-types"
version = "2.0.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e8eda7c62d9ecaafdf8b62374c006de0adf61666ae96a96ba74a37134aa4e470"
[[package]]
name = "publicsuffix"
version = "2.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "292972edad6bbecc137ab84c5e36421a4a6c979ea31d3cc73540dd04315b33e1"
dependencies = [
"byteorder",
2022-07-05 16:47:21 +00:00
"hashbrown 0.11.2",
"idna",
"psl-types",
]
2020-12-29 10:00:11 +00:00
[[package]]
name = "quickcheck"
version = "0.9.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a44883e74aa97ad63db83c4bf8ca490f02b2fc02f92575e720c8551e843c945f"
dependencies = [
"env_logger",
"log",
2021-02-11 09:23:13 +00:00
"rand 0.7.3",
"rand_core 0.5.1",
2020-12-29 10:00:11 +00:00
]
[[package]]
name = "quickcheck_macros"
version = "0.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "608c156fd8e97febc07dc9c2e2c80bf74cfc6ef26893eae3daf8bc2bc94a4b7f"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
2020-08-23 10:53:08 +00:00
[[package]]
name = "quote"
2022-07-05 16:47:21 +00:00
version = "1.0.20"
2020-08-23 10:53:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "3bcdf212e9776fbcb2d23ab029360416bb1706b1aea2d1a5ba002727cbcab804"
2020-08-23 10:53:08 +00:00
dependencies = [
2020-10-18 12:50:32 +00:00
"proc-macro2",
2020-08-23 10:53:08 +00:00
]
[[package]]
name = "rand"
version = "0.7.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-18 12:50:32 +00:00
checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03"
2020-08-23 10:53:08 +00:00
dependencies = [
2021-01-03 18:06:10 +00:00
"getrandom 0.1.16",
2020-10-18 12:50:32 +00:00
"libc",
2021-02-11 09:23:13 +00:00
"rand_chacha 0.2.2",
"rand_core 0.5.1",
2022-02-25 23:56:02 +00:00
"rand_hc",
2021-02-11 09:23:13 +00:00
]
[[package]]
name = "rand"
2022-02-25 23:56:02 +00:00
version = "0.8.5"
2021-02-11 09:23:13 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-25 23:56:02 +00:00
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
2021-02-11 09:23:13 +00:00
dependencies = [
"libc",
2021-08-30 08:10:32 +00:00
"rand_chacha 0.3.1",
"rand_core 0.6.3",
2020-08-23 10:53:08 +00:00
]
[[package]]
name = "rand_chacha"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-18 12:50:32 +00:00
checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402"
2020-08-23 10:53:08 +00:00
dependencies = [
2020-10-18 12:50:32 +00:00
"ppv-lite86",
2021-02-11 09:23:13 +00:00
"rand_core 0.5.1",
]
[[package]]
name = "rand_chacha"
2021-08-30 08:10:32 +00:00
version = "0.3.1"
2021-02-11 09:23:13 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-30 08:10:32 +00:00
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
2021-02-11 09:23:13 +00:00
dependencies = [
"ppv-lite86",
2021-08-30 08:10:32 +00:00
"rand_core 0.6.3",
2020-08-23 10:53:08 +00:00
]
[[package]]
name = "rand_core"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-18 12:50:32 +00:00
checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19"
2020-08-23 10:53:08 +00:00
dependencies = [
2021-01-03 18:06:10 +00:00
"getrandom 0.1.16",
]
2021-02-11 09:23:13 +00:00
[[package]]
name = "rand_core"
2021-08-30 08:10:32 +00:00
version = "0.6.3"
2021-02-11 09:23:13 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-30 08:10:32 +00:00
checksum = "d34f1408f55294453790c48b2f1ebbb1c5b4b7563eb1f418bcfcfdbb06ebb4e7"
2021-02-11 09:23:13 +00:00
dependencies = [
2022-07-05 16:47:21 +00:00
"getrandom 0.2.7",
2021-02-11 09:23:13 +00:00
]
2020-08-23 10:53:08 +00:00
[[package]]
name = "rand_hc"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-18 12:50:32 +00:00
checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c"
2020-08-23 10:53:08 +00:00
dependencies = [
2021-02-11 09:23:13 +00:00
"rand_core 0.5.1",
]
[[package]]
name = "redis"
version = "0.21.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1a80b5f38d7f5a020856a0e16e40a9cfabf88ae8f0e4c2dcd8a3114c1e470852"
dependencies = [
"arc-swap",
"async-trait",
"bytes",
"combine",
"dtoa",
"futures",
"futures-util",
"itoa 0.4.8",
"native-tls",
"percent-encoding",
"pin-project-lite",
"tokio",
"tokio-native-tls",
2022-07-05 16:47:21 +00:00
"tokio-util 0.6.10",
"url",
]
2020-08-23 10:53:08 +00:00
[[package]]
name = "redox_syscall"
2022-07-05 16:47:21 +00:00
version = "0.2.13"
2020-08-23 10:53:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "62f25bc4c7e55e0b0b7a1d43fb893f4fa1361d0abe38b9ce4f323c2adfe6ef42"
2021-05-01 15:11:16 +00:00
dependencies = [
"bitflags",
]
[[package]]
name = "redox_users"
2022-07-05 16:47:21 +00:00
version = "0.4.3"
2021-05-01 15:11:16 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b"
2021-05-01 15:11:16 +00:00
dependencies = [
2022-07-05 16:47:21 +00:00
"getrandom 0.2.7",
2021-05-01 15:11:16 +00:00
"redox_syscall",
2022-07-05 16:47:21 +00:00
"thiserror",
2021-05-01 15:11:16 +00:00
]
2020-08-23 10:53:08 +00:00
[[package]]
name = "regex"
2022-07-05 16:47:21 +00:00
version = "1.5.6"
2020-08-23 10:53:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "d83f127d94bdbcda4c8cc2e50f6f84f4b611f69c902699ca385a39c3a75f9ff1"
2020-08-23 10:53:08 +00:00
dependencies = [
2020-10-18 12:50:32 +00:00
"aho-corasick",
"memchr",
"regex-syntax",
2020-08-23 10:53:08 +00:00
]
[[package]]
name = "regex-automata"
2021-08-30 08:10:32 +00:00
version = "0.1.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-30 08:10:32 +00:00
checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
dependencies = [
2020-10-18 12:50:32 +00:00
"regex-syntax",
]
2020-08-23 10:53:08 +00:00
[[package]]
name = "regex-syntax"
2022-07-05 16:47:21 +00:00
version = "0.6.26"
2020-08-23 10:53:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "49b3de9ec5dc0a3417da371aab17d729997c15010e7fd24ff707773a33bddb64"
2020-08-23 10:53:08 +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",
]
2020-08-23 10:53:08 +00:00
[[package]]
name = "reqwest"
2022-07-05 16:47:21 +00:00
version = "0.11.11"
2020-10-18 12:50:32 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "b75aa69a3f06bbcc66ede33af2af253c6f7a86b1ca0033f60c580a27074fbf92"
2020-10-18 12:50:32 +00:00
dependencies = [
2021-02-11 09:23:13 +00:00
"base64",
"bytes",
2022-07-05 16:47:21 +00:00
"cookie",
"cookie_store",
2020-10-18 12:50:32 +00:00
"encoding_rs",
"futures-core",
"futures-util",
2022-02-25 23:56:02 +00:00
"h2",
2020-10-18 12:50:32 +00:00
"http",
2021-02-11 09:23:13 +00:00
"http-body",
"hyper",
2021-01-11 08:32:27 +00:00
"hyper-rustls",
2020-10-18 12:50:32 +00:00
"ipnet",
"js-sys",
"lazy_static",
"log",
"mime",
"percent-encoding",
2021-02-11 09:23:13 +00:00
"pin-project-lite",
"proc-macro-hack",
2022-07-05 16:47:21 +00:00
"rustls",
2021-12-27 10:32:52 +00:00
"rustls-pemfile",
2020-10-18 12:50:32 +00:00
"serde",
"serde_json",
"serde_urlencoded",
2021-02-11 09:23:13 +00:00
"tokio",
2022-07-05 16:47:21 +00:00
"tokio-rustls",
"tower-service",
2020-10-18 12:50:32 +00:00
"url",
"wasm-bindgen",
"wasm-bindgen-futures",
"web-sys",
2022-07-05 16:47:21 +00:00
"webpki-roots",
2021-02-11 09:23:13 +00:00
"winreg",
2020-08-23 10:53:08 +00:00
]
2022-07-05 16:47:21 +00:00
[[package]]
name = "retain_mut"
version = "0.1.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4389f1d5789befaf6029ebd9f7dac4af7f7e3d61b69d4f30e2ac02b57e7712b0"
2020-12-05 19:14:22 +00:00
[[package]]
name = "ring"
2021-02-11 09:23:13 +00:00
version = "0.16.20"
2020-12-05 19:14:22 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-11 09:23:13 +00:00
checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc"
2020-12-05 19:14:22 +00:00
dependencies = [
"cc",
"libc",
"once_cell",
"spin",
"untrusted",
"web-sys",
2021-02-11 09:23:13 +00:00
"winapi",
2020-12-05 19:14:22 +00:00
]
2021-08-30 08:10:32 +00:00
[[package]]
name = "rustc_version"
2021-12-27 10:32:52 +00:00
version = "0.4.0"
2021-08-30 08:10:32 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-27 10:32:52 +00:00
checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
2021-08-30 08:10:32 +00:00
dependencies = [
2022-07-05 16:47:21 +00:00
"semver",
]
2020-12-05 19:14:22 +00:00
[[package]]
name = "rustls"
2022-07-05 16:47:21 +00:00
version = "0.20.6"
2020-12-05 19:14:22 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "5aab8ee6c7097ed6057f43c187a62418d0c05a4bd5f18b3571db50ee0f9ce033"
2020-12-05 19:14:22 +00:00
dependencies = [
"log",
"ring",
2022-07-05 16:47:21 +00:00
"sct",
"webpki",
2021-12-27 10:32:52 +00:00
]
[[package]]
name = "rustls-pemfile"
2022-07-05 16:47:21 +00:00
version = "1.0.0"
2021-12-27 10:32:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "e7522c9de787ff061458fe9a829dc790a3f5b22dc571694fc5883f448b94d9a9"
2021-12-27 10:32:52 +00:00
dependencies = [
"base64",
2020-12-05 19:14:22 +00:00
]
2020-08-23 10:53:08 +00:00
[[package]]
name = "ryu"
2022-07-05 16:47:21 +00:00
version = "1.0.10"
2020-08-23 10:53:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "f3f6f92acf49d1b98f7a81226834412ada05458b7364277387724a237f062695"
2020-08-23 10:53:08 +00:00
[[package]]
name = "schannel"
2022-07-05 16:47:21 +00:00
version = "0.1.20"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "88d6731146462ea25d9244b2ed5fd1d716d25c52e4d54aa4fb0f3c4e9854dbe2"
dependencies = [
"lazy_static",
2022-07-05 16:47:21 +00:00
"windows-sys",
]
2020-08-23 10:53:08 +00:00
[[package]]
name = "scopeguard"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-18 12:50:32 +00:00
checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
2020-08-23 10:53:08 +00:00
[[package]]
2021-12-27 10:32:52 +00:00
name = "sct"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-27 10:32:52 +00:00
checksum = "d53dcdb7c9f8158937a7981b48accfd39a43af418591a5d008c7b22b5e1b7ca4"
dependencies = [
2021-12-27 10:32:52 +00:00
"ring",
"untrusted",
2021-08-30 08:10:32 +00:00
]
2021-12-27 12:24:24 +00:00
[[package]]
name = "secrecy"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9bd1c54ea06cfd2f6b63219704de0b9b4f72dcc2b8fdef820be6cd799780e91e"
dependencies = [
"serde",
"zeroize",
]
[[package]]
name = "security-framework"
version = "2.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2dc14f172faf8a0194a3aded622712b0de276821addc574fa54fc0a1167e10dc"
dependencies = [
"bitflags",
"core-foundation",
"core-foundation-sys",
"libc",
"security-framework-sys",
]
[[package]]
name = "security-framework-sys"
version = "2.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0160a13a177a45bfb43ce71c01580998474f556ad854dcbca936dd2841a5c556"
dependencies = [
"core-foundation-sys",
"libc",
]
[[package]]
name = "semver"
2022-07-05 16:47:21 +00:00
version = "1.0.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "a2333e6df6d6598f2b1974829f853c2b4c5f4a6e503c10af918081aa6f8564e1"
2020-08-23 10:53:08 +00:00
[[package]]
name = "serde"
2022-07-05 16:47:21 +00:00
version = "1.0.138"
2020-08-23 10:53:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "1578c6245786b9d168c5447eeacfb96856573ca56c9d68fdcf394be134882a47"
2020-08-23 10:53:08 +00:00
dependencies = [
2020-10-18 12:50:32 +00:00
"serde_derive",
2020-08-23 10:53:08 +00:00
]
[[package]]
name = "serde-aux"
2022-07-05 16:47:21 +00:00
version = "3.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "d0a77223b653fa95f3f9864f3eb25b93e4ed170687eb42d85b6b98af21d5e1de"
dependencies = [
"chrono",
"serde",
"serde_json",
]
2020-08-23 10:53:08 +00:00
[[package]]
name = "serde_derive"
2022-07-05 16:47:21 +00:00
version = "1.0.138"
2020-08-23 10:53:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "023e9b1467aef8a10fb88f25611870ada9800ef7e22afce356bb0d2387b6f27c"
2020-08-23 10:53:08 +00:00
dependencies = [
2020-10-18 12:50:32 +00:00
"proc-macro2",
"quote",
"syn",
2020-08-23 10:53:08 +00:00
]
2022-07-05 16:47:21 +00:00
[[package]]
name = "serde_html_form"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3312ac3bf56e70cb7082a85db89d127940607b6acf39bd537cc06c8212124927"
dependencies = [
"form_urlencoded",
"indexmap",
"itoa 1.0.2",
"ryu",
"serde",
]
2020-08-23 10:53:08 +00:00
[[package]]
name = "serde_json"
2022-07-05 16:47:21 +00:00
version = "1.0.82"
2020-08-23 10:53:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "82c2c1fdcd807d1098552c5b9a36e425e42e9fbd7c6a37a8425f390f781f7fa7"
2020-08-23 10:53:08 +00:00
dependencies = [
2022-07-05 16:47:21 +00:00
"itoa 1.0.2",
2020-10-18 12:50:32 +00:00
"ryu",
"serde",
2020-08-23 10:53:08 +00:00
]
2021-01-16 23:01:08 +00:00
[[package]]
name = "serde_qs"
2021-12-27 10:32:52 +00:00
version = "0.8.5"
2021-01-16 23:01:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-27 10:32:52 +00:00
checksum = "c7715380eec75f029a4ef7de39a9200e0a63823176b759d055b613f5a87df6a6"
2021-01-16 23:01:08 +00:00
dependencies = [
"percent-encoding",
"serde",
"thiserror",
]
2020-08-23 10:53:08 +00:00
[[package]]
name = "serde_urlencoded"
2022-02-25 23:56:02 +00:00
version = "0.7.1"
2020-08-23 10:53:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-25 23:56:02 +00:00
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
2020-08-23 10:53:08 +00:00
dependencies = [
2020-12-05 19:14:22 +00:00
"form_urlencoded",
2022-07-05 16:47:21 +00:00
"itoa 1.0.2",
2020-12-05 19:14:22 +00:00
"ryu",
2020-10-18 12:50:32 +00:00
"serde",
2020-08-23 10:53:08 +00:00
]
2021-12-28 11:56:29 +00:00
[[package]]
name = "sha-1"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "028f48d513f9678cda28f6e4064755b3fbb2af6acd672f2c209b62323f7aea0f"
dependencies = [
"cfg-if",
"cpufeatures",
2022-07-05 16:47:21 +00:00
"digest",
2021-12-28 11:56:29 +00:00
]
[[package]]
name = "sha1"
2022-07-05 16:47:21 +00:00
version = "0.10.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "c77f4e7f65455545c2153c1253d25056825e77ee2533f0e41deb65a93a34852f"
2020-08-25 21:19:53 +00:00
dependencies = [
2021-05-01 15:11:16 +00:00
"cfg-if",
2021-05-13 16:11:15 +00:00
"cpufeatures",
2022-07-05 16:47:21 +00:00
"digest",
2020-08-25 21:19:53 +00:00
]
[[package]]
name = "sha2"
version = "0.10.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "55deaec60f81eefe3cce0dc50bda92d6d8e88f2a27df7c5033b42afeb1ed2676"
dependencies = [
"cfg-if",
"cpufeatures",
2022-07-05 16:47:21 +00:00
"digest",
]
[[package]]
name = "sharded-slab"
2021-12-27 10:32:52 +00:00
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-27 10:32:52 +00:00
checksum = "900fba806f70c630b0a382d0d825e17a0f19fcd059a2ade1ff237bcddf446b31"
dependencies = [
2020-10-18 12:50:32 +00:00
"lazy_static",
]
2020-08-23 10:53:08 +00:00
[[package]]
name = "signal-hook-registry"
2021-08-30 08:10:32 +00:00
version = "1.4.0"
2020-08-23 10:53:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-30 08:10:32 +00:00
checksum = "e51e73328dc4ac0c7ccbda3a494dfa03df1de2f46018127f60c693f2648455b0"
2020-08-23 10:53:08 +00:00
dependencies = [
2020-10-18 12:50:32 +00:00
"libc",
2020-08-23 10:53:08 +00:00
]
[[package]]
name = "slab"
2022-07-05 16:47:21 +00:00
version = "0.4.6"
2020-08-23 10:53:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "eb703cfe953bccee95685111adeedb76fabe4e97549a58d16f03ea7b9367bb32"
2020-08-23 10:53:08 +00:00
[[package]]
name = "smallvec"
2022-07-05 16:47:21 +00:00
version = "1.9.0"
2020-08-23 10:53:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "2fd0db749597d91ff862fd1d55ea87f7855a744a8425a64695b6fca237d1dad1"
2020-08-23 10:53:08 +00:00
[[package]]
name = "socket2"
2022-02-25 23:56:02 +00:00
version = "0.4.4"
2020-08-23 10:53:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-25 23:56:02 +00:00
checksum = "66d72b759436ae32898a2af0a14218dbf55efde3feeb170eb623637db85ee1e0"
2020-08-23 10:53:08 +00:00
dependencies = [
2020-10-18 12:50:32 +00:00
"libc",
2021-02-11 09:23:13 +00:00
"winapi",
2020-08-23 10:53:08 +00:00
]
2020-12-05 19:14:22 +00:00
[[package]]
name = "spin"
version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"
2020-08-25 21:19:53 +00:00
[[package]]
name = "sqlformat"
2021-09-30 20:13:14 +00:00
version = "0.1.8"
2020-08-25 21:19:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-30 20:13:14 +00:00
checksum = "b4b7922be017ee70900be125523f38bdd644f4f06a1b16e8fa5a8ee8c34bffd4"
2020-08-25 21:19:53 +00:00
dependencies = [
2021-09-30 20:13:14 +00:00
"itertools",
2022-07-05 16:47:21 +00:00
"nom",
2020-12-05 19:14:22 +00:00
"unicode_categories",
2020-08-25 21:19:53 +00:00
]
[[package]]
name = "sqlx"
2022-07-05 16:47:21 +00:00
version = "0.6.0"
2020-08-25 21:19:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "1f82cbe94f41641d6c410ded25bbf5097c240cefdf8e3b06d04198d0a96af6a4"
2020-08-25 21:19:53 +00:00
dependencies = [
2020-10-18 12:50:32 +00:00
"sqlx-core",
"sqlx-macros",
2020-08-25 21:19:53 +00:00
]
[[package]]
name = "sqlx-core"
2022-07-05 16:47:21 +00:00
version = "0.6.0"
2020-08-25 21:19:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "6b69bf218860335ddda60d6ce85ee39f6cf6e5630e300e19757d1de15886a093"
2020-10-18 12:50:32 +00:00
dependencies = [
2021-08-30 08:10:32 +00:00
"ahash",
2020-10-18 12:50:32 +00:00
"atoi",
2021-02-11 09:23:13 +00:00
"base64",
2020-10-18 12:50:32 +00:00
"bitflags",
"byteorder",
2021-02-11 09:23:13 +00:00
"bytes",
2020-10-18 12:50:32 +00:00
"chrono",
"crc",
"crossbeam-queue",
2021-05-01 15:11:16 +00:00
"dirs",
2020-10-18 12:50:32 +00:00
"either",
2022-07-05 16:47:21 +00:00
"event-listener",
2020-10-18 12:50:32 +00:00
"futures-channel",
"futures-core",
2021-08-30 08:10:32 +00:00
"futures-intrusive",
2020-10-18 12:50:32 +00:00
"futures-util",
2021-01-03 18:06:10 +00:00
"hashlink",
2020-10-18 12:50:32 +00:00
"hex",
2022-07-05 16:47:21 +00:00
"hkdf",
"hmac",
2021-12-27 10:32:52 +00:00
"indexmap",
2022-07-05 16:47:21 +00:00
"itoa 1.0.2",
2020-10-18 12:50:32 +00:00
"libc",
"log",
"md-5",
"memchr",
"once_cell",
2022-02-25 23:56:02 +00:00
"paste",
2020-10-18 12:50:32 +00:00
"percent-encoding",
2022-02-25 23:56:02 +00:00
"rand 0.8.5",
2022-07-05 16:47:21 +00:00
"rustls",
"rustls-pemfile",
"serde",
2021-02-11 09:23:13 +00:00
"serde_json",
2022-07-05 16:47:21 +00:00
"sha-1",
"sha2",
2020-10-18 12:50:32 +00:00
"smallvec",
"sqlformat",
"sqlx-rt",
"stringprep",
"thiserror",
2021-02-11 09:23:13 +00:00
"tokio-stream",
2020-10-18 12:50:32 +00:00
"url",
"uuid",
2022-07-05 16:47:21 +00:00
"webpki-roots",
2020-10-18 12:50:32 +00:00
"whoami",
2020-08-25 21:19:53 +00:00
]
[[package]]
name = "sqlx-macros"
2022-07-05 16:47:21 +00:00
version = "0.6.0"
2020-08-25 21:19:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "f40c63177cf23d356b159b60acd27c54af7423f1736988502e36bae9a712118f"
2020-08-25 21:19:53 +00:00
dependencies = [
2020-10-18 12:50:32 +00:00
"dotenv",
"either",
"heck",
"hex",
2021-02-11 09:23:13 +00:00
"once_cell",
2020-10-18 12:50:32 +00:00
"proc-macro2",
"quote",
"serde",
"serde_json",
2022-07-05 16:47:21 +00:00
"sha2",
2020-10-18 12:50:32 +00:00
"sqlx-core",
"sqlx-rt",
"syn",
"url",
2020-08-25 21:19:53 +00:00
]
[[package]]
name = "sqlx-rt"
2022-07-05 16:47:21 +00:00
version = "0.6.0"
2020-08-25 21:19:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "874e93a365a598dc3dadb197565952cb143ae4aa716f7bcc933a8d836f6bf89f"
2020-08-25 21:19:53 +00:00
dependencies = [
2020-12-05 19:14:22 +00:00
"actix-rt",
2020-10-18 12:50:32 +00:00
"once_cell",
2021-02-11 09:23:13 +00:00
"tokio",
2022-07-05 16:47:21 +00:00
"tokio-rustls",
]
2020-08-25 21:19:53 +00:00
[[package]]
name = "stringprep"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-18 12:50:32 +00:00
checksum = "8ee348cb74b87454fff4b551cbf727025810a004f88aeacae7f85b87f4e9a1c1"
2020-08-25 21:19:53 +00:00
dependencies = [
2020-10-18 12:50:32 +00:00
"unicode-bidi",
"unicode-normalization",
2020-08-25 21:19:53 +00:00
]
[[package]]
name = "subtle"
2021-08-30 08:10:32 +00:00
version = "2.4.1"
2020-08-25 21:19:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-30 08:10:32 +00:00
checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601"
2020-08-25 21:19:53 +00:00
2020-08-23 10:53:08 +00:00
[[package]]
name = "syn"
2022-07-05 16:47:21 +00:00
version = "1.0.98"
2020-08-23 10:53:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "c50aef8a904de4c23c788f104b7dddc7d6f79c647c7c8ce4cc8f73eb0ca773dd"
2020-08-23 10:53:08 +00:00
dependencies = [
2020-10-18 12:50:32 +00:00
"proc-macro2",
"quote",
2022-07-05 16:47:21 +00:00
"unicode-ident",
2020-08-23 10:53:08 +00:00
]
[[package]]
name = "tempfile"
version = "3.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4"
dependencies = [
"cfg-if",
"fastrand",
"libc",
"redox_syscall",
"remove_dir_all",
"winapi",
]
2020-08-25 21:19:53 +00:00
[[package]]
name = "thiserror"
2022-07-05 16:47:21 +00:00
version = "1.0.31"
2020-08-25 21:19:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "bd829fe32373d27f76265620b5309d0340cb8550f523c1dda251d6298069069a"
2020-08-25 21:19:53 +00:00
dependencies = [
2020-10-18 12:50:32 +00:00
"thiserror-impl",
2020-08-25 21:19:53 +00:00
]
[[package]]
name = "thiserror-impl"
2022-07-05 16:47:21 +00:00
version = "1.0.31"
2020-08-25 21:19:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "0396bc89e626244658bef819e22d0cc459e795a5ebe878e6ec336d1674a8d79a"
2020-08-25 21:19:53 +00:00
dependencies = [
2020-10-18 12:50:32 +00:00
"proc-macro2",
"quote",
"syn",
2020-08-25 21:19:53 +00:00
]
2020-08-23 10:53:08 +00:00
[[package]]
name = "thread_local"
2022-02-25 23:56:02 +00:00
version = "1.1.4"
2020-08-23 10:53:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-25 23:56:02 +00:00
checksum = "5516c27b78311c50bf42c071425c560ac799b11c30b31f87e3081965fe5e0180"
2020-08-23 10:53:08 +00:00
dependencies = [
2021-02-11 09:23:13 +00:00
"once_cell",
2020-08-23 10:53:08 +00:00
]
[[package]]
name = "time"
2022-02-25 23:56:02 +00:00
version = "0.1.44"
2020-08-23 10:53:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-25 23:56:02 +00:00
checksum = "6db9e6914ab8b1ae1c260a4ae7a49b6c5611b40328a735b21862567685e73255"
2020-08-23 10:53:08 +00:00
dependencies = [
2020-10-18 12:50:32 +00:00
"libc",
2022-02-25 23:56:02 +00:00
"wasi 0.10.0+wasi-snapshot-preview1",
2021-02-11 09:23:13 +00:00
"winapi",
2020-08-23 10:53:08 +00:00
]
[[package]]
name = "time"
2022-07-05 16:47:21 +00:00
version = "0.3.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "72c91f41dcb2f096c05f0873d667dceec1087ce5bcf984ec8ffb19acddbb3217"
dependencies = [
2022-07-05 16:47:21 +00:00
"itoa 1.0.2",
"libc",
2022-02-25 23:56:02 +00:00
"num_threads",
2022-07-05 16:47:21 +00:00
"time-macros",
]
[[package]]
name = "time-macros"
2022-07-05 16:47:21 +00:00
version = "0.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "42657b1a6f4d817cda8e7a0ace261fe0cc946cf3a80314390b22cc61ae080792"
2020-08-23 10:53:08 +00:00
[[package]]
name = "tinyvec"
2022-07-05 16:47:21 +00:00
version = "1.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
dependencies = [
"tinyvec_macros",
]
[[package]]
name = "tinyvec_macros"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
2020-08-23 10:53:08 +00:00
[[package]]
name = "tokio"
2022-07-05 16:47:21 +00:00
version = "1.19.2"
2020-08-23 10:53:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "c51a52ed6686dd62c320f9b89299e9dfb46f730c7a48e635c19f21d116cb1439"
2020-08-23 10:53:08 +00:00
dependencies = [
2021-02-11 09:23:13 +00:00
"bytes",
2020-10-18 12:50:32 +00:00
"libc",
"memchr",
2022-02-25 23:56:02 +00:00
"mio",
2020-10-18 12:50:32 +00:00
"num_cpus",
2021-02-11 09:23:13 +00:00
"once_cell",
2022-07-05 16:47:21 +00:00
"parking_lot 0.12.1",
2021-02-11 09:23:13 +00:00
"pin-project-lite",
2020-10-18 12:50:32 +00:00
"signal-hook-registry",
2022-02-25 23:56:02 +00:00
"socket2",
2020-10-18 12:50:32 +00:00
"tokio-macros",
2021-02-11 09:23:13 +00:00
"winapi",
2021-01-16 23:01:08 +00:00
]
2020-08-25 21:19:53 +00:00
[[package]]
name = "tokio-macros"
2022-07-05 16:47:21 +00:00
version = "1.8.0"
2020-08-25 21:19:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "9724f9a975fb987ef7a3cd9be0350edcbe130698af5b8f7a631e23d42d052484"
2020-08-25 21:19:53 +00:00
dependencies = [
2020-10-18 12:50:32 +00:00
"proc-macro2",
"quote",
"syn",
2020-08-25 21:19:53 +00:00
]
[[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",
]
2020-08-25 21:19:53 +00:00
[[package]]
2020-12-05 19:14:22 +00:00
name = "tokio-rustls"
2022-07-05 16:47:21 +00:00
version = "0.23.4"
2021-12-27 10:32:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "c43ee83903113e03984cb9e5cebe6c04a5116269e900e3ddba8f068a62adda59"
2021-12-27 10:32:52 +00:00
dependencies = [
2022-07-05 16:47:21 +00:00
"rustls",
2021-12-27 10:32:52 +00:00
"tokio",
2022-07-05 16:47:21 +00:00
"webpki",
2020-08-25 21:19:53 +00:00
]
2021-01-16 23:01:08 +00:00
[[package]]
name = "tokio-stream"
2022-07-05 16:47:21 +00:00
version = "0.1.9"
2020-08-23 10:53:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "df54d54117d6fdc4e4fea40fe1e4e566b3505700e148a6827e59b34b0d2600d9"
2020-08-23 10:53:08 +00:00
dependencies = [
2020-10-18 12:50:32 +00:00
"futures-core",
2021-02-11 09:23:13 +00:00
"pin-project-lite",
"tokio",
2021-01-16 23:01:08 +00:00
]
[[package]]
name = "tokio-util"
2022-07-05 16:47:21 +00:00
version = "0.6.10"
2021-01-16 23:01:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "36943ee01a6d67977dd3f84a5a1d2efeb4ada3a1ae771cadfaa535d9d9fc6507"
2021-01-16 23:01:08 +00:00
dependencies = [
2021-02-11 09:23:13 +00:00
"bytes",
2021-01-16 23:01:08 +00:00
"futures-core",
"futures-sink",
"log",
2021-02-11 09:23:13 +00:00
"pin-project-lite",
"tokio",
2020-08-23 10:53:08 +00:00
]
2022-02-25 23:56:02 +00:00
[[package]]
name = "tokio-util"
2022-07-05 16:47:21 +00:00
version = "0.7.3"
2022-02-25 23:56:02 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "cc463cd8deddc3770d20f9852143d50bf6094e640b485cb2e189a2099085ff45"
2022-02-25 23:56:02 +00:00
dependencies = [
"bytes",
"futures-core",
"futures-sink",
"pin-project-lite",
"tokio",
2022-07-05 16:47:21 +00:00
"tracing",
2022-02-25 23:56:02 +00:00
]
2020-08-23 10:53:08 +00:00
[[package]]
name = "tower-service"
2022-07-05 16:47:21 +00:00
version = "0.3.2"
2020-08-23 10:53:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52"
2020-08-23 10:53:08 +00:00
[[package]]
name = "tracing"
2022-07-05 16:47:21 +00:00
version = "0.1.35"
2020-08-23 10:53:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "a400e31aa60b9d44a52a8ee0343b5b18566b03a8321e0d321f695cf56e940160"
2020-08-23 10:53:08 +00:00
dependencies = [
2021-05-01 15:11:16 +00:00
"cfg-if",
2020-10-18 12:50:32 +00:00
"log",
2021-02-11 09:23:13 +00:00
"pin-project-lite",
2020-10-18 12:50:32 +00:00
"tracing-attributes",
"tracing-core",
]
[[package]]
name = "tracing-actix-web"
2022-07-05 16:47:21 +00:00
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "f0b2cd6e5074ff67679a0ff68bc6333be78d29910ba7cd295d948aa5ff152032"
dependencies = [
2020-10-18 12:50:32 +00:00
"actix-web",
"pin-project",
2020-10-18 12:50:32 +00:00
"tracing",
"tracing-futures",
"uuid",
]
[[package]]
name = "tracing-attributes"
2022-07-05 16:47:21 +00:00
version = "0.1.22"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "11c75893af559bc8e10716548bdef5cb2b983f8e637db9d0e15126b61b484ee2"
dependencies = [
2020-10-18 12:50:32 +00:00
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "tracing-bunyan-formatter"
2022-07-05 16:47:21 +00:00
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "a788f2119fde477cd33823330c14004fa8cdac6892fd6f12181bbda9dbf14fc9"
dependencies = [
2020-10-18 12:50:32 +00:00
"gethostname",
"log",
"serde",
"serde_json",
2022-07-05 16:47:21 +00:00
"time 0.3.11",
2020-10-18 12:50:32 +00:00
"tracing",
"tracing-core",
"tracing-log",
"tracing-subscriber",
2020-08-23 10:53:08 +00:00
]
[[package]]
name = "tracing-core"
2022-07-05 16:47:21 +00:00
version = "0.1.28"
2020-08-23 10:53:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "7b7358be39f2f274f322d2aaed611acc57f382e8eb1e5b48cb9ae30933495ce7"
2020-08-23 10:53:08 +00:00
dependencies = [
2022-07-05 16:47:21 +00:00
"once_cell",
2022-02-25 23:56:02 +00:00
"valuable",
2020-08-23 10:53:08 +00:00
]
[[package]]
name = "tracing-futures"
2021-05-01 15:11:16 +00:00
version = "0.2.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-01 15:11:16 +00:00
checksum = "97d095ae15e245a057c8e8451bab9b3ee1e1f68e9ba2b4fbc18d0ac5237835f2"
dependencies = [
2021-05-01 15:11:16 +00:00
"pin-project",
2020-10-18 12:50:32 +00:00
"tracing",
]
[[package]]
name = "tracing-log"
2022-07-05 16:47:21 +00:00
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "78ddad33d2d10b1ed7eb9d1f518a5674713876e97e5bb9b7345a7984fbb4f922"
dependencies = [
2020-10-18 12:50:32 +00:00
"lazy_static",
"log",
"tracing-core",
]
[[package]]
name = "tracing-subscriber"
2022-07-05 16:47:21 +00:00
version = "0.3.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "3a713421342a5a666b7577783721d3117f1b69a393df803ee17bb73b1e122a59"
dependencies = [
2020-10-18 12:50:32 +00:00
"ansi_term",
"matchers",
2022-07-05 16:47:21 +00:00
"once_cell",
2020-10-18 12:50:32 +00:00
"regex",
"sharded-slab",
"smallvec",
"thread_local",
"tracing",
"tracing-core",
"tracing-log",
]
2020-08-23 10:53:08 +00:00
[[package]]
name = "try-lock"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-18 12:50:32 +00:00
checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642"
2020-08-23 10:53:08 +00:00
2020-08-25 21:19:53 +00:00
[[package]]
name = "typenum"
2021-12-27 10:32:52 +00:00
version = "1.15.0"
2020-08-25 21:19:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-27 10:32:52 +00:00
checksum = "dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987"
2021-08-30 08:10:32 +00:00
[[package]]
name = "unicase"
version = "2.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6"
dependencies = [
"version_check",
]
2020-08-23 10:53:08 +00:00
[[package]]
name = "unicode-bidi"
2022-07-05 16:47:21 +00:00
version = "0.3.8"
2020-08-23 10:53:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "099b7128301d285f79ddd55b9a83d5e6b9e97c92e0ea0daebee7263e932de992"
[[package]]
name = "unicode-ident"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5bd2fe26506023ed7b5e1e315add59d6f584c621d037f9368fea9cfb988f368c"
2020-08-23 10:53:08 +00:00
[[package]]
name = "unicode-normalization"
2022-07-05 16:47:21 +00:00
version = "0.1.21"
2020-08-23 10:53:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "854cbdc4f7bc6ae19c820d44abdc3277ac3e1b2b93db20a636825d9322fb60e6"
2020-08-23 10:53:08 +00:00
dependencies = [
2020-12-05 19:14:22 +00:00
"tinyvec",
2020-08-23 10:53:08 +00:00
]
[[package]]
name = "unicode-segmentation"
2022-02-25 23:56:02 +00:00
version = "1.9.0"
2020-08-23 10:53:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-25 23:56:02 +00:00
checksum = "7e8820f5d777f6224dc4be3632222971ac30164d4a258d595640799554ebfd99"
2020-08-23 10:53:08 +00:00
2020-12-05 19:14:22 +00:00
[[package]]
name = "unicode_categories"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "39ec24b3121d976906ece63c9daad25b85969647682eee313cb5779fdd69e14e"
[[package]]
name = "universal-hash"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9f214e8f697e925001e66ec2c6e37a4ef93f0f78c2eed7814394e10c62025b05"
dependencies = [
"generic-array",
"subtle",
]
2020-12-05 19:14:22 +00:00
[[package]]
name = "untrusted"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
2020-08-23 10:53:08 +00:00
[[package]]
name = "url"
2021-05-13 16:11:15 +00:00
version = "2.2.2"
2020-08-23 10:53:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-13 16:11:15 +00:00
checksum = "a507c383b2d33b5fc35d1861e77e6b383d158b2da5e14fe51b83dfedf6fd578c"
2020-08-23 10:53:08 +00:00
dependencies = [
2020-12-05 19:14:22 +00:00
"form_urlencoded",
2020-10-18 12:50:32 +00:00
"idna",
"matches",
"percent-encoding",
2021-01-16 23:01:08 +00:00
"serde",
2020-08-23 10:53:08 +00:00
]
2020-08-25 21:19:53 +00:00
[[package]]
name = "uuid"
2022-07-05 16:47:21 +00:00
version = "1.1.2"
2020-08-25 21:19:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "dd6469f4314d5f1ffec476e05f17cc9a78bc7a27a6a857842170bdf8d6f98d2f"
2020-08-25 21:19:53 +00:00
dependencies = [
2022-07-05 16:47:21 +00:00
"getrandom 0.2.7",
"serde",
2020-08-25 21:19:53 +00:00
]
2020-12-28 12:26:05 +00:00
[[package]]
name = "validator"
2022-07-05 16:47:21 +00:00
version = "0.15.0"
2020-12-28 12:26:05 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "f07b0a1390e01c0fc35ebb26b28ced33c9a3808f7f9fbe94d3cc01e233bfeed5"
2020-12-28 12:26:05 +00:00
dependencies = [
"idna",
"lazy_static",
"regex",
"serde",
"serde_derive",
"serde_json",
"url",
2021-12-28 11:56:29 +00:00
]
2020-12-28 12:26:05 +00:00
2022-02-25 23:56:02 +00:00
[[package]]
name = "valuable"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d"
[[package]]
name = "vcpkg"
version = "0.2.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
2020-08-23 10:53:08 +00:00
[[package]]
name = "version_check"
2022-02-25 23:56:02 +00:00
version = "0.9.4"
2020-08-23 10:53:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-25 23:56:02 +00:00
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
2020-08-23 10:53:08 +00:00
2021-01-16 23:01:08 +00:00
[[package]]
name = "waker-fn"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9d5b2c62b4012a3e1eca5a7e077d13b3bf498c4073e33ccd58626607748ceeca"
2020-08-23 10:53:08 +00:00
[[package]]
name = "want"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-18 12:50:32 +00:00
checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0"
2020-08-23 10:53:08 +00:00
dependencies = [
2020-10-18 12:50:32 +00:00
"log",
"try-lock",
2020-08-23 10:53:08 +00:00
]
[[package]]
name = "wasi"
version = "0.9.0+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-18 12:50:32 +00:00
checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
[[package]]
name = "wasi"
2022-02-25 23:56:02 +00:00
version = "0.10.0+wasi-snapshot-preview1"
2020-10-18 12:50:32 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-25 23:56:02 +00:00
checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f"
2020-08-23 10:53:08 +00:00
2022-07-05 16:47: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"
2020-08-23 10:53:08 +00:00
[[package]]
name = "wasm-bindgen"
2022-07-05 16:47:21 +00:00
version = "0.2.81"
2020-08-23 10:53:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "7c53b543413a17a202f4be280a7e5c62a1c69345f5de525ee64f8cfdbc954994"
2020-08-23 10:53:08 +00:00
dependencies = [
2021-05-01 15:11:16 +00:00
"cfg-if",
2020-10-18 12:50:32 +00:00
"wasm-bindgen-macro",
2020-08-23 10:53:08 +00:00
]
[[package]]
name = "wasm-bindgen-backend"
2022-07-05 16:47:21 +00:00
version = "0.2.81"
2020-08-23 10:53:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "5491a68ab4500fa6b4d726bd67408630c3dbe9c4fe7bda16d5c82a1fd8c7340a"
2020-08-23 10:53:08 +00:00
dependencies = [
2020-10-18 12:50:32 +00:00
"bumpalo",
"lazy_static",
"log",
"proc-macro2",
"quote",
"syn",
"wasm-bindgen-shared",
2020-08-23 10:53:08 +00:00
]
[[package]]
name = "wasm-bindgen-futures"
2022-07-05 16:47:21 +00:00
version = "0.4.31"
2020-08-23 10:53:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "de9a9cec1733468a8c657e57fa2413d2ae2c0129b95e87c5b72b8ace4d13f31f"
2020-08-23 10:53:08 +00:00
dependencies = [
2021-05-01 15:11:16 +00:00
"cfg-if",
2020-10-18 12:50:32 +00:00
"js-sys",
"wasm-bindgen",
"web-sys",
2020-08-23 10:53:08 +00:00
]
[[package]]
name = "wasm-bindgen-macro"
2022-07-05 16:47:21 +00:00
version = "0.2.81"
2020-08-23 10:53:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "c441e177922bc58f1e12c022624b6216378e5febc2f0533e41ba443d505b80aa"
2020-08-23 10:53:08 +00:00
dependencies = [
2020-10-18 12:50:32 +00:00
"quote",
"wasm-bindgen-macro-support",
2020-08-23 10:53:08 +00:00
]
[[package]]
name = "wasm-bindgen-macro-support"
2022-07-05 16:47:21 +00:00
version = "0.2.81"
2020-08-23 10:53:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "7d94ac45fcf608c1f45ef53e748d35660f168490c10b23704c7779ab8f5c3048"
2020-08-23 10:53:08 +00:00
dependencies = [
2020-10-18 12:50:32 +00:00
"proc-macro2",
"quote",
"syn",
"wasm-bindgen-backend",
"wasm-bindgen-shared",
2020-08-23 10:53:08 +00:00
]
[[package]]
name = "wasm-bindgen-shared"
2022-07-05 16:47:21 +00:00
version = "0.2.81"
2020-12-05 19:14:22 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "6a89911bd99e5f3659ec4acf9c4d93b0a90fe4a2a11f15328472058edc5261be"
2020-12-05 19:14:22 +00:00
2020-08-23 10:53:08 +00:00
[[package]]
name = "web-sys"
2022-07-05 16:47:21 +00:00
version = "0.3.58"
2020-08-23 10:53:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "2fed94beee57daf8dd7d51f2b15dc2bcde92d7a72304cdf662a4371008b71b90"
2020-08-23 10:53:08 +00:00
dependencies = [
2020-10-18 12:50:32 +00:00
"js-sys",
"wasm-bindgen",
2020-08-23 10:53:08 +00:00
]
2021-12-27 10:32:52 +00:00
[[package]]
name = "webpki"
version = "0.22.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f095d78192e208183081cc07bc5515ef55216397af48b873e5edcd72637fa1bd"
dependencies = [
"ring",
"untrusted",
]
2020-12-05 19:14:22 +00:00
[[package]]
name = "webpki-roots"
2022-07-05 16:47:21 +00:00
version = "0.22.3"
2020-12-05 19:14:22 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "44d8de8415c823c8abd270ad483c6feeac771fad964890779f9a8cb24fbbc1bf"
2020-12-05 19:14:22 +00:00
dependencies = [
2022-07-05 16:47:21 +00:00
"webpki",
2020-12-05 19:14:22 +00:00
]
2020-08-25 21:19:53 +00:00
[[package]]
name = "whoami"
2021-12-27 10:32:52 +00:00
version = "1.2.1"
2020-08-25 21:19:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-27 10:32:52 +00:00
checksum = "524b58fa5a20a2fb3014dd6358b70e6579692a56ef6fce928834e488f42f65e8"
2021-01-03 18:06:10 +00:00
dependencies = [
"wasm-bindgen",
"web-sys",
]
2020-08-25 21:19:53 +00:00
2020-08-23 10:53:08 +00:00
[[package]]
name = "winapi"
version = "0.3.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-18 12:50:32 +00:00
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
2020-08-23 10:53:08 +00:00
dependencies = [
2020-10-18 12:50:32 +00:00
"winapi-i686-pc-windows-gnu",
"winapi-x86_64-pc-windows-gnu",
2020-08-23 10:53:08 +00:00
]
[[package]]
name = "winapi-i686-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-18 12:50:32 +00:00
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
2020-08-23 10:53:08 +00:00
[[package]]
name = "winapi-x86_64-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-18 12:50:32 +00:00
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
2020-08-23 10:53:08 +00:00
2022-02-25 23:56:02 +00:00
[[package]]
name = "windows-sys"
2022-07-05 16:47:21 +00:00
version = "0.36.1"
2022-02-25 23:56:02 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "ea04155a16a59f9eab786fe12a4a450e75cdb175f9e0d80da1e17db09f55b8d2"
2022-02-25 23:56:02 +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-07-05 16:47:21 +00:00
version = "0.36.1"
2022-02-25 23:56:02 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "9bb8c3fd39ade2d67e9874ac4f3db21f0d710bee00fe7cab16949ec184eeaa47"
2022-02-25 23:56:02 +00:00
[[package]]
name = "windows_i686_gnu"
2022-07-05 16:47:21 +00:00
version = "0.36.1"
2022-02-25 23:56:02 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "180e6ccf01daf4c426b846dfc66db1fc518f074baa793aa7d9b9aaeffad6a3b6"
2022-02-25 23:56:02 +00:00
[[package]]
name = "windows_i686_msvc"
2022-07-05 16:47:21 +00:00
version = "0.36.1"
2022-02-25 23:56:02 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "e2e7917148b2812d1eeafaeb22a97e4813dfa60a3f8f78ebe204bcc88f12f024"
2022-02-25 23:56:02 +00:00
[[package]]
name = "windows_x86_64_gnu"
2022-07-05 16:47:21 +00:00
version = "0.36.1"
2022-02-25 23:56:02 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "4dcd171b8776c41b97521e5da127a2d86ad280114807d0b2ab1e462bc764d9e1"
2022-02-25 23:56:02 +00:00
[[package]]
name = "windows_x86_64_msvc"
2022-07-05 16:47:21 +00:00
version = "0.36.1"
2022-02-25 23:56:02 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "c811ca4a8c853ef420abd8592ba53ddbbac90410fab6903b3e79972a631f7680"
2022-02-25 23:56:02 +00:00
2020-08-23 10:53:08 +00:00
[[package]]
name = "winreg"
2022-07-05 16:47:21 +00:00
version = "0.10.1"
2020-08-23 10:53:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d"
2020-08-23 10:53:08 +00:00
dependencies = [
2021-02-11 09:23:13 +00:00
"winapi",
2020-08-23 10:53:08 +00:00
]
2021-01-16 23:01:08 +00:00
[[package]]
name = "wiremock"
2022-07-05 16:47:21 +00:00
version = "0.5.13"
2021-01-16 23:01:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "1b12f508bdca434a55d43614d26f02e6b3e98ebeecfbc5a1614e0a0c8bf3e315"
2021-01-16 23:01:08 +00:00
dependencies = [
2022-02-25 23:56:02 +00:00
"assert-json-diff",
2021-01-16 23:01:08 +00:00
"async-trait",
"deadpool",
"futures",
"futures-timer",
"http-types",
2021-02-11 09:23:13 +00:00
"hyper",
2021-01-16 23:01:08 +00:00
"log",
"once_cell",
"regex",
"serde",
"serde_json",
2021-02-11 09:23:13 +00:00
"tokio",
2020-08-23 10:53:08 +00:00
]
2020-08-25 21:19:53 +00:00
[[package]]
name = "yaml-rust"
2021-02-11 09:23:13 +00:00
version = "0.4.5"
2020-08-25 21:19:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-11 09:23:13 +00:00
checksum = "56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85"
2020-08-25 21:19:53 +00:00
dependencies = [
2020-10-18 12:50:32 +00:00
"linked-hash-map",
]
[[package]]
name = "zero2prod"
version = "0.1.0"
dependencies = [
"actix-session",
"actix-web",
"actix-web-flash-messages",
"actix-web-lab",
2021-05-12 08:08:38 +00:00
"anyhow",
"argon2",
2021-08-14 21:57:03 +00:00
"base64",
"chrono",
2020-12-11 15:50:09 +00:00
"claim",
2022-02-25 23:56:02 +00:00
"config",
2020-12-29 10:00:11 +00:00
"fake",
2021-03-08 22:10:23 +00:00
"linkify",
2021-09-30 20:13:14 +00:00
"log",
"once_cell",
2020-12-29 10:00:11 +00:00
"quickcheck",
"quickcheck_macros",
2022-02-25 23:56:02 +00:00
"rand 0.8.5",
"reqwest",
2021-12-27 12:24:24 +00:00
"secrecy",
"serde",
"serde-aux",
2021-01-16 23:01:08 +00:00
"serde_json",
2022-03-13 19:36:44 +00:00
"serde_urlencoded",
"sqlx",
2021-05-10 08:57:49 +00:00
"thiserror",
2021-02-11 09:23:13 +00:00
"tokio",
"tracing",
"tracing-actix-web",
"tracing-bunyan-formatter",
"tracing-log",
"tracing-subscriber",
2020-12-09 17:20:15 +00:00
"unicode-segmentation",
"uuid",
2020-12-28 12:26:05 +00:00
"validator",
2021-01-16 23:01:08 +00:00
"wiremock",
]
2021-07-09 07:37:14 +00:00
2021-12-27 12:24:24 +00:00
[[package]]
name = "zeroize"
2022-07-05 16:47:21 +00:00
version = "1.5.6"
2021-12-27 12:24:24 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "20b578acffd8516a6c3f2a1bdefc1ec37e547bb4e0fb8b6b01a4cafc886b4442"
2021-12-27 12:24:24 +00:00
2021-07-09 07:37:14 +00:00
[[package]]
name = "zstd"
2022-07-05 16:47:21 +00:00
version = "0.11.2+zstd.1.5.2"
2021-07-09 07:37:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "20cc960326ece64f010d2d2107537f26dc589a6573a316bd5b1dba685fa5fde4"
2021-07-09 07:37:14 +00:00
dependencies = [
"zstd-safe",
]
[[package]]
name = "zstd-safe"
2022-07-05 16:47:21 +00:00
version = "5.0.2+zstd.1.5.2"
2021-07-09 07:37:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "1d2a5585e04f9eea4b2a3d1eca508c4dee9592a89ef6f450c11719da0726f4db"
2021-07-09 07:37:14 +00:00
dependencies = [
"libc",
"zstd-sys",
]
[[package]]
name = "zstd-sys"
2022-07-05 16:47:21 +00:00
version = "2.0.1+zstd.1.5.2"
2021-07-09 07:37:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-05 16:47:21 +00:00
checksum = "9fd07cbbc53846d9145dbffdf6dd09a7a0aa52be46741825f5c97bdd4f73f12b"
2021-07-09 07:37:14 +00:00
dependencies = [
"cc",
"libc",
]