1
0
mirror of https://gitlab.com/comunic/comunicapiv3 synced 2024-11-22 13:29:21 +00:00
comunicapiv3/Cargo.lock

3766 lines
90 KiB
Plaintext
Raw Normal View History

2020-05-20 15:46:05 +00:00
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
2021-10-23 14:32:03 +00:00
version = 3
2021-02-05 12:21:10 +00:00
[[package]]
name = "actix"
2022-03-09 18:58:46 +00:00
version = "0.13.0"
2021-02-05 12:21:10 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-09 18:58:46 +00:00
checksum = "f728064aca1c318585bf4bb04ffcfac9e75e508ab4e8b1bd9ba5dfe04e2cbed5"
2021-02-05 12:21:10 +00:00
dependencies = [
2021-02-19 16:08:13 +00:00
"actix-rt",
2021-02-05 12:21:10 +00:00
"actix_derive",
"bitflags",
2022-03-09 18:58:46 +00:00
"bytes",
"crossbeam-channel",
"futures-core",
"futures-sink",
"futures-task",
2021-02-19 15:44:50 +00:00
"futures-util",
2021-02-05 12:21:10 +00:00
"log",
2021-02-19 15:44:50 +00:00
"once_cell",
2022-06-11 09:08:53 +00:00
"parking_lot",
2022-03-09 18:58:46 +00:00
"pin-project-lite",
2021-02-05 12:21:10 +00:00
"smallvec",
2022-03-09 18:58:46 +00:00
"tokio",
2022-06-11 09:08:53 +00:00
"tokio-util",
2021-02-05 12:21:10 +00:00
]
2021-02-19 15:31:45 +00:00
[[package]]
name = "actix-codec"
2022-03-09 18:58:46 +00:00
version = "0.5.0"
2021-02-19 15:31:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-09 18:58:46 +00:00
checksum = "57a7559404a7f3573127aab53c08ce37a6c6a315c374a31070f3c91cd1b4a7fe"
2021-02-19 15:31:45 +00:00
dependencies = [
"bitflags",
2022-03-09 18:58:46 +00:00
"bytes",
2021-02-19 15:31:45 +00:00
"futures-core",
"futures-sink",
"log",
2022-03-09 18:58:46 +00:00
"memchr",
"pin-project-lite",
"tokio",
2022-06-11 09:08:53 +00:00
"tokio-util",
2020-05-21 13:28:07 +00:00
]
[[package]]
name = "actix-files"
2022-08-04 11:23:42 +00:00
version = "0.6.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-04 11:23:42 +00:00
checksum = "d832782fac6ca7369a70c9ee9a20554623c5e51c76e190ad151780ebea1cf689"
dependencies = [
2022-03-09 18:58:46 +00:00
"actix-http",
"actix-service",
2022-03-09 18:58:46 +00:00
"actix-utils",
"actix-web",
2022-03-09 18:58:46 +00:00
"askama_escape",
"bitflags",
2022-03-09 18:58:46 +00:00
"bytes",
"derive_more",
"futures-core",
2022-03-09 18:58:46 +00:00
"http-range",
"log",
"mime",
"mime_guess",
"percent-encoding",
2022-03-09 18:58:46 +00:00
"pin-project-lite",
]
2020-05-21 13:28:07 +00:00
[[package]]
name = "actix-http"
2022-06-11 09:08:53 +00:00
version = "3.0.4"
2020-05-21 13:28:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-11 09:08:53 +00:00
checksum = "a5885cb81a0d4d0d322864bea1bb6c2a8144626b4fdc625d4c51eba197e7797a"
2020-05-21 13:28:07 +00:00
dependencies = [
2021-02-19 15:44:50 +00:00
"actix-codec",
2021-02-19 16:08:13 +00:00
"actix-rt",
2020-05-21 13:28:07 +00:00
"actix-service",
2021-02-19 15:44:50 +00:00
"actix-utils",
2022-03-09 18:58:46 +00:00
"ahash",
2021-02-19 15:44:50 +00:00
"base64 0.13.0",
2020-05-21 13:28:07 +00:00
"bitflags",
2022-03-09 17:16:33 +00:00
"brotli",
2022-03-09 18:58:46 +00:00
"bytes",
"bytestring",
2020-05-21 13:28:07 +00:00
"derive_more",
"encoding_rs",
"flate2",
"futures-core",
2022-03-09 18:58:46 +00:00
"h2",
2020-05-21 13:28:07 +00:00
"http",
"httparse",
2022-03-09 18:58:46 +00:00
"httpdate",
2022-06-11 09:08:53 +00:00
"itoa 1.0.2",
2020-05-21 13:28:07 +00:00
"language-tags",
2022-03-09 18:58:46 +00:00
"local-channel",
2020-05-21 13:28:07 +00:00
"log",
"mime",
"percent-encoding",
2022-03-09 18:58:46 +00:00
"pin-project-lite",
"rand 0.8.5",
"sha-1",
"smallvec",
"zstd",
2020-05-21 13:28:07 +00:00
]
[[package]]
name = "actix-macros"
2022-03-09 18:58:46 +00:00
version = "0.2.3"
2020-05-21 13:28:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-09 18:58:46 +00:00
checksum = "465a6172cf69b960917811022d8f29bc0b7fa1398bc4f78b3c466673db1213b6"
2020-05-21 13:28:07 +00:00
dependencies = [
2021-12-28 10:27:26 +00:00
"quote",
"syn",
2020-05-21 13:28:07 +00:00
]
2021-02-19 15:44:50 +00:00
[[package]]
name = "actix-multipart"
2022-03-09 18:58:46 +00:00
version = "0.4.0"
2021-02-19 15:44:50 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-09 18:58:46 +00:00
checksum = "c9edfb0e7663d7fe18c8d5b668c9c1bcf79176b1dcc9d4da9592503209a6bfb0"
2020-06-20 08:31:58 +00:00
dependencies = [
2021-02-19 15:44:50 +00:00
"actix-utils",
2020-06-20 08:31:58 +00:00
"actix-web",
2022-03-09 18:58:46 +00:00
"bytes",
2020-06-20 08:31:58 +00:00
"derive_more",
2022-03-09 18:58:46 +00:00
"futures-core",
2020-06-20 08:31:58 +00:00
"httparse",
2022-03-09 18:58:46 +00:00
"local-waker",
2020-06-20 08:31:58 +00:00
"log",
"mime",
"twoway",
]
2020-05-21 13:28:07 +00:00
[[package]]
name = "actix-router"
2022-03-09 18:58:46 +00:00
version = "0.5.0"
2020-05-21 13:28:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-09 18:58:46 +00:00
checksum = "eb60846b52c118f2f04a56cc90880a274271c489b2498623d58176f8ca21fa80"
2020-05-21 13:28:07 +00:00
dependencies = [
"bytestring",
2022-03-09 18:58:46 +00:00
"firestorm",
2020-05-21 13:28:07 +00:00
"http",
"log",
"regex",
"serde",
]
[[package]]
name = "actix-rt"
2022-06-11 09:08:53 +00:00
version = "2.7.0"
2020-05-21 13:28:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-11 09:08:53 +00:00
checksum = "7ea16c295198e958ef31930a6ef37d0fb64e9ca3b6116e6b93a8bdae96ee1000"
2020-05-21 13:28:07 +00:00
dependencies = [
2022-03-09 18:58:46 +00:00
"futures-core",
"tokio",
2021-02-19 15:44:50 +00:00
]
2020-05-21 13:28:07 +00:00
[[package]]
name = "actix-server"
2022-06-11 09:08:53 +00:00
version = "2.1.1"
2020-05-21 13:28:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-11 09:08:53 +00:00
checksum = "0da34f8e659ea1b077bb4637948b815cd3768ad5a188fdcd74ff4d84240cd824"
2020-05-21 13:28:07 +00:00
dependencies = [
2021-02-19 16:08:13 +00:00
"actix-rt",
2020-05-21 13:28:07 +00:00
"actix-service",
2021-02-19 15:44:50 +00:00
"actix-utils",
2022-03-09 18:58:46 +00:00
"futures-core",
2020-05-21 13:28:07 +00:00
"futures-util",
2022-03-09 18:58:46 +00:00
"mio",
2020-05-21 13:28:07 +00:00
"num_cpus",
2022-03-09 18:58:46 +00:00
"socket2",
"tokio",
2022-06-11 09:08:53 +00:00
"tracing",
2020-05-21 13:28:07 +00:00
]
[[package]]
name = "actix-service"
2022-03-09 18:58:46 +00:00
version = "2.0.2"
2020-05-21 13:28:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-09 18:58:46 +00:00
checksum = "3b894941f818cfdc7ccc4b9e60fa7e53b5042a2e8567270f9147d5591893373a"
2020-05-21 13:28:07 +00:00
dependencies = [
2022-03-09 18:58:46 +00:00
"futures-core",
"paste",
"pin-project-lite",
2021-02-19 15:31:45 +00:00
]
[[package]]
name = "actix-utils"
2022-03-09 18:58:46 +00:00
version = "3.0.0"
2021-02-19 15:31:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-09 18:58:46 +00:00
checksum = "e491cbaac2e7fc788dfff99ff48ef317e23b3cf63dbaf7aaab6418f40f92aa94"
2021-02-19 15:31:45 +00:00
dependencies = [
2022-03-09 18:58:46 +00:00
"local-waker",
"pin-project-lite",
2020-05-21 13:28:07 +00:00
]
[[package]]
name = "actix-web"
2022-08-04 11:23:42 +00:00
version = "4.1.0"
2020-05-21 13:28:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-04 11:23:42 +00:00
checksum = "a27e8fe9ba4ae613c21f677c2cfaf0696c3744030c6f485b34634e502d6bb379"
2020-05-21 13:28:07 +00:00
dependencies = [
2021-02-19 15:44:50 +00:00
"actix-codec",
2020-05-21 13:28:07 +00:00
"actix-http",
2021-02-19 16:08:13 +00:00
"actix-macros",
2020-05-21 13:28:07 +00:00
"actix-router",
2021-02-19 16:08:13 +00:00
"actix-rt",
2020-05-21 13:28:07 +00:00
"actix-server",
"actix-service",
2021-02-19 15:44:50 +00:00
"actix-utils",
2020-05-21 13:28:07 +00:00
"actix-web-codegen",
2022-03-09 18:58:46 +00:00
"ahash",
"bytes",
"bytestring",
"cfg-if",
"cookie",
2020-05-21 13:28:07 +00:00
"derive_more",
"encoding_rs",
2021-02-19 15:44:50 +00:00
"futures-core",
"futures-util",
2022-06-11 09:08:53 +00:00
"itoa 1.0.2",
2022-03-09 18:58:46 +00:00
"language-tags",
2020-05-21 13:28:07 +00:00
"log",
"mime",
2022-03-09 18:58:46 +00:00
"once_cell",
"pin-project-lite",
2020-05-21 13:28:07 +00:00
"regex",
"serde",
"serde_json",
2022-03-09 17:16:33 +00:00
"serde_urlencoded 0.7.1",
2022-03-09 18:58:46 +00:00
"smallvec",
"socket2",
2022-08-04 11:23:42 +00:00
"time 0.3.12",
2020-05-21 13:28:07 +00:00
"url",
]
2021-02-05 12:21:10 +00:00
[[package]]
name = "actix-web-actors"
2022-03-09 18:58:46 +00:00
version = "4.1.0"
2021-02-05 12:21:10 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-09 18:58:46 +00:00
checksum = "31efe7896f3933ce03dd4710be560254272334bb321a18fd8ff62b1a557d9d19"
2021-02-05 12:21:10 +00:00
dependencies = [
"actix",
2021-02-19 15:44:50 +00:00
"actix-codec",
2021-02-05 12:21:10 +00:00
"actix-http",
"actix-web",
2022-03-09 18:58:46 +00:00
"bytes",
"bytestring",
2021-02-19 15:44:50 +00:00
"futures-core",
2022-03-09 18:58:46 +00:00
"pin-project-lite",
"tokio",
2021-02-05 12:21:10 +00:00
]
2020-05-21 13:28:07 +00:00
[[package]]
name = "actix-web-codegen"
2022-08-04 11:23:42 +00:00
version = "4.0.1"
2020-05-21 13:28:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-04 11:23:42 +00:00
checksum = "5f270541caec49c15673b0af0e9a00143421ad4f118d2df7edcb68b627632f56"
2020-05-21 13:28:07 +00:00
dependencies = [
2022-03-09 18:58:46 +00:00
"actix-router",
2021-12-28 10:27:26 +00:00
"proc-macro2",
"quote",
"syn",
2021-02-05 12:21:10 +00:00
]
[[package]]
name = "actix_derive"
2022-03-09 18:58:46 +00:00
version = "0.6.0"
2021-02-05 12:21:10 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-09 18:58:46 +00:00
checksum = "6d44b8fee1ced9671ba043476deddef739dd0959bf77030b26b738cc591737a7"
2021-02-05 12:21:10 +00:00
dependencies = [
2021-12-28 10:27:26 +00:00
"proc-macro2",
"quote",
"syn",
2020-05-21 13:28:07 +00:00
]
2021-02-19 15:31:45 +00:00
[[package]]
name = "adler"
2021-05-29 15:10:46 +00:00
version = "1.0.2"
2021-02-19 15:31:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
2021-02-19 15:31:45 +00:00
2020-05-21 07:21:58 +00:00
[[package]]
name = "adler32"
2021-02-19 15:31:45 +00:00
version = "1.2.0"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:31:45 +00:00
checksum = "aae1277d39aeec15cb388266ecc24b11c80469deae6067e17a1a7aa9e5c1f234"
2020-05-21 07:21:58 +00:00
[[package]]
2021-02-19 15:44:50 +00:00
name = "aes"
version = "0.6.0"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:44:50 +00:00
checksum = "884391ef1066acaa41e766ba8f596341b96e93ce34f9a43e7d24bf0a0eaf0561"
2020-05-21 07:21:58 +00:00
dependencies = [
2021-02-19 15:44:50 +00:00
"aes-soft",
"aesni",
2022-03-09 19:02:07 +00:00
"cipher 0.2.5",
2020-05-21 07:21:58 +00:00
]
2022-06-11 09:08:53 +00:00
[[package]]
name = "aes"
version = "0.7.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9e8b47f52ea9bae42228d07ec09eb676433d7c4ed1ebdf0f1d1c29ed446f1ab8"
dependencies = [
"cfg-if",
"cipher 0.3.0",
"cpufeatures",
"opaque-debug",
]
2021-01-22 18:39:14 +00:00
[[package]]
2021-02-19 15:44:50 +00:00
name = "aes-soft"
version = "0.6.4"
2021-01-22 18:39:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:44:50 +00:00
checksum = "be14c7498ea50828a38d0e24a765ed2effe92a705885b57d029cd67d45744072"
2021-01-22 18:39:14 +00:00
dependencies = [
2022-03-09 19:02:07 +00:00
"cipher 0.2.5",
2022-03-09 18:21:57 +00:00
"opaque-debug",
2021-01-22 18:39:14 +00:00
]
2020-05-21 07:21:58 +00:00
[[package]]
2021-02-19 15:44:50 +00:00
name = "aesni"
version = "0.10.0"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:44:50 +00:00
checksum = "ea2e11f5e94c2f7d386164cc2aa1f97823fed6f259e486940a71c174dd01b0ce"
2020-05-21 07:21:58 +00:00
dependencies = [
2022-03-09 19:02:07 +00:00
"cipher 0.2.5",
2022-03-09 18:21:57 +00:00
"opaque-debug",
2020-05-21 07:21:58 +00:00
]
2020-07-08 15:14:55 +00:00
[[package]]
2021-02-19 15:44:50 +00:00
name = "ahash"
2021-12-28 10:27:26 +00:00
version = "0.7.6"
2020-07-08 15:14:55 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-28 10:27:26 +00:00
checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47"
dependencies = [
2022-08-04 11:23:42 +00:00
"getrandom 0.2.7",
2021-12-28 10:27:26 +00:00
"once_cell",
2022-03-09 18:58:46 +00:00
"version_check",
2021-12-28 10:27:26 +00:00
]
2020-07-08 15:14:55 +00:00
2020-05-21 07:21:58 +00:00
[[package]]
2021-02-19 15:44:50 +00:00
name = "aho-corasick"
2021-05-29 15:10:46 +00:00
version = "0.7.18"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "1e37cfd5e7657ada45f742d6e99ca5788580b5c529dc78faf11ece6dc702656f"
2020-05-21 07:21:58 +00:00
dependencies = [
2021-02-19 15:44:50 +00:00
"memchr",
2020-05-21 07:21:58 +00:00
]
2022-03-09 17:16:33 +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",
]
2021-12-28 10:27:26 +00:00
[[package]]
name = "arrayvec"
version = "0.7.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8da52d66c7071e2e3fa2a1e5c6d088fec47b593032b254f5e980de8ea54454d6"
2020-05-23 15:09:28 +00:00
[[package]]
name = "ascii_utils"
version = "0.9.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "71938f30533e4d95a6d17aa530939da3842c2ab6f4f84b9dae68447e4129f74a"
2020-05-21 13:28:07 +00:00
[[package]]
2022-03-09 18:58:46 +00:00
name = "askama_escape"
version = "0.10.3"
2020-05-21 13:28:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-09 18:58:46 +00:00
checksum = "619743e34b5ba4e9703bba34deac3427c72507c7159f5fd030aea8cac0cfe341"
2020-05-21 13:28:07 +00:00
2022-03-12 06:47:22 +00:00
[[package]]
name = "async-recursion"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2cda8f4bcc10624c4e85bc66b3f452cca98cfa5ca002dc83a16aad2367641bea"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "attohttpc"
version = "0.15.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fe174d1b67f7b2bafed829c09db039301eb5841f66e43be2cf60b326e7f8e2cc"
dependencies = [
"flate2",
"http",
"log",
"url",
]
[[package]]
name = "attohttpc"
2021-05-29 15:10:46 +00:00
version = "0.17.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "9a8bda305457262b339322106c776e3fd21df860018e566eb6a5b1aa4b6ae02d"
dependencies = [
"flate2",
"http",
"log",
"rustls",
"serde",
"serde_urlencoded 0.6.1",
"url",
"webpki",
"webpki-roots",
"wildmatch",
]
2020-05-21 07:21:58 +00:00
[[package]]
name = "autocfg"
2022-03-09 17:16:33 +00:00
version = "1.1.0"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-09 17:16:33 +00:00
checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
2020-05-21 07:21:58 +00:00
2021-02-05 12:21:10 +00:00
[[package]]
name = "base64"
version = "0.12.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3441f0f7b02788e948e47f457ca01f1d7e6d92c693bc132c22b087d3141c03ff"
2021-02-19 15:31:45 +00:00
[[package]]
name = "base64"
version = "0.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd"
2022-06-11 09:08:53 +00:00
[[package]]
name = "base64ct"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8a32fd6af2b5827bce66c29053ba0e7c42b9dcab01835835058558c10851a46b"
2021-02-13 09:52:04 +00:00
[[package]]
name = "bcrypt"
2022-06-11 09:08:53 +00:00
version = "0.13.0"
2021-02-13 09:52:04 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-11 09:08:53 +00:00
checksum = "a7e7c93a3fb23b2fdde989b2c9ec4dd153063ec81f408507f84c090cd91c6641"
2021-02-13 09:52:04 +00:00
dependencies = [
2021-02-19 15:44:50 +00:00
"base64 0.13.0",
2021-02-13 09:52:04 +00:00
"blowfish",
2022-08-04 11:23:42 +00:00
"getrandom 0.2.7",
2022-06-11 09:08:53 +00:00
"zeroize",
2021-02-13 09:52:04 +00:00
]
2020-05-21 07:21:58 +00:00
[[package]]
name = "bigdecimal"
2022-03-09 18:21:57 +00:00
version = "0.3.0"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-09 18:21:57 +00:00
checksum = "6aaf33151a6429fe9211d1b276eafdf70cdff28b071e76c0b0e1503221ea3744"
2020-05-21 07:21:58 +00:00
dependencies = [
2022-03-09 18:21:57 +00:00
"num-bigint 0.4.3",
2020-05-21 07:21:58 +00:00
"num-integer",
2021-02-19 15:44:50 +00:00
"num-traits",
2022-03-09 18:21:57 +00:00
]
[[package]]
name = "bindgen"
version = "0.59.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2bd2a9a458e8f4304c52c43ebb0cfbd520289f8379a52e329a38afda99bf8eb8"
dependencies = [
"bitflags",
"cexpr",
"clang-sys",
"lazy_static",
"lazycell",
"peeking_take_while",
"proc-macro2",
"quote",
"regex",
"rustc-hash",
"shlex",
2020-05-21 07:21:58 +00:00
]
2022-03-09 19:03:00 +00:00
[[package]]
name = "bit_field"
version = "0.10.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dcb6dd1c2376d2e096796e234a70e17e94cc2d5d54ff8ce42b28cef1d0d359a4"
2020-05-21 07:21:58 +00:00
[[package]]
name = "bitflags"
2021-12-28 10:27:26 +00:00
version = "1.3.2"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-28 10:27:26 +00:00
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
2020-05-21 07:21:58 +00:00
[[package]]
2022-03-09 18:21:57 +00:00
name = "bitvec"
version = "0.22.3"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-09 18:21:57 +00:00
checksum = "5237f00a8c86130a0cc317830e558b966dd7850d48a953d998c813f01a41b527"
2020-05-21 07:21:58 +00:00
dependencies = [
2022-03-09 18:21:57 +00:00
"funty",
"radium",
"tap",
"wyz",
2021-02-13 09:52:04 +00:00
]
[[package]]
2021-02-19 15:44:50 +00:00
name = "block-buffer"
version = "0.9.0"
2021-02-13 09:52:04 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:44:50 +00:00
checksum = "4152116fd6e9dadb291ae18fc1ec3575ed6d84c29642d97890f4b4a3417297e4"
2021-02-13 09:52:04 +00:00
dependencies = [
2022-03-09 18:21:57 +00:00
"generic-array",
2020-05-21 07:21:58 +00:00
]
2022-03-09 18:07:22 +00:00
[[package]]
name = "block-buffer"
version = "0.10.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0bf7fe51849ea569fd452f37822f606a5cabb684dc918707a0193fd4664ff324"
dependencies = [
2022-03-09 18:21:57 +00:00
"generic-array",
2022-03-09 18:07:22 +00:00
]
2021-02-19 15:44:50 +00:00
[[package]]
name = "block-modes"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "57a0e8073e8baa88212fb5823574c02ebccb395136ba9a164ab89379ec6072f0"
dependencies = [
2022-03-09 18:21:57 +00:00
"block-padding",
2022-03-09 19:02:07 +00:00
"cipher 0.2.5",
2021-02-19 15:44:50 +00:00
]
[[package]]
name = "block-padding"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8d696c370c750c948ada61c69a0ee2cbbb9c50b1019ddb86d9317157a99c2cae"
2021-02-13 09:52:04 +00:00
[[package]]
name = "blowfish"
2022-03-09 19:02:07 +00:00
version = "0.9.1"
2021-02-13 09:52:04 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-09 19:02:07 +00:00
checksum = "e412e2cd0f2b2d93e02543ceae7917b3c70331573df19ee046bcbc35e45e87d7"
2021-02-13 09:52:04 +00:00
dependencies = [
"byteorder",
2022-03-09 19:02:07 +00:00
"cipher 0.4.3",
2021-02-13 09:52:04 +00:00
]
2020-05-21 13:28:07 +00:00
[[package]]
2022-03-09 17:16:33 +00:00
name = "brotli"
2022-06-11 09:08:53 +00:00
version = "3.3.4"
2020-05-21 13:28:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-11 09:08:53 +00:00
checksum = "a1a0b1dbcc8ae29329621f8d4f0d835787c1c38bb1401979b49d13b0b305ff68"
2020-05-21 13:28:07 +00:00
dependencies = [
2022-03-09 17:16:33 +00:00
"alloc-no-stdlib",
"alloc-stdlib",
"brotli-decompressor",
2020-05-21 13:28:07 +00:00
]
[[package]]
2022-03-09 17:16:33 +00:00
name = "brotli-decompressor"
version = "2.3.2"
2020-05-21 13:28:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-09 17:16:33 +00:00
checksum = "59ad2d4653bf5ca36ae797b1f4bb4dbddb60ce49ca4aed8a2ce4829f60425b80"
2020-05-21 13:28:07 +00:00
dependencies = [
2022-03-09 17:16:33 +00:00
"alloc-no-stdlib",
"alloc-stdlib",
2020-05-21 13:28:07 +00:00
]
2020-05-21 07:21:58 +00:00
[[package]]
name = "bufstream"
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "40e38929add23cdf8a366df9b0e088953150724bcbe5fc330b0d8eb3b328eec8"
2021-02-05 12:21:10 +00:00
[[package]]
name = "bumpalo"
2022-06-11 09:08:53 +00:00
version = "3.10.0"
2021-02-05 12:21:10 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-11 09:08:53 +00:00
checksum = "37ccbd214614c6783386c1af30caf03192f17891059cecc394b4fb119e363de3"
2021-02-05 12:21:10 +00:00
2020-06-20 13:22:41 +00:00
[[package]]
name = "bytemuck"
2022-08-04 11:23:42 +00:00
version = "1.11.0"
2020-06-20 13:22:41 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-04 11:23:42 +00:00
checksum = "a5377c8865e74a160d21f29c2d40669f53286db6eab59b88540cbb12ffc8b835"
2020-06-20 13:22:41 +00:00
2020-05-21 07:21:58 +00:00
[[package]]
name = "byteorder"
2021-05-29 15:10:46 +00:00
version = "1.4.3"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
2020-05-21 07:21:58 +00:00
2021-02-19 15:31:45 +00:00
[[package]]
name = "bytes"
2022-08-04 11:23:42 +00:00
version = "1.2.1"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-04 11:23:42 +00:00
checksum = "ec8a7b6a70fde80372154c65702f00a0f56f3e1c36abbc6c440484be248856db"
2020-05-21 07:21:58 +00:00
2020-05-21 13:28:07 +00:00
[[package]]
name = "bytestring"
2022-08-04 11:23:42 +00:00
version = "1.1.0"
2020-05-21 13:28:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-04 11:23:42 +00:00
checksum = "86b6a75fd3048808ef06af5cd79712be8111960adaf89d90250974b38fc3928a"
2020-05-21 13:28:07 +00:00
dependencies = [
2022-03-09 18:58:46 +00:00
"bytes",
2020-05-21 13:28:07 +00:00
]
2021-03-06 08:35:36 +00:00
[[package]]
name = "bzip2"
2021-12-28 10:27:26 +00:00
version = "0.4.3"
2021-03-06 08:35:36 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-28 10:27:26 +00:00
checksum = "6afcd980b5f3a45017c57e57a2fcccbb351cc43a356ce117ef760ef8052b89b0"
2021-03-06 08:35:36 +00:00
dependencies = [
"bzip2-sys",
"libc",
]
[[package]]
name = "bzip2-sys"
2021-12-28 10:27:26 +00:00
version = "0.1.11+1.0.8"
2021-03-06 08:35:36 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-28 10:27:26 +00:00
checksum = "736a955f3fa7875102d57c82b8cac37ec45224a07fd32d58f9f7a186b6cd4cdc"
2021-03-06 08:35:36 +00:00
dependencies = [
"cc",
"libc",
"pkg-config",
]
2020-05-21 07:21:58 +00:00
[[package]]
name = "cc"
2022-03-09 17:16:33 +00:00
version = "1.0.73"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-09 17:16:33 +00:00
checksum = "2fff2a6927b3bb87f9595d67196a70493f627687a71d87a0d692242c33f58c11"
2022-03-09 18:58:46 +00:00
dependencies = [
"jobserver",
]
2020-05-21 07:21:58 +00:00
2022-03-09 18:21:57 +00:00
[[package]]
name = "cexpr"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
dependencies = [
2022-03-09 18:58:46 +00:00
"nom",
2022-03-09 18:21:57 +00:00
]
2021-02-19 15:31:45 +00:00
[[package]]
name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
2020-05-21 07:21:58 +00:00
[[package]]
name = "chrono"
2021-02-19 15:31:45 +00:00
version = "0.4.19"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:31:45 +00:00
checksum = "670ad68c9088c2a963aaa298cb369688cf3f9465ce5e2d4ca10e6e0098a1ce73"
2020-05-21 07:21:58 +00:00
dependencies = [
2021-02-19 15:31:45 +00:00
"libc",
2020-05-21 07:21:58 +00:00
"num-integer",
2021-02-19 15:44:50 +00:00
"num-traits",
"time 0.1.44",
2022-03-09 18:58:46 +00:00
"winapi",
2020-05-21 07:21:58 +00:00
]
2020-05-21 13:28:07 +00:00
[[package]]
2021-02-19 15:44:50 +00:00
name = "cipher"
version = "0.2.5"
2020-05-21 13:28:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:44:50 +00:00
checksum = "12f8e7987cbd042a63249497f41aed09f8e65add917ea6566effbc56578d6801"
2020-05-21 13:28:07 +00:00
dependencies = [
2022-03-09 18:21:57 +00:00
"generic-array",
]
2022-06-11 09:08:53 +00:00
[[package]]
name = "cipher"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7ee52072ec15386f770805afd189a01c8841be8696bed250fa2f13c4c0d6dfb7"
dependencies = [
"generic-array",
]
2022-03-09 19:02:07 +00:00
[[package]]
name = "cipher"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d1873270f8f7942c191139cb8a40fd228da6c3fd2fc376d7e92d47aa14aeb59e"
dependencies = [
"crypto-common",
"inout",
]
2022-03-09 18:21:57 +00:00
[[package]]
name = "clang-sys"
2022-06-11 09:08:53 +00:00
version = "1.3.3"
2022-03-09 18:21:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-11 09:08:53 +00:00
checksum = "5a050e2153c5be08febd6734e29298e844fdb0fa21aeddd63b4eb7baa106c69b"
2022-03-09 18:21:57 +00:00
dependencies = [
"glob",
"libc",
"libloading",
]
[[package]]
name = "cmake"
version = "0.1.48"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e8ad8cef104ac57b68b89df3208164d228503abbdce70f6880ffa3d970e7443a"
dependencies = [
"cc",
2020-05-21 13:28:07 +00:00
]
2020-06-20 13:22:41 +00:00
[[package]]
name = "color_quant"
2021-02-19 15:31:45 +00:00
version = "1.1.0"
2020-06-20 13:22:41 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:31:45 +00:00
checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b"
2020-06-20 13:22:41 +00:00
2020-05-20 15:46:05 +00:00
[[package]]
name = "comunic_server"
version = "0.1.0"
2020-05-20 17:05:59 +00:00
dependencies = [
2021-02-05 12:21:10 +00:00
"actix",
"actix-files",
2021-10-23 14:32:03 +00:00
"actix-http",
2020-06-20 08:31:58 +00:00
"actix-multipart",
2020-05-21 13:28:07 +00:00
"actix-web",
2021-02-05 12:21:10 +00:00
"actix-web-actors",
2022-03-12 06:47:22 +00:00
"async-recursion",
2021-02-13 09:52:04 +00:00
"bcrypt",
2022-03-09 18:58:46 +00:00
"bytes",
2020-06-01 07:38:00 +00:00
"chrono",
2021-01-22 18:39:14 +00:00
"dashmap",
2020-05-23 07:37:21 +00:00
"encoding_rs",
"futures",
"gouth",
2020-06-20 13:22:41 +00:00
"image",
2020-06-22 08:35:39 +00:00
"kamadak-exif",
2020-06-23 16:55:23 +00:00
"lazy_static",
2020-05-23 15:09:28 +00:00
"mailchecker",
2020-07-08 09:03:17 +00:00
"mime_guess",
2021-03-06 08:35:36 +00:00
"mp3-metadata",
"mp4",
2020-05-21 07:21:58 +00:00
"mysql",
2020-07-08 15:14:55 +00:00
"pdf",
2020-05-23 07:37:21 +00:00
"percent-encoding",
2022-03-09 17:16:33 +00:00
"rand 0.8.5",
2021-01-20 17:31:01 +00:00
"regex",
2021-02-05 12:21:10 +00:00
"reqwest",
2020-05-21 13:28:07 +00:00
"serde",
2020-06-18 16:16:46 +00:00
"serde_json",
2022-03-09 18:58:46 +00:00
"sha1",
2022-03-12 07:02:58 +00:00
"tokio",
2022-03-09 17:45:34 +00:00
"url",
"webauthn-rs",
2021-04-08 14:45:29 +00:00
"webpage",
2021-02-11 17:29:29 +00:00
"webrtc-sdp",
2020-05-20 17:05:59 +00:00
"yaml-rust",
2021-03-06 08:35:36 +00:00
"zip",
2020-05-20 17:05:59 +00:00
]
2022-06-11 09:08:53 +00:00
[[package]]
name = "constant_time_eq"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc"
2021-05-29 15:10:46 +00:00
[[package]]
name = "convert_case"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e"
2020-05-21 07:21:58 +00:00
[[package]]
2021-02-19 15:44:50 +00:00
name = "cookie"
2022-03-09 18:58:46 +00:00
version = "0.16.0"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-09 18:58:46 +00:00
checksum = "94d4706de1b0fa5b132270cddffa8585166037822e260a944fe161acd137ca05"
2020-05-21 07:21:58 +00:00
dependencies = [
2021-02-19 15:44:50 +00:00
"percent-encoding",
2022-08-04 11:23:42 +00:00
"time 0.3.12",
2022-03-09 18:58:46 +00:00
"version_check",
2020-05-21 07:21:58 +00:00
]
[[package]]
name = "core-foundation"
2022-03-09 17:16:33 +00:00
version = "0.9.3"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-09 17:16:33 +00:00
checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146"
2020-05-21 07:21:58 +00:00
dependencies = [
"core-foundation-sys",
"libc",
]
[[package]]
name = "core-foundation-sys"
2021-12-28 10:27:26 +00:00
version = "0.8.3"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-28 10:27:26 +00:00
checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc"
2020-05-21 07:21:58 +00:00
2021-02-19 15:44:50 +00:00
[[package]]
2021-05-29 15:10:46 +00:00
name = "cpufeatures"
2022-06-11 09:08:53 +00:00
version = "0.2.2"
2021-02-19 15:44:50 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-11 09:08:53 +00:00
checksum = "59a6001667ab124aebae2a495118e11d30984c3a653e99d86d58971708cf5e4b"
2021-05-29 15:10:46 +00:00
dependencies = [
"libc",
]
2021-02-19 15:44:50 +00:00
2020-05-21 07:21:58 +00:00
[[package]]
name = "crc32fast"
2022-03-09 17:16:33 +00:00
version = "1.3.2"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-09 17:16:33 +00:00
checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d"
2020-05-21 07:21:58 +00:00
dependencies = [
2022-03-09 18:58:46 +00:00
"cfg-if",
2020-05-21 07:21:58 +00:00
]
2022-03-09 18:21:57 +00:00
[[package]]
name = "crossbeam"
2022-08-04 11:23:42 +00:00
version = "0.8.2"
2022-03-09 18:21:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-04 11:23:42 +00:00
checksum = "2801af0d36612ae591caa9568261fddce32ce6e08a7275ea334a06a4ad021a2c"
2022-03-09 18:21:57 +00:00
dependencies = [
2022-03-09 18:58:46 +00:00
"cfg-if",
"crossbeam-channel",
2022-03-09 18:21:57 +00:00
"crossbeam-deque",
"crossbeam-epoch",
"crossbeam-queue",
2022-03-09 18:58:46 +00:00
"crossbeam-utils",
2021-02-05 12:21:10 +00:00
]
2021-02-19 15:31:45 +00:00
[[package]]
name = "crossbeam-channel"
2022-08-04 11:23:42 +00:00
version = "0.5.6"
2021-02-19 15:31:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-04 11:23:42 +00:00
checksum = "c2dd04ddaf88237dc3b8d8f9a3c1004b506b54b3313403944054d23c0870c521"
2021-02-19 15:31:45 +00:00
dependencies = [
2022-03-09 18:58:46 +00:00
"cfg-if",
"crossbeam-utils",
2021-02-19 15:31:45 +00:00
]
2020-06-20 13:22:41 +00:00
[[package]]
name = "crossbeam-deque"
2022-08-04 11:23:42 +00:00
version = "0.8.2"
2020-06-20 13:22:41 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-04 11:23:42 +00:00
checksum = "715e8152b692bba2d374b53d4875445368fdf21a94751410af607a5ac677d1fc"
2020-06-20 13:22:41 +00:00
dependencies = [
2022-03-09 18:58:46 +00:00
"cfg-if",
2020-06-20 13:22:41 +00:00
"crossbeam-epoch",
2022-03-09 18:58:46 +00:00
"crossbeam-utils",
2020-06-20 13:22:41 +00:00
]
[[package]]
name = "crossbeam-epoch"
2022-08-04 11:23:42 +00:00
version = "0.9.10"
2020-06-20 13:22:41 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-04 11:23:42 +00:00
checksum = "045ebe27666471bb549370b4b0b3e51b07f56325befa4284db65fc89c02511b1"
2020-06-20 13:22:41 +00:00
dependencies = [
2022-06-11 09:08:53 +00:00
"autocfg",
2022-03-09 18:58:46 +00:00
"cfg-if",
"crossbeam-utils",
2020-06-20 13:22:41 +00:00
"memoffset",
2022-08-04 11:23:42 +00:00
"once_cell",
2020-06-20 13:22:41 +00:00
"scopeguard",
]
2022-03-09 18:21:57 +00:00
[[package]]
name = "crossbeam-queue"
2022-08-04 11:23:42 +00:00
version = "0.3.6"
2022-03-09 18:21:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-04 11:23:42 +00:00
checksum = "1cd42583b04998a5363558e5f9291ee5a5ff6b49944332103f251e7479a82aa7"
2022-03-09 18:21:57 +00:00
dependencies = [
2022-03-09 18:58:46 +00:00
"cfg-if",
"crossbeam-utils",
2020-06-20 13:22:41 +00:00
]
[[package]]
name = "crossbeam-utils"
2022-08-04 11:23:42 +00:00
version = "0.8.11"
2020-06-20 13:22:41 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-04 11:23:42 +00:00
checksum = "51887d4adc7b564537b15adcfb307936f8075dfcd5f00dde9a9f1d29383682bc"
2020-06-20 13:22:41 +00:00
dependencies = [
2022-03-09 18:58:46 +00:00
"cfg-if",
2022-08-04 11:23:42 +00:00
"once_cell",
2020-06-20 13:22:41 +00:00
]
2022-03-09 18:07:22 +00:00
[[package]]
name = "crypto-common"
2022-08-04 11:23:42 +00:00
version = "0.1.6"
2022-03-09 18:07:22 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-04 11:23:42 +00:00
checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
2022-03-09 18:07:22 +00:00
dependencies = [
2022-03-09 18:21:57 +00:00
"generic-array",
2022-03-09 18:07:22 +00:00
"typenum",
]
2021-04-08 14:45:29 +00:00
[[package]]
name = "curl"
2022-08-04 11:23:42 +00:00
version = "0.4.44"
2021-04-08 14:45:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-04 11:23:42 +00:00
checksum = "509bd11746c7ac09ebd19f0b17782eae80aadee26237658a6b4808afb5c11a22"
2021-04-08 14:45:29 +00:00
dependencies = [
"curl-sys",
"libc",
"openssl-probe",
"openssl-sys",
"schannel",
2022-03-09 18:58:46 +00:00
"socket2",
"winapi",
2021-04-08 14:45:29 +00:00
]
[[package]]
name = "curl-sys"
2022-08-04 11:23:42 +00:00
version = "0.4.56+curl-7.83.1"
2021-04-08 14:45:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-04 11:23:42 +00:00
checksum = "6093e169dd4de29e468fa649fbae11cdcd5551c81fe5bf1b0677adad7ef3d26f"
2021-04-08 14:45:29 +00:00
dependencies = [
"cc",
"libc",
"libz-sys",
"openssl-sys",
"pkg-config",
"vcpkg",
2022-03-09 18:58:46 +00:00
"winapi",
2021-04-08 14:45:29 +00:00
]
2021-01-22 18:39:14 +00:00
[[package]]
name = "dashmap"
2022-06-11 09:08:53 +00:00
version = "5.3.4"
2021-01-22 18:39:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-11 09:08:53 +00:00
checksum = "3495912c9c1ccf2e18976439f4443f3fee0fd61f424ff99fde6a66b15ecb448f"
2021-01-22 18:39:14 +00:00
dependencies = [
2022-03-09 18:58:46 +00:00
"cfg-if",
2022-08-04 11:23:42 +00:00
"hashbrown",
2022-06-11 09:08:53 +00:00
"lock_api",
"parking_lot_core",
2021-01-22 18:39:14 +00:00
]
2020-06-20 13:22:41 +00:00
[[package]]
name = "deflate"
2022-03-09 19:03:00 +00:00
version = "0.9.1"
2020-06-20 13:22:41 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-09 19:03:00 +00:00
checksum = "5f95bf05dffba6e6cce8dfbb30def788154949ccd9aed761b472119c21e01c70"
2020-06-20 13:22:41 +00:00
dependencies = [
"adler32",
]
2021-05-29 15:10:46 +00:00
[[package]]
name = "deflate"
2022-03-09 19:03:00 +00:00
version = "1.0.0"
2021-05-29 15:10:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-09 19:03:00 +00:00
checksum = "c86f7e25f518f4b81808a2cf1c50996a61f5c2eb394b2393bd87f2a4780a432f"
2021-05-29 15:10:46 +00:00
dependencies = [
"adler32",
]
2020-05-21 13:28:07 +00:00
[[package]]
name = "derive_more"
2021-12-28 10:27:26 +00:00
version = "0.99.17"
2020-05-21 13:28:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-28 10:27:26 +00:00
checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321"
2020-05-21 13:28:07 +00:00
dependencies = [
2021-05-29 15:10:46 +00:00
"convert_case",
2021-12-28 10:27:26 +00:00
"proc-macro2",
"quote",
2022-03-09 18:58:46 +00:00
"rustc_version",
2021-12-28 10:27:26 +00:00
"syn",
2020-05-21 13:28:07 +00:00
]
2020-05-21 07:21:58 +00:00
[[package]]
name = "derive_utils"
2021-02-19 15:31:45 +00:00
version = "0.11.2"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:31:45 +00:00
checksum = "532b4c15dccee12c7044f1fcad956e98410860b22231e44a3b827464797ca7bf"
2020-05-21 07:21:58 +00:00
dependencies = [
2021-12-28 10:27:26 +00:00
"proc-macro2",
"quote",
"syn",
2020-05-21 07:21:58 +00:00
]
2020-05-21 13:28:07 +00:00
[[package]]
2021-02-19 15:44:50 +00:00
name = "digest"
version = "0.9.0"
2020-07-08 15:14:55 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:44:50 +00:00
checksum = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066"
2020-07-08 15:14:55 +00:00
dependencies = [
2022-03-09 18:21:57 +00:00
"generic-array",
2020-07-08 15:14:55 +00:00
]
2022-03-09 18:07:22 +00:00
[[package]]
name = "digest"
version = "0.10.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f2fb860ca6fafa5552fb6d0e816a69c8e49f0908bf524e30a90d97c85892d506"
dependencies = [
"block-buffer 0.10.2",
"crypto-common",
2022-06-11 09:08:53 +00:00
"subtle",
2022-03-09 18:07:22 +00:00
]
2020-07-08 15:14:55 +00:00
[[package]]
2021-02-19 15:44:50 +00:00
name = "doc-comment"
version = "0.3.3"
2020-07-08 15:14:55 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:44:50 +00:00
checksum = "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10"
2020-07-08 15:14:55 +00:00
[[package]]
name = "dtoa"
version = "0.4.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "56899898ce76aaf4a0f24d914c97ea6ed976d42fec6ad33fcbb0a1103e07b2b0"
2020-07-08 15:14:55 +00:00
[[package]]
2021-02-19 15:44:50 +00:00
name = "either"
2022-08-04 11:23:42 +00:00
version = "1.7.0"
2020-07-08 15:14:55 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-04 11:23:42 +00:00
checksum = "3f107b87b6afc2a64fd13cac55fe06d6c8859f12d4b14cbcdd2c67d0976781be"
2020-07-08 15:14:55 +00:00
2020-05-21 13:28:07 +00:00
[[package]]
name = "encoding_rs"
2022-06-11 09:08:53 +00:00
version = "0.8.31"
2020-05-21 13:28:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-11 09:08:53 +00:00
checksum = "9852635589dc9f9ea1b6fe9f05b50ef208c85c834a562f0c6abb1c475736ec2b"
2020-05-21 13:28:07 +00:00
dependencies = [
2022-03-09 18:58:46 +00:00
"cfg-if",
2020-07-08 15:14:55 +00:00
]
2022-03-09 19:03:00 +00:00
[[package]]
name = "exr"
2022-06-11 09:08:53 +00:00
version = "1.4.2"
2022-03-09 19:03:00 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-11 09:08:53 +00:00
checksum = "14cc0e06fb5f67e5d6beadf3a382fec9baca1aa751c6d5368fdeee7e5932c215"
2022-03-09 19:03:00 +00:00
dependencies = [
"bit_field",
"deflate 1.0.0",
"flume",
"half",
"inflate",
"lebe",
"smallvec",
"threadpool",
]
2020-05-23 15:09:28 +00:00
[[package]]
name = "fast_chemail"
version = "0.9.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "495a39d30d624c2caabe6312bfead73e7717692b44e0b32df168c275a2e8e9e4"
dependencies = [
"ascii_utils",
]
2022-03-09 17:16:33 +00:00
[[package]]
name = "fastrand"
2022-08-04 11:23:42 +00:00
version = "1.8.0"
2022-03-09 17:16:33 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-04 11:23:42 +00:00
checksum = "a7a407cfaa3385c4ae6b23e84623d48c2798d06e3e6a1878f7f59f17b3f86499"
2022-03-09 17:16:33 +00:00
dependencies = [
"instant",
]
2021-05-29 15:10:46 +00:00
[[package]]
name = "fax"
2022-03-09 17:16:33 +00:00
version = "0.1.1"
2021-05-29 15:10:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-09 17:16:33 +00:00
checksum = "be28317220fbcf14cead021ae0a973a4433df68fd3c3a022bf8a4fb3bdc3ba8e"
2021-05-29 15:10:46 +00:00
dependencies = [
"fax_derive",
]
[[package]]
name = "fax_derive"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3c1d7ffc9f2dc8316348c75281a99c8fdc60c1ddf4f82a366d117bf1b74d5a39"
dependencies = [
2021-12-28 10:27:26 +00:00
"proc-macro2",
"quote",
"syn",
2021-05-29 15:10:46 +00:00
]
2022-03-09 18:58:46 +00:00
[[package]]
name = "firestorm"
2022-06-11 09:08:53 +00:00
version = "0.5.1"
2022-03-09 18:58:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-11 09:08:53 +00:00
checksum = "2c5f6c2c942da57e2aaaa84b8a521489486f14e75e7fa91dab70aba913975f98"
2022-03-09 18:58:46 +00:00
2020-05-21 07:21:58 +00:00
[[package]]
name = "flate2"
2022-06-11 09:08:53 +00:00
version = "1.0.24"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-11 09:08:53 +00:00
checksum = "f82b0f4c27ad9f8bfd1f3208d882da2b09c301bc1c828fd3a00d0216d2fbbff6"
2020-05-21 07:21:58 +00:00
dependencies = [
"crc32fast",
"libz-sys",
2022-06-11 09:08:53 +00:00
"miniz_oxide",
2020-05-21 07:21:58 +00:00
]
2022-03-09 19:03:00 +00:00
[[package]]
name = "flume"
2022-08-04 11:23:42 +00:00
version = "0.10.14"
2022-03-09 19:03:00 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-04 11:23:42 +00:00
checksum = "1657b4441c3403d9f7b3409e47575237dac27b1b5726df654a6ecbf92f0f7577"
2022-03-09 19:03:00 +00:00
dependencies = [
"futures-core",
"futures-sink",
"nanorand",
"pin-project",
2022-08-04 11:23:42 +00:00
"spin 0.9.4",
2022-03-09 19:03:00 +00:00
]
2020-05-21 13:28:07 +00:00
[[package]]
name = "fnv"
version = "1.0.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
2020-05-21 07:21:58 +00:00
[[package]]
name = "foreign-types"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
dependencies = [
"foreign-types-shared",
]
[[package]]
name = "foreign-types-shared"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
2021-02-19 15:31:45 +00:00
[[package]]
name = "form_urlencoded"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5fc25a87fa4fd2094bffb06925852034d90a17f0d1e05197d4956d3555752191"
dependencies = [
"matches",
"percent-encoding",
]
2022-03-09 18:21:57 +00:00
[[package]]
name = "frunk"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0cd67cf7d54b7e72d0ea76f3985c3747d74aee43e0218ad993b7903ba7a5395e"
dependencies = [
"frunk_core",
"frunk_derives",
"frunk_proc_macros",
]
[[package]]
name = "frunk_core"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1246cf43ec80bf8b2505b5c360b8fb999c97dabd17dbb604d85558d5cbc25482"
[[package]]
name = "frunk_derives"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3dbc4f084ec5a3f031d24ccedeb87ab2c3189a2f33b8d070889073837d5ea09e"
dependencies = [
"frunk_proc_macro_helpers",
"quote",
"syn",
]
[[package]]
name = "frunk_proc_macro_helpers"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "99f11257f106c6753f5ffcb8e601fb39c390a088017aaa55b70c526bff15f63e"
dependencies = [
"frunk_core",
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "frunk_proc_macros"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a078bd8459eccbb85e0b007b8f756585762a72a9efc53f359b371c3b6351dbcc"
dependencies = [
"frunk_core",
"frunk_proc_macros_impl",
"proc-macro-hack",
]
[[package]]
name = "frunk_proc_macros_impl"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6ffba99f0fa4f57e42f57388fbb9a0ca863bc2b4261f3c5570fed579d5df6c32"
dependencies = [
"frunk_core",
"frunk_proc_macro_helpers",
"proc-macro-hack",
"quote",
"syn",
]
[[package]]
name = "funty"
version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1847abb9cb65d566acd5942e94aea9c8f547ad02c98e1649326fc0e8910b8b1e"
2021-04-08 14:45:29 +00:00
[[package]]
name = "futf"
2022-03-09 17:16:33 +00:00
version = "0.1.5"
2021-04-08 14:45:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-09 17:16:33 +00:00
checksum = "df420e2e84819663797d1ec6544b13c5be84629e7bb00dc960d6917db2987843"
2021-04-08 14:45:29 +00:00
dependencies = [
"mac",
"new_debug_unreachable",
]
2020-05-21 13:28:07 +00:00
[[package]]
name = "futures"
2022-03-09 17:16:33 +00:00
version = "0.3.21"
2020-05-21 13:28:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-09 17:16:33 +00:00
checksum = "f73fe65f54d1e12b726f517d3e2135ca3125a437b6d998caf1962961f7172d9e"
2020-05-21 13:28:07 +00:00
dependencies = [
"futures-channel",
"futures-core",
"futures-executor",
"futures-io",
"futures-sink",
"futures-task",
"futures-util",
]
[[package]]
name = "futures-channel"
2022-03-09 17:16:33 +00:00
version = "0.3.21"
2020-05-21 13:28:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-09 17:16:33 +00:00
checksum = "c3083ce4b914124575708913bca19bfe887522d6e2e6d0952943f5eac4a74010"
2020-05-21 13:28:07 +00:00
dependencies = [
"futures-core",
"futures-sink",
]
[[package]]
name = "futures-core"
2022-03-09 17:16:33 +00:00
version = "0.3.21"
2020-05-21 13:28:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-09 17:16:33 +00:00
checksum = "0c09fd04b7e4073ac7156a9539b57a484a8ea920f79c7c675d05d289ab6110d3"
2020-05-21 13:28:07 +00:00
[[package]]
name = "futures-executor"
2022-03-09 17:16:33 +00:00
version = "0.3.21"
2020-05-21 13:28:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-09 17:16:33 +00:00
checksum = "9420b90cfa29e327d0429f19be13e7ddb68fa1cccb09d65e5706b8c7a749b8a6"
2020-05-21 13:28:07 +00:00
dependencies = [
"futures-core",
"futures-task",
"futures-util",
]
[[package]]
name = "futures-io"
2022-03-09 17:16:33 +00:00
version = "0.3.21"
2020-05-21 13:28:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-09 17:16:33 +00:00
checksum = "fc4045962a5a5e935ee2fdedaa4e08284547402885ab326734432bed5d12966b"
2020-05-21 13:28:07 +00:00
[[package]]
name = "futures-macro"
2022-03-09 17:16:33 +00:00
version = "0.3.21"
2020-05-21 13:28:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-09 17:16:33 +00:00
checksum = "33c1e13800337f4d4d7a316bf45a567dbcb6ffe087f16424852d97e97a91f512"
2020-05-21 13:28:07 +00:00
dependencies = [
2021-12-28 10:27:26 +00:00
"proc-macro2",
"quote",
"syn",
2020-05-21 13:28:07 +00:00
]
[[package]]
name = "futures-sink"
2022-03-09 17:16:33 +00:00
version = "0.3.21"
2020-05-21 13:28:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-09 17:16:33 +00:00
checksum = "21163e139fa306126e6eedaf49ecdb4588f939600f0b1e770f4205ee4b7fa868"
2020-05-21 13:28:07 +00:00
[[package]]
name = "futures-task"
2022-03-09 17:16:33 +00:00
version = "0.3.21"
2020-05-21 13:28:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-09 17:16:33 +00:00
checksum = "57c66a976bf5909d801bbef33416c41372779507e7a6b3a5e25e4749c58f776a"
2020-05-21 13:28:07 +00:00
[[package]]
name = "futures-util"
2022-03-09 17:16:33 +00:00
version = "0.3.21"
2020-05-21 13:28:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-09 17:16:33 +00:00
checksum = "d8b7abd5d659d9b90c8cba917f6ec750a74e2dc23902ef9cd4cc8c8b22e6036a"
2020-05-21 13:28:07 +00:00
dependencies = [
"futures-channel",
"futures-core",
"futures-io",
"futures-macro",
"futures-sink",
"futures-task",
"memchr",
2022-03-09 18:58:46 +00:00
"pin-project-lite",
2020-05-21 13:28:07 +00:00
"pin-utils",
"slab",
]
[[package]]
name = "gcemeta"
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "64b740806c16b381ca8d78cb3869fb47ce5b490db28c5f19bc0336a9b9aaca6e"
dependencies = [
"attohttpc 0.15.0",
"lazy_static",
"serde_json",
]
2021-02-13 09:52:04 +00:00
[[package]]
name = "generic-array"
2022-03-09 17:16:33 +00:00
version = "0.14.5"
2021-02-13 09:52:04 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-09 17:16:33 +00:00
checksum = "fd48d33ec7f05fbfa152300fdad764757cbded343c1aa1cff2fbaf4134851803"
2021-02-13 09:52:04 +00:00
dependencies = [
"typenum",
2022-03-09 18:58:46 +00:00
"version_check",
2021-02-13 09:52:04 +00:00
]
2020-05-21 07:21:58 +00:00
[[package]]
name = "getrandom"
2021-02-19 15:31:45 +00:00
version = "0.1.16"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:31:45 +00:00
checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce"
2020-05-21 07:21:58 +00:00
dependencies = [
2022-03-09 18:58:46 +00:00
"cfg-if",
2020-05-21 07:21:58 +00:00
"libc",
2021-02-19 15:31:45 +00:00
"wasi 0.9.0+wasi-snapshot-preview1",
]
[[package]]
name = "getrandom"
2022-08-04 11:23:42 +00:00
version = "0.2.7"
2021-02-19 15:31:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-04 11:23:42 +00:00
checksum = "4eb1a864a501629691edf6c15a593b7a51eebaa1e8468e9ddc623de7c9b58ec6"
2021-02-19 15:31:45 +00:00
dependencies = [
2022-03-09 18:58:46 +00:00
"cfg-if",
2022-03-09 19:03:00 +00:00
"js-sys",
2021-02-19 15:31:45 +00:00
"libc",
2022-08-04 11:23:42 +00:00
"wasi 0.11.0+wasi-snapshot-preview1",
2022-03-09 19:03:00 +00:00
"wasm-bindgen",
2020-05-21 07:21:58 +00:00
]
2020-06-20 13:22:41 +00:00
[[package]]
name = "gif"
2022-08-04 11:23:42 +00:00
version = "0.11.4"
2020-06-20 13:22:41 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-04 11:23:42 +00:00
checksum = "3edd93c6756b4dfaf2709eafcc345ba2636565295c198a9cfbf75fa5e3e00b06"
2020-06-20 13:22:41 +00:00
dependencies = [
"color_quant",
2021-02-19 15:31:45 +00:00
"weezl",
2020-06-20 13:22:41 +00:00
]
2020-07-08 15:14:55 +00:00
[[package]]
name = "glob"
2021-02-19 15:44:50 +00:00
version = "0.3.0"
2020-07-08 15:14:55 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:44:50 +00:00
checksum = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574"
2020-07-08 15:14:55 +00:00
[[package]]
name = "gouth"
2021-05-29 15:10:46 +00:00
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "c138d157085ba4eb1aaa86e622dc348b956d5ac9d2e446b65941467ebffefdd6"
dependencies = [
2021-05-29 15:10:46 +00:00
"attohttpc 0.17.0",
"gcemeta",
"jsonwebtoken",
"serde",
"serde_json",
"url",
]
2020-05-21 13:28:07 +00:00
[[package]]
2021-02-19 15:44:50 +00:00
name = "h2"
2022-06-11 09:08:53 +00:00
version = "0.3.13"
2020-05-21 13:28:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-11 09:08:53 +00:00
checksum = "37a82c6d637fc9515a4694bbf1cb2457b79d81ce52b3108bdeea58b07dd34a57"
2020-05-21 13:28:07 +00:00
dependencies = [
2022-03-09 18:58:46 +00:00
"bytes",
2021-02-19 15:44:50 +00:00
"fnv",
"futures-core",
"futures-sink",
"futures-util",
"http",
"indexmap",
"slab",
2022-03-09 18:58:46 +00:00
"tokio",
2022-06-11 09:08:53 +00:00
"tokio-util",
2021-02-19 15:44:50 +00:00
"tracing",
2020-05-21 13:28:07 +00:00
]
[[package]]
name = "half"
2021-12-28 10:27:26 +00:00
version = "1.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-28 10:27:26 +00:00
checksum = "eabb4a44450da02c90444cf74558da904edde8fb4e9035a9a6a4e15445af0bd7"
2021-02-19 15:31:45 +00:00
[[package]]
name = "hashbrown"
2022-08-04 11:23:42 +00:00
version = "0.12.3"
2021-02-19 15:31:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-04 11:23:42 +00:00
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
2021-02-19 15:44:50 +00:00
dependencies = [
"ahash",
]
2021-02-19 15:31:45 +00:00
2020-05-21 13:28:07 +00:00
[[package]]
name = "hermit-abi"
2021-12-28 10:27:26 +00:00
version = "0.1.19"
2020-05-21 13:28:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-28 10:27:26 +00:00
checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
2020-05-21 13:28:07 +00:00
dependencies = [
"libc",
]
2022-06-11 09:08:53 +00:00
[[package]]
name = "hmac"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
dependencies = [
"digest 0.10.3",
]
2021-04-08 14:45:29 +00:00
[[package]]
name = "html5ever"
2022-06-11 09:08:53 +00:00
version = "0.25.2"
2021-04-08 14:45:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-11 09:08:53 +00:00
checksum = "e5c13fb08e5d4dfc151ee5e88bae63f7773d61852f3bdc73c9f4b9e1bde03148"
2021-04-08 14:45:29 +00:00
dependencies = [
"log",
"mac",
"markup5ever",
2021-12-28 10:27:26 +00:00
"proc-macro2",
"quote",
"syn",
2021-04-08 14:45:29 +00:00
]
2020-05-21 13:28:07 +00:00
[[package]]
name = "http"
2022-06-11 09:08:53 +00:00
version = "0.2.8"
2020-05-21 13:28:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-11 09:08:53 +00:00
checksum = "75f43d41e26995c17e71ee126451dd3941010b0514a81a9d11f3b341debc2399"
2020-05-21 13:28:07 +00:00
dependencies = [
2022-03-09 18:58:46 +00:00
"bytes",
2020-05-21 13:28:07 +00:00
"fnv",
2022-06-11 09:08:53 +00:00
"itoa 1.0.2",
2020-05-21 13:28:07 +00:00
]
2021-02-05 12:21:10 +00:00
[[package]]
name = "http-body"
2022-06-11 09:08:53 +00:00
version = "0.4.5"
2021-02-05 12:21:10 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-11 09:08:53 +00:00
checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1"
2021-02-05 12:21:10 +00:00
dependencies = [
2022-03-09 18:58:46 +00:00
"bytes",
2021-02-05 12:21:10 +00:00
"http",
2022-03-09 18:58:46 +00:00
"pin-project-lite",
2021-02-05 12:21:10 +00:00
]
2022-03-09 18:58:46 +00:00
[[package]]
name = "http-range"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "21dec9db110f5f872ed9699c3ecf50cf16f423502706ba5c72462e28d3157573"
2020-05-21 13:28:07 +00:00
[[package]]
name = "httparse"
2022-06-11 09:08:53 +00:00
version = "1.7.1"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-11 09:08:53 +00:00
checksum = "496ce29bb5a52785b44e0f7ca2847ae0bb839c9bd28f69acac9b99d461c0c04c"
2020-05-21 07:21:58 +00:00
2021-02-05 12:21:10 +00:00
[[package]]
name = "httpdate"
2021-12-28 10:27:26 +00:00
version = "1.0.2"
2021-02-05 12:21:10 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-28 10:27:26 +00:00
checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421"
2021-02-05 12:21:10 +00:00
[[package]]
name = "hyper"
2022-08-04 11:23:42 +00:00
version = "0.14.20"
2021-02-05 12:21:10 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-04 11:23:42 +00:00
checksum = "02c929dc5c39e335a03c405292728118860721b10190d98c2a0f0efd5baafbac"
2021-02-05 12:21:10 +00:00
dependencies = [
2022-03-09 18:58:46 +00:00
"bytes",
2021-02-05 12:21:10 +00:00
"futures-channel",
"futures-core",
"futures-util",
2022-03-09 18:58:46 +00:00
"h2",
2021-02-05 12:21:10 +00:00
"http",
"http-body",
"httparse",
"httpdate",
2022-06-11 09:08:53 +00:00
"itoa 1.0.2",
2022-03-09 18:58:46 +00:00
"pin-project-lite",
"socket2",
"tokio",
2021-02-05 12:21:10 +00:00
"tower-service",
"tracing",
"want",
]
[[package]]
name = "hyper-tls"
2021-02-19 15:44:50 +00:00
version = "0.5.0"
2021-02-05 12:21:10 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:44:50 +00:00
checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905"
2021-02-05 12:21:10 +00:00
dependencies = [
2022-03-09 18:58:46 +00:00
"bytes",
2021-02-05 12:21:10 +00:00
"hyper",
"native-tls",
2022-03-09 18:58:46 +00:00
"tokio",
2021-02-19 15:44:50 +00:00
"tokio-native-tls",
2021-02-05 12:21:10 +00:00
]
2020-05-21 07:21:58 +00:00
[[package]]
name = "idna"
2021-05-29 15:10:46 +00:00
version = "0.2.3"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "418a0a6fab821475f634efe3ccc45c013f742efe03d853e8d3355d5cb850ecf8"
2020-05-21 07:21:58 +00:00
dependencies = [
"matches",
"unicode-bidi",
"unicode-normalization",
]
2020-06-20 13:22:41 +00:00
[[package]]
name = "image"
2022-08-04 11:23:42 +00:00
version = "0.24.3"
2020-06-20 13:22:41 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-04 11:23:42 +00:00
checksum = "7e30ca2ecf7666107ff827a8e481de6a132a9b687ed3bb20bb1c144a36c00964"
2020-06-20 13:22:41 +00:00
dependencies = [
"bytemuck",
"byteorder",
2021-02-19 15:31:45 +00:00
"color_quant",
2022-03-09 19:03:00 +00:00
"exr",
2020-06-20 13:22:41 +00:00
"gif",
2022-06-11 09:08:53 +00:00
"jpeg-decoder 0.2.6",
2022-03-09 19:03:00 +00:00
"num-rational",
2021-02-19 15:44:50 +00:00
"num-traits",
2020-06-20 13:22:41 +00:00
"png",
"scoped_threadpool",
"tiff",
]
2020-05-21 13:28:07 +00:00
[[package]]
name = "indexmap"
2022-08-04 11:23:42 +00:00
version = "1.9.1"
2020-05-21 13:28:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-04 11:23:42 +00:00
checksum = "10a35a97730320ffe8e2d410b5d3b69279b98d2c14bdb8b70ea89ecf7888d41e"
2020-05-21 13:28:07 +00:00
dependencies = [
2021-12-28 10:27:26 +00:00
"autocfg",
2022-08-04 11:23:42 +00:00
"hashbrown",
2020-05-21 13:28:07 +00:00
]
2020-07-08 15:14:55 +00:00
[[package]]
name = "inflate"
2021-02-19 15:44:50 +00:00
version = "0.4.5"
2020-07-08 15:14:55 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:44:50 +00:00
checksum = "1cdb29978cc5797bd8dcc8e5bf7de604891df2a8dc576973d71a281e916db2ff"
dependencies = [
"adler32",
]
2020-07-08 15:14:55 +00:00
2022-03-09 19:02:07 +00:00
[[package]]
name = "inout"
2022-06-11 09:08:53 +00:00
version = "0.1.3"
2022-03-09 19:02:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-11 09:08:53 +00:00
checksum = "a0c10553d664a4d0bcff9f4215d0aac67a639cc68ef660840afe309b807bc9f5"
2022-03-09 19:02:07 +00:00
dependencies = [
"generic-array",
]
2021-02-19 15:31:45 +00:00
[[package]]
name = "instant"
2021-12-28 10:27:26 +00:00
version = "0.1.12"
2021-02-19 15:31:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-28 10:27:26 +00:00
checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
2021-02-19 15:31:45 +00:00
dependencies = [
2022-03-09 18:58:46 +00:00
"cfg-if",
2021-02-19 15:31:45 +00:00
]
2020-05-21 07:21:58 +00:00
[[package]]
name = "io-enum"
2022-03-09 18:21:57 +00:00
version = "1.0.1"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-09 18:21:57 +00:00
checksum = "03e3306b0f260aad2872563eb0d5d1a59f2420fad270a661dce59a01e92d806b"
2020-05-21 07:21:58 +00:00
dependencies = [
2021-12-28 10:27:26 +00:00
"autocfg",
2020-05-21 07:21:58 +00:00
"derive_utils",
2021-12-28 10:27:26 +00:00
"quote",
"syn",
2020-05-21 07:21:58 +00:00
]
2021-02-05 12:21:10 +00:00
[[package]]
name = "ipnet"
2022-06-11 09:08:53 +00:00
version = "2.5.0"
2021-02-05 12:21:10 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-11 09:08:53 +00:00
checksum = "879d54834c8c76457ef4293a689b2a8c59b076067ad77b15efafbb05f92a592b"
2021-02-05 12:21:10 +00:00
2020-07-08 15:14:55 +00:00
[[package]]
name = "itertools"
2021-12-28 10:27:26 +00:00
version = "0.10.3"
2020-07-08 15:14:55 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-28 10:27:26 +00:00
checksum = "a9a9d19fa1e79b6215ff29b9d6880b706147f16e9b1dbb1e4e5947b5b02bc5e3"
2020-07-08 15:14:55 +00:00
dependencies = [
"either",
]
2020-05-21 07:21:58 +00:00
[[package]]
name = "itoa"
2021-12-28 10:27:26 +00:00
version = "0.4.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4"
[[package]]
name = "itoa"
2022-06-11 09:08:53 +00:00
version = "1.0.2"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-11 09:08:53 +00:00
checksum = "112c678d4050afce233f4f2852bb2eb519230b3cf12f33585275537d7e41578d"
2020-05-21 07:21:58 +00:00
2022-03-09 18:58:46 +00:00
[[package]]
name = "jobserver"
version = "0.1.24"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "af25a77299a7f711a01975c35a6a424eb6862092cc2d6c72c4ed6cbc56dfc1fa"
dependencies = [
"libc",
]
2020-06-20 13:22:41 +00:00
[[package]]
name = "jpeg-decoder"
2021-02-19 15:31:45 +00:00
version = "0.1.22"
2020-06-20 13:22:41 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:31:45 +00:00
checksum = "229d53d58899083193af11e15917b5640cd40b29ff475a1fe4ef725deb02d0f2"
2022-03-09 19:03:00 +00:00
[[package]]
name = "jpeg-decoder"
2022-06-11 09:08:53 +00:00
version = "0.2.6"
2022-03-09 19:03:00 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-11 09:08:53 +00:00
checksum = "9478aa10f73e7528198d75109c8be5cd7d15fb530238040148d5f9a22d4c5b3b"
2020-06-20 13:22:41 +00:00
dependencies = [
"rayon",
]
2021-02-05 12:21:10 +00:00
[[package]]
name = "js-sys"
2022-08-04 11:23:42 +00:00
version = "0.3.59"
2021-02-05 12:21:10 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-04 11:23:42 +00:00
checksum = "258451ab10b34f8af53416d1fdab72c22e805f0c92a1136d59470ec0b11138b2"
2021-02-05 12:21:10 +00:00
dependencies = [
"wasm-bindgen",
]
[[package]]
name = "jsonwebtoken"
version = "7.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "afabcc15e437a6484fc4f12d0fd63068fe457bf93f1c148d3d9649c60b103f32"
dependencies = [
"base64 0.12.3",
2022-03-09 18:21:57 +00:00
"pem 0.8.3",
"ring",
"serde",
"serde_json",
"simple_asn1",
]
2020-06-22 08:35:39 +00:00
[[package]]
name = "kamadak-exif"
2021-05-29 15:10:46 +00:00
version = "0.5.4"
2020-06-22 08:35:39 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "70494964492bf8e491eb3951c5d70c9627eb7100ede6cc56d748b9a3f302cfb6"
2020-06-22 08:35:39 +00:00
dependencies = [
"mutate_once",
]
2020-05-21 13:28:07 +00:00
[[package]]
name = "language-tags"
2022-03-09 18:58:46 +00:00
version = "0.3.2"
2020-05-21 13:28:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-09 18:58:46 +00:00
checksum = "d4345964bb142484797b161f473a503a434de77149dd8c7427788c6e13379388"
2020-05-21 13:28:07 +00:00
2020-05-21 07:21:58 +00:00
[[package]]
name = "lazy_static"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
2022-03-09 18:21:57 +00:00
[[package]]
name = "lazycell"
version = "1.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
2022-03-09 19:03:00 +00:00
[[package]]
name = "lebe"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7efd1d698db0759e6ef11a7cd44407407399a910c774dd804c64c032da7826ff"
2020-05-21 07:21:58 +00:00
[[package]]
name = "lexical"
2022-06-11 09:08:53 +00:00
version = "6.1.1"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-11 09:08:53 +00:00
checksum = "c7aefb36fd43fef7003334742cbf77b243fcd36418a1d1bdd480d613a67968f6"
2020-05-21 07:21:58 +00:00
dependencies = [
"lexical-core",
]
[[package]]
name = "lexical-core"
2022-06-11 09:08:53 +00:00
version = "0.8.5"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-11 09:08:53 +00:00
checksum = "2cde5de06e8d4c2faabc400238f9ae1c74d5412d03a7bd067645ccbc47070e46"
2020-05-21 07:21:58 +00:00
dependencies = [
2022-03-09 18:21:57 +00:00
"lexical-parse-float",
"lexical-parse-integer",
"lexical-util",
"lexical-write-float",
"lexical-write-integer",
]
[[package]]
name = "lexical-parse-float"
2022-06-11 09:08:53 +00:00
version = "0.8.5"
2022-03-09 18:21:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-11 09:08:53 +00:00
checksum = "683b3a5ebd0130b8fb52ba0bdc718cc56815b6a097e28ae5a6997d0ad17dc05f"
2022-03-09 18:21:57 +00:00
dependencies = [
"lexical-parse-integer",
"lexical-util",
"static_assertions",
]
[[package]]
name = "lexical-parse-integer"
2022-06-11 09:08:53 +00:00
version = "0.8.6"
2022-03-09 18:21:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-11 09:08:53 +00:00
checksum = "6d0994485ed0c312f6d965766754ea177d07f9c00c9b82a5ee62ed5b47945ee9"
2022-03-09 18:21:57 +00:00
dependencies = [
"lexical-util",
"static_assertions",
]
[[package]]
name = "lexical-util"
2022-06-11 09:08:53 +00:00
version = "0.8.5"
2022-03-09 18:21:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-11 09:08:53 +00:00
checksum = "5255b9ff16ff898710eb9eb63cb39248ea8a5bb036bea8085b1a767ff6c4e3fc"
2022-03-09 18:21:57 +00:00
dependencies = [
"static_assertions",
]
[[package]]
name = "lexical-write-float"
2022-06-11 09:08:53 +00:00
version = "0.8.5"
2022-03-09 18:21:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-11 09:08:53 +00:00
checksum = "accabaa1c4581f05a3923d1b4cfd124c329352288b7b9da09e766b0668116862"
2022-03-09 18:21:57 +00:00
dependencies = [
"lexical-util",
"lexical-write-integer",
"static_assertions",
]
[[package]]
name = "lexical-write-integer"
2022-06-11 09:08:53 +00:00
version = "0.8.5"
2022-03-09 18:21:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-11 09:08:53 +00:00
checksum = "e1b6f3d1f4422866b68192d62f77bc5c700bee84f3069f2469d7bc8c77852446"
2022-03-09 18:21:57 +00:00
dependencies = [
"lexical-util",
2021-02-19 15:44:50 +00:00
"static_assertions",
2020-05-21 07:21:58 +00:00
]
[[package]]
name = "libc"
2022-06-11 09:08:53 +00:00
version = "0.2.126"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-11 09:08:53 +00:00
checksum = "349d5a591cd28b49e1d1037471617a32ddcda5731b99419008085f72d5a53836"
2020-05-21 07:21:58 +00:00
2022-03-09 18:21:57 +00:00
[[package]]
name = "libloading"
version = "0.7.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "efbc0f03f9a775e9f6aed295c6a1ba2253c5757a9e03d55c6caa46a681abcddd"
dependencies = [
2022-03-09 18:58:46 +00:00
"cfg-if",
"winapi",
2022-03-09 18:21:57 +00:00
]
2020-05-21 07:21:58 +00:00
[[package]]
name = "libz-sys"
2022-06-11 09:08:53 +00:00
version = "1.1.8"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-11 09:08:53 +00:00
checksum = "9702761c3935f8cc2f101793272e202c72b99da8f4224a19ddcf1279a6450bbf"
2020-05-21 07:21:58 +00:00
dependencies = [
"cc",
2021-03-06 08:35:36 +00:00
"libc",
2020-05-21 07:21:58 +00:00
"pkg-config",
"vcpkg",
]
2020-05-20 17:05:59 +00:00
[[package]]
name = "linked-hash-map"
2022-08-04 11:23:42 +00:00
version = "0.5.6"
2020-05-20 17:05:59 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-04 11:23:42 +00:00
checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f"
2020-05-21 13:28:07 +00:00
2022-03-09 18:58:46 +00:00
[[package]]
name = "local-channel"
2022-06-11 09:08:53 +00:00
version = "0.1.3"
2022-03-09 18:58:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-11 09:08:53 +00:00
checksum = "7f303ec0e94c6c54447f84f3b0ef7af769858a9c4ef56ef2a986d3dcd4c3fc9c"
2022-03-09 18:58:46 +00:00
dependencies = [
"futures-core",
"futures-sink",
"futures-util",
"local-waker",
]
[[package]]
name = "local-waker"
2022-06-11 09:08:53 +00:00
version = "0.1.3"
2022-03-09 18:58:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-11 09:08:53 +00:00
checksum = "e34f76eb3611940e0e7d53a9aaa4e6a3151f69541a282fd0dad5571420c53ff1"
2022-03-09 18:58:46 +00:00
2021-02-19 15:31:45 +00:00
[[package]]
name = "lock_api"
2022-06-11 09:08:53 +00:00
version = "0.4.7"
2021-02-19 15:31:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-11 09:08:53 +00:00
checksum = "327fa5b6a6940e4699ec49a9beae1ea4845c6bab9314e4f84ac68742139d8c53"
2021-02-19 15:31:45 +00:00
dependencies = [
2022-06-11 09:08:53 +00:00
"autocfg",
2021-02-19 15:31:45 +00:00
"scopeguard",
]
2020-05-21 07:21:58 +00:00
[[package]]
name = "log"
2022-06-11 09:08:53 +00:00
version = "0.4.17"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-11 09:08:53 +00:00
checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
2020-05-21 07:21:58 +00:00
dependencies = [
2022-03-09 18:58:46 +00:00
"cfg-if",
2020-05-21 07:21:58 +00:00
]
[[package]]
name = "lru"
2022-08-04 11:23:42 +00:00
version = "0.7.8"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-04 11:23:42 +00:00
checksum = "e999beba7b6e8345721bd280141ed958096a2e4abdf74f67ff4ce49b4b54e47a"
2020-05-21 07:21:58 +00:00
dependencies = [
2022-08-04 11:23:42 +00:00
"hashbrown",
2020-05-21 07:21:58 +00:00
]
2021-04-08 14:45:29 +00:00
[[package]]
name = "mac"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4"
2020-05-23 15:09:28 +00:00
[[package]]
name = "mailchecker"
2022-08-04 11:23:42 +00:00
version = "4.1.19"
2020-05-23 15:09:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-04 11:23:42 +00:00
checksum = "cfdf79ae4aa0804bf975b72d7e8330a810739ae8f717c55e747de1f09c6f9ae8"
2020-05-23 15:09:28 +00:00
dependencies = [
"fast_chemail",
2021-12-28 10:27:26 +00:00
"once_cell",
2020-05-23 15:09:28 +00:00
]
2021-04-08 14:45:29 +00:00
[[package]]
name = "markup5ever"
2021-12-28 10:27:26 +00:00
version = "0.10.1"
2021-04-08 14:45:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-28 10:27:26 +00:00
checksum = "a24f40fb03852d1cdd84330cddcaf98e9ec08a7b7768e952fad3b4cf048ec8fd"
2021-04-08 14:45:29 +00:00
dependencies = [
2021-12-28 10:27:26 +00:00
"log",
2021-04-08 14:45:29 +00:00
"phf",
"phf_codegen",
"string_cache",
"string_cache_codegen",
"tendril",
]
2021-12-28 10:27:26 +00:00
[[package]]
name = "markup5ever_rcdom"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f015da43bcd8d4f144559a3423f4591d69b8ce0652c905374da7205df336ae2b"
dependencies = [
"html5ever",
"markup5ever",
"tendril",
"xml5ever",
]
2020-05-21 07:21:58 +00:00
[[package]]
name = "matches"
2021-12-28 10:27:26 +00:00
version = "0.1.9"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-28 10:27:26 +00:00
checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f"
2020-05-21 07:21:58 +00:00
[[package]]
2021-02-19 15:44:50 +00:00
name = "md5"
version = "0.7.0"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:44:50 +00:00
checksum = "490cc448043f947bae3cbee9c203358d62dbee0db12107a74be5c30ccfd09771"
2020-05-21 07:21:58 +00:00
2020-07-08 15:14:55 +00:00
[[package]]
2021-02-19 15:44:50 +00:00
name = "memchr"
2022-06-11 09:08:53 +00:00
version = "2.5.0"
2020-07-08 15:14:55 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-11 09:08:53 +00:00
checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
2020-07-08 15:14:55 +00:00
2020-06-20 13:22:41 +00:00
[[package]]
name = "memoffset"
2021-12-28 10:27:26 +00:00
version = "0.6.5"
2020-06-20 13:22:41 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-28 10:27:26 +00:00
checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce"
2020-06-20 13:22:41 +00:00
dependencies = [
2021-12-28 10:27:26 +00:00
"autocfg",
2020-06-20 13:22:41 +00:00
]
2020-05-21 13:28:07 +00:00
[[package]]
name = "mime"
version = "0.3.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2a60c7ce501c71e03a9c9c0d35b861413ae925bd979cc7a4e30d060069aaac8d"
2020-07-08 09:03:17 +00:00
[[package]]
name = "mime_guess"
2022-03-09 17:16:33 +00:00
version = "2.0.4"
2020-07-08 09:03:17 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-09 17:16:33 +00:00
checksum = "4192263c238a5f0d0c6bfd21f336a313a4ce1c450542449ca191bb657b4642ef"
2020-07-08 09:03:17 +00:00
dependencies = [
"mime",
"unicase",
]
2022-03-09 17:45:34 +00:00
[[package]]
name = "minimal-lexical"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
2020-05-21 07:21:58 +00:00
[[package]]
name = "miniz_oxide"
2022-06-11 09:08:53 +00:00
version = "0.5.3"
2021-02-19 15:31:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-11 09:08:53 +00:00
checksum = "6f5c75688da582b8ffc1f1799e9db273f32133c49e048f614d22ec3256773ccc"
2021-02-19 15:31:45 +00:00
dependencies = [
"adler",
]
2021-02-19 15:44:50 +00:00
[[package]]
name = "mio"
2022-08-04 11:23:42 +00:00
version = "0.8.4"
2021-02-19 15:44:50 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-04 11:23:42 +00:00
checksum = "57ee1c23c7c63b0c9250c339ffdc69255f110b298b901b9f6c82547b7b87caaf"
2021-02-19 15:44:50 +00:00
dependencies = [
"libc",
"log",
2022-06-11 09:08:53 +00:00
"wasi 0.11.0+wasi-snapshot-preview1",
"windows-sys",
2021-02-19 15:44:50 +00:00
]
2021-03-06 08:35:36 +00:00
[[package]]
name = "mp3-metadata"
2022-08-04 11:23:42 +00:00
version = "0.3.4"
2021-03-06 08:35:36 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-04 11:23:42 +00:00
checksum = "e4eaa3a228dc218005d769b88ce3a0310f49152f2029125289e94c49474c9cc4"
2021-03-06 08:35:36 +00:00
[[package]]
name = "mp4"
2022-08-04 11:32:09 +00:00
version = "0.12.0"
2021-03-06 08:35:36 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-04 11:32:09 +00:00
checksum = "3b3f2d2c1de60843b72f18e2cc79c3529791e109747737e65d547540482c10e8"
2021-03-06 08:35:36 +00:00
dependencies = [
"byteorder",
2022-03-09 18:58:46 +00:00
"bytes",
2022-03-09 19:03:00 +00:00
"num-rational",
2021-03-06 08:35:36 +00:00
"serde",
"serde_json",
"thiserror",
]
2020-06-22 08:35:39 +00:00
[[package]]
name = "mutate_once"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "16cf681a23b4d0a43fc35024c176437f9dcd818db34e0f42ab456a0ee5ad497b"
2020-05-21 07:21:58 +00:00
[[package]]
name = "mysql"
2022-08-04 11:23:42 +00:00
version = "22.2.0"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-04 11:23:42 +00:00
checksum = "b9d8136c78f78cda5c1a4eee4ce555281b71e3e6db715817bc50e186e623b36f"
2020-05-21 07:21:58 +00:00
dependencies = [
"bufstream",
2022-03-09 18:58:46 +00:00
"bytes",
2022-03-09 18:21:57 +00:00
"crossbeam",
"flate2",
2020-05-21 07:21:58 +00:00
"io-enum",
"libc",
"lru",
"mysql_common",
"named_pipe",
"native-tls",
2022-03-09 18:21:57 +00:00
"once_cell",
2022-08-04 11:23:42 +00:00
"pem 1.1.0",
2020-05-21 07:21:58 +00:00
"percent-encoding",
"serde",
"serde_json",
2022-03-09 18:58:46 +00:00
"socket2",
2020-05-21 07:21:58 +00:00
"twox-hash",
"url",
]
[[package]]
name = "mysql_common"
2022-03-09 18:21:57 +00:00
version = "0.28.2"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-09 18:21:57 +00:00
checksum = "4140827f2d12750de1e8755442577e4292a835f26ff2f659f0a380d1d71020b0"
2020-05-21 07:21:58 +00:00
dependencies = [
2022-03-09 18:21:57 +00:00
"base64 0.13.0",
2020-05-21 07:21:58 +00:00
"bigdecimal",
2022-03-09 18:21:57 +00:00
"bindgen",
2020-05-21 07:21:58 +00:00
"bitflags",
2022-03-09 18:21:57 +00:00
"bitvec",
2020-05-21 07:21:58 +00:00
"byteorder",
2022-03-09 18:58:46 +00:00
"bytes",
2022-03-09 18:21:57 +00:00
"cc",
"cmake",
"crc32fast",
2020-05-21 07:21:58 +00:00
"flate2",
2022-03-09 18:21:57 +00:00
"frunk",
2020-05-21 07:21:58 +00:00
"lazy_static",
"lexical",
2022-03-09 18:21:57 +00:00
"num-bigint 0.4.3",
2021-02-19 15:44:50 +00:00
"num-traits",
2022-03-09 18:21:57 +00:00
"rand 0.8.5",
2020-05-21 07:21:58 +00:00
"regex",
"rust_decimal",
2022-03-09 18:21:57 +00:00
"saturating",
2020-05-21 07:21:58 +00:00
"serde",
"serde_json",
2022-03-09 18:58:46 +00:00
"sha-1",
2022-03-09 18:21:57 +00:00
"sha2 0.10.2",
"smallvec",
"subprocess",
"thiserror",
2022-08-04 11:23:42 +00:00
"time 0.3.12",
2020-05-21 07:21:58 +00:00
"uuid",
]
[[package]]
name = "named_pipe"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ad9c443cce91fc3e12f017290db75dde490d685cdaaf508d7159d7cf41f0eb2b"
dependencies = [
2022-03-09 18:58:46 +00:00
"winapi",
2020-05-21 07:21:58 +00:00
]
2022-03-09 19:03:00 +00:00
[[package]]
name = "nanorand"
2022-06-11 09:08:53 +00:00
version = "0.7.0"
2022-03-09 19:03:00 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-11 09:08:53 +00:00
checksum = "6a51313c5820b0b02bd422f4b44776fbf47961755c74ce64afc73bfad10226c3"
2022-03-09 19:03:00 +00:00
dependencies = [
2022-08-04 11:23:42 +00:00
"getrandom 0.2.7",
2022-03-09 19:03:00 +00:00
]
2020-05-21 07:21:58 +00:00
[[package]]
name = "native-tls"
2022-06-11 09:08:53 +00:00
version = "0.2.10"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-11 09:08:53 +00:00
checksum = "fd7e2f3618557f980e0b17e8856252eee3c97fa12c54dff0ca290fb6266ca4a9"
2020-05-21 07:21:58 +00:00
dependencies = [
"lazy_static",
"libc",
"log",
"openssl",
"openssl-probe",
"openssl-sys",
"schannel",
"security-framework",
"security-framework-sys",
"tempfile",
]
2021-04-08 14:45:29 +00:00
[[package]]
name = "new_debug_unreachable"
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e4a24736216ec316047a1fc4252e27dabb04218aa4a3f37c6e7ddbf1f9782b54"
2022-03-09 17:45:34 +00:00
[[package]]
name = "nom"
2022-06-11 09:08:53 +00:00
version = "7.1.1"
2022-03-09 17:45:34 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-11 09:08:53 +00:00
checksum = "a8903e5a29a317527874d0402f867152a3d21c908bb0b933e416c65e301d4c36"
2022-03-09 17:45:34 +00:00
dependencies = [
"memchr",
"minimal-lexical",
2021-02-19 15:44:50 +00:00
]
2020-05-21 07:21:58 +00:00
[[package]]
name = "num-bigint"
version = "0.2.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "090c7f9998ee0ff65aa5b723e4009f7b217707f1fb5ea551329cc4d6231fb304"
dependencies = [
2021-12-28 10:27:26 +00:00
"autocfg",
2020-05-21 07:21:58 +00:00
"num-integer",
2021-02-19 15:44:50 +00:00
"num-traits",
2020-05-21 07:21:58 +00:00
]
2021-03-06 08:35:36 +00:00
[[package]]
name = "num-bigint"
2022-03-09 17:54:31 +00:00
version = "0.4.3"
2021-03-06 08:35:36 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-09 17:54:31 +00:00
checksum = "f93ab6289c7b344a8a9f60f88d80aa20032336fe78da341afc91c8a2341fc75f"
2021-03-06 08:35:36 +00:00
dependencies = [
2021-12-28 10:27:26 +00:00
"autocfg",
2021-03-06 08:35:36 +00:00
"num-integer",
"num-traits",
]
2020-05-21 07:21:58 +00:00
[[package]]
name = "num-integer"
2022-06-11 09:08:53 +00:00
version = "0.1.45"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-11 09:08:53 +00:00
checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9"
2020-05-21 07:21:58 +00:00
dependencies = [
2021-12-28 10:27:26 +00:00
"autocfg",
2021-02-19 15:44:50 +00:00
"num-traits",
2020-05-21 07:21:58 +00:00
]
2022-03-09 17:54:31 +00:00
[[package]]
name = "num-rational"
2022-08-04 11:23:42 +00:00
version = "0.4.1"
2022-03-09 17:54:31 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-04 11:23:42 +00:00
checksum = "0638a1c9d0a3c0914158145bc76cff373a75a627e6ecbfb71cbe6f453a5a19b0"
2022-03-09 17:54:31 +00:00
dependencies = [
"autocfg",
"num-bigint 0.4.3",
2020-06-20 13:22:41 +00:00
"num-integer",
2021-02-19 15:44:50 +00:00
"num-traits",
2021-03-06 08:35:36 +00:00
"serde",
2020-06-20 13:22:41 +00:00
]
2020-05-21 07:21:58 +00:00
[[package]]
name = "num-traits"
2022-06-11 09:08:53 +00:00
version = "0.2.15"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-11 09:08:53 +00:00
checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd"
2020-05-21 07:21:58 +00:00
dependencies = [
2021-12-28 10:27:26 +00:00
"autocfg",
2020-05-21 07:21:58 +00:00
]
2020-05-21 13:28:07 +00:00
[[package]]
name = "num_cpus"
2021-12-28 10:27:26 +00:00
version = "1.13.1"
2020-05-21 13:28:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-28 10:27:26 +00:00
checksum = "19e64526ebdee182341572e50e9ad03965aa510cd94427a4549448f285e957a1"
2020-05-21 13:28:07 +00:00
dependencies = [
"hermit-abi",
"libc",
]
[[package]]
2022-03-09 18:21:57 +00:00
name = "num_threads"
2022-06-11 09:08:53 +00:00
version = "0.1.6"
2020-05-21 13:28:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-11 09:08:53 +00:00
checksum = "2819ce041d2ee131036f4fc9d6ae7ae125a3a40e97ba64d04fe799ad9dabbb44"
2022-03-09 18:21:57 +00:00
dependencies = [
"libc",
]
2020-05-21 13:28:07 +00:00
2020-05-21 07:21:58 +00:00
[[package]]
2022-03-09 18:21:57 +00:00
name = "once_cell"
2022-08-04 11:23:42 +00:00
version = "1.13.0"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-04 11:23:42 +00:00
checksum = "18a6dbe30758c9f83eb00cbea4ac95966305f5a7772f3f42ebfc7fc7eddbd8e1"
2020-05-21 07:21:58 +00:00
2021-02-13 09:52:04 +00:00
[[package]]
name = "opaque-debug"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5"
2020-05-21 07:21:58 +00:00
[[package]]
name = "openssl"
2022-08-04 11:23:42 +00:00
version = "0.10.41"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-04 11:23:42 +00:00
checksum = "618febf65336490dfcf20b73f885f5651a0c89c64c2d4a8c3662585a70bf5bd0"
2020-05-21 07:21:58 +00:00
dependencies = [
"bitflags",
2022-03-09 18:58:46 +00:00
"cfg-if",
2020-05-21 07:21:58 +00:00
"foreign-types",
"libc",
2021-05-29 15:10:46 +00:00
"once_cell",
2022-06-11 09:08:53 +00:00
"openssl-macros",
2020-05-21 07:21:58 +00:00
"openssl-sys",
]
2022-06-11 09:08:53 +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",
]
2020-05-21 07:21:58 +00:00
[[package]]
name = "openssl-probe"
2022-03-09 17:16:33 +00:00
version = "0.1.5"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-09 17:16:33 +00:00
checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
2020-05-21 07:21:58 +00:00
[[package]]
name = "openssl-sys"
2022-08-04 11:23:42 +00:00
version = "0.9.75"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-04 11:23:42 +00:00
checksum = "e5f9bd0c2710541a3cda73d6f9ac4f1b240de4ae261065d309dbe73d9dceb42f"
2020-05-21 07:21:58 +00:00
dependencies = [
2021-12-28 10:27:26 +00:00
"autocfg",
2020-05-21 07:21:58 +00:00
"cc",
"libc",
"pkg-config",
"vcpkg",
]
2020-07-08 15:14:55 +00:00
[[package]]
name = "ordermap"
2021-02-19 15:44:50 +00:00
version = "0.4.2"
2020-05-21 13:28:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:44:50 +00:00
checksum = "91409674c628d07a6b4b79cc877c6b63ba5ccbfbadddd77ca822f55069ed1bd4"
2021-02-19 15:31:45 +00:00
[[package]]
name = "parking_lot"
2022-06-11 09:08:53 +00:00
version = "0.12.1"
2022-03-09 18:58:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-11 09:08:53 +00:00
checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
2022-03-09 18:58:46 +00:00
dependencies = [
"lock_api",
2022-06-11 09:08:53 +00:00
"parking_lot_core",
2021-02-19 15:31:45 +00:00
]
[[package]]
name = "parking_lot_core"
2022-06-11 09:08:53 +00:00
version = "0.9.3"
2021-02-19 15:31:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-11 09:08:53 +00:00
checksum = "09a279cbf25cb0757810394fbc1e359949b59e348145c643a939a525692e6929"
2021-02-19 15:31:45 +00:00
dependencies = [
2022-03-09 18:58:46 +00:00
"cfg-if",
2021-02-19 15:31:45 +00:00
"libc",
2021-02-19 15:44:50 +00:00
"redox_syscall",
2021-02-19 15:31:45 +00:00
"smallvec",
2022-06-11 09:08:53 +00:00
"windows-sys",
2022-03-09 18:58:46 +00:00
]
[[package]]
2022-06-11 09:08:53 +00:00
name = "password-hash"
version = "0.3.2"
2022-03-09 18:58:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-11 09:08:53 +00:00
checksum = "1d791538a6dcc1e7cb7fe6f6b58aca40e7f79403c45b2bc274008b5e647af1d8"
2022-03-09 18:58:46 +00:00
dependencies = [
2022-06-11 09:08:53 +00:00
"base64ct",
"rand_core 0.6.3",
"subtle",
2020-05-21 13:28:07 +00:00
]
2022-03-09 18:58:46 +00:00
[[package]]
name = "paste"
2022-06-11 09:08:53 +00:00
version = "1.0.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0c520e05135d6e763148b6426a837e239041653ba7becd2e538c076c738025fc"
[[package]]
name = "pbkdf2"
version = "0.10.1"
2022-03-09 18:58:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-11 09:08:53 +00:00
checksum = "271779f35b581956db91a3e55737327a03aa051e90b1c47aeb189508533adfd7"
dependencies = [
"digest 0.10.3",
"hmac",
"password-hash",
"sha2 0.10.2",
]
2022-03-09 18:58:46 +00:00
2020-07-08 15:14:55 +00:00
[[package]]
name = "pdf"
2021-05-29 15:10:46 +00:00
version = "0.7.2"
2020-07-08 15:14:55 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "6f48644b2f4e9c3f3468d7c31fa75e9b823dfb167c8581ec15e90a90c34430d9"
2020-07-08 15:14:55 +00:00
dependencies = [
2022-06-11 09:08:53 +00:00
"aes 0.6.0",
2021-02-19 15:44:50 +00:00
"block-modes",
2020-07-08 15:14:55 +00:00
"byteorder",
"chrono",
2021-05-29 15:10:46 +00:00
"deflate 0.9.1",
"fax",
2020-07-08 15:14:55 +00:00
"glob",
"inflate",
"itertools",
2022-03-09 19:03:00 +00:00
"jpeg-decoder 0.1.22",
2021-02-19 15:44:50 +00:00
"log",
"md5",
"num-traits",
"once_cell",
2020-07-08 15:14:55 +00:00
"ordermap",
"pdf_derive",
2022-03-09 17:16:33 +00:00
"sha2 0.9.9",
2021-02-19 15:44:50 +00:00
"snafu",
"stringprep",
2021-05-29 15:10:46 +00:00
"weezl",
2020-07-08 15:14:55 +00:00
]
[[package]]
name = "pdf_derive"
2021-05-29 15:10:46 +00:00
version = "0.1.22"
2020-07-08 15:14:55 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "7f4007262775d0798de87b15cbc64cf1aed5f7ee87eec847e297b69d8ed4b4f8"
2020-07-08 15:14:55 +00:00
dependencies = [
2021-12-28 10:27:26 +00:00
"proc-macro2",
"quote",
"syn",
2020-07-08 15:14:55 +00:00
]
2022-03-09 18:21:57 +00:00
[[package]]
name = "peeking_take_while"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099"
2021-02-19 15:44:50 +00:00
[[package]]
name = "pem"
version = "0.8.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fd56cbd21fea48d0c440b41cd69c589faacade08c992d9a54e471b79d0fd13eb"
dependencies = [
"base64 0.13.0",
"once_cell",
"regex",
]
2022-03-09 18:21:57 +00:00
[[package]]
name = "pem"
2022-08-04 11:23:42 +00:00
version = "1.1.0"
2022-03-09 18:21:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-04 11:23:42 +00:00
checksum = "03c64931a1a212348ec4f3b4362585eca7159d0d09cbdf4a7f74f02173596fd4"
2022-03-09 18:21:57 +00:00
dependencies = [
"base64 0.13.0",
]
2020-05-21 07:21:58 +00:00
[[package]]
name = "percent-encoding"
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e"
2021-04-08 14:45:29 +00:00
[[package]]
name = "phf"
2021-12-28 10:27:26 +00:00
version = "0.8.0"
2021-04-08 14:45:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-28 10:27:26 +00:00
checksum = "3dfb61232e34fcb633f43d12c58f83c1df82962dcdfa565a4e866ffc17dafe12"
2021-04-08 14:45:29 +00:00
dependencies = [
2022-03-09 17:16:33 +00:00
"phf_shared 0.8.0",
2021-04-08 14:45:29 +00:00
]
[[package]]
name = "phf_codegen"
2021-12-28 10:27:26 +00:00
version = "0.8.0"
2021-04-08 14:45:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-28 10:27:26 +00:00
checksum = "cbffee61585b0411840d3ece935cce9cb6321f01c45477d30066498cd5e1a815"
2021-04-08 14:45:29 +00:00
dependencies = [
2022-06-11 09:08:53 +00:00
"phf_generator 0.8.0",
2022-03-09 17:16:33 +00:00
"phf_shared 0.8.0",
2021-04-08 14:45:29 +00:00
]
[[package]]
name = "phf_generator"
2021-12-28 10:27:26 +00:00
version = "0.8.0"
2021-04-08 14:45:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-28 10:27:26 +00:00
checksum = "17367f0cc86f2d25802b2c26ee58a7b23faeccf78a396094c13dced0d0182526"
2021-04-08 14:45:29 +00:00
dependencies = [
2022-03-09 17:16:33 +00:00
"phf_shared 0.8.0",
2021-12-28 10:27:26 +00:00
"rand 0.7.3",
2021-04-08 14:45:29 +00:00
]
2022-06-11 09:08:53 +00:00
[[package]]
name = "phf_generator"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5d5285893bb5eb82e6aaf5d59ee909a06a16737a8970984dd7746ba9283498d6"
dependencies = [
"phf_shared 0.10.0",
"rand 0.8.5",
]
2021-04-08 14:45:29 +00:00
[[package]]
name = "phf_shared"
2021-12-28 10:27:26 +00:00
version = "0.8.0"
2021-04-08 14:45:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-28 10:27:26 +00:00
checksum = "c00cf8b9eafe68dde5e9eaa2cef8ee84a9336a47d566ec55ca16589633b65af7"
2021-04-08 14:45:29 +00:00
dependencies = [
"siphasher",
]
2022-03-09 17:16:33 +00:00
[[package]]
name = "phf_shared"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096"
dependencies = [
"siphasher",
]
2022-03-09 19:03:00 +00:00
[[package]]
name = "pin-project"
2022-08-04 11:23:42 +00:00
version = "1.0.11"
2022-03-09 19:03:00 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-04 11:23:42 +00:00
checksum = "78203e83c48cffbe01e4a2d35d566ca4de445d79a85372fc64e378bfc812a260"
2022-03-09 19:03:00 +00:00
dependencies = [
"pin-project-internal",
]
[[package]]
name = "pin-project-internal"
2022-08-04 11:23:42 +00:00
version = "1.0.11"
2022-03-09 19:03:00 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-04 11:23:42 +00:00
checksum = "710faf75e1b33345361201d36d04e98ac1ed8909151a017ed384700836104c74"
2022-03-09 19:03:00 +00:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
2021-02-19 15:31:45 +00:00
[[package]]
name = "pin-project-lite"
2022-06-11 09:08:53 +00:00
version = "0.2.9"
2021-02-19 15:31:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-11 09:08:53 +00:00
checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116"
2020-05-21 13:28:07 +00:00
[[package]]
name = "pin-utils"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
2020-05-21 07:21:58 +00:00
[[package]]
name = "pkg-config"
2022-06-11 09:08:53 +00:00
version = "0.3.25"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-11 09:08:53 +00:00
checksum = "1df8c4ec4b0627e53bdf214615ad287367e482558cf84b109250b37464dc03ae"
2020-05-21 07:21:58 +00:00
2020-06-20 13:22:41 +00:00
[[package]]
name = "png"
2022-03-09 19:03:00 +00:00
version = "0.17.5"
2020-06-20 13:22:41 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-09 19:03:00 +00:00
checksum = "dc38c0ad57efb786dd57b9864e5b18bae478c00c824dc55a38bbc9da95dde3ba"
2020-06-20 13:22:41 +00:00
dependencies = [
"bitflags",
"crc32fast",
2022-03-09 19:03:00 +00:00
"deflate 1.0.0",
2022-06-11 09:08:53 +00:00
"miniz_oxide",
2020-06-20 13:22:41 +00:00
]
2020-05-21 07:21:58 +00:00
[[package]]
name = "ppv-lite86"
2022-03-09 17:16:33 +00:00
version = "0.2.16"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-09 17:16:33 +00:00
checksum = "eb9f9e6e233e5c4a35559a617bf40a4ec447db2e84c20b55a6f83167b7e57872"
2020-05-21 07:21:58 +00:00
2021-04-08 14:45:29 +00:00
[[package]]
name = "precomputed-hash"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c"
2020-05-21 07:21:58 +00:00
[[package]]
name = "proc-macro-hack"
2021-02-19 15:31:45 +00:00
version = "0.5.19"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:31:45 +00:00
checksum = "dbf0c48bc1d91375ae5c3cd81e3722dff1abcf81a30960240640d223f59fe0e5"
2020-05-21 07:21:58 +00:00
2021-04-08 14:45:29 +00:00
[[package]]
name = "proc-macro2"
2022-08-04 11:23:42 +00:00
version = "1.0.42"
2021-04-08 14:45:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-04 11:23:42 +00:00
checksum = "c278e965f1d8cf32d6e0e96de3d3e79712178ae67986d9cf9151f51e95aac89b"
2021-04-08 14:45:29 +00:00
dependencies = [
2022-06-11 09:08:53 +00:00
"unicode-ident",
2020-05-21 07:21:58 +00:00
]
2021-04-08 14:45:29 +00:00
[[package]]
name = "quote"
2022-08-04 11:23:42 +00:00
version = "1.0.20"
2021-04-08 14:45:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-04 11:23:42 +00:00
checksum = "3bcdf212e9776fbcb2d23ab029360416bb1706b1aea2d1a5ba002727cbcab804"
2021-04-08 14:45:29 +00:00
dependencies = [
2021-12-28 10:27:26 +00:00
"proc-macro2",
2020-05-21 07:21:58 +00:00
]
2022-03-09 18:21:57 +00:00
[[package]]
name = "radium"
version = "0.6.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "643f8f41a8ebc4c5dc4515c82bb8abd397b527fc20fd681b7c011c2aee5d44fb"
2020-05-21 07:21:58 +00:00
[[package]]
name = "rand"
version = "0.7.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03"
dependencies = [
2021-02-19 15:31:45 +00:00
"getrandom 0.1.16",
"libc",
"rand_chacha 0.2.2",
"rand_core 0.5.1",
2022-03-09 17:16:33 +00:00
"rand_hc",
2021-12-28 10:27:26 +00:00
"rand_pcg",
2021-02-19 15:31:45 +00:00
]
[[package]]
name = "rand"
2022-03-09 17:16:33 +00:00
version = "0.8.5"
2021-02-19 15:31:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-09 17:16:33 +00:00
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
2021-02-19 15:31:45 +00:00
dependencies = [
2020-05-21 07:21:58 +00:00
"libc",
2021-12-28 10:27:26 +00:00
"rand_chacha 0.3.1",
"rand_core 0.6.3",
2021-04-08 14:45:29 +00:00
]
2020-05-21 07:21:58 +00:00
[[package]]
name = "rand_chacha"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402"
dependencies = [
"ppv-lite86",
2021-02-19 15:31:45 +00:00
"rand_core 0.5.1",
]
[[package]]
name = "rand_chacha"
2021-04-08 14:45:29 +00:00
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-28 10:27:26 +00:00
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
2021-04-08 14:45:29 +00:00
dependencies = [
2021-12-28 10:27:26 +00:00
"ppv-lite86",
"rand_core 0.6.3",
2021-04-08 14:45:29 +00:00
]
2020-05-21 07:21:58 +00:00
[[package]]
name = "rand_core"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19"
dependencies = [
2021-02-19 15:31:45 +00:00
"getrandom 0.1.16",
]
[[package]]
name = "rand_core"
2021-12-28 10:27:26 +00:00
version = "0.6.3"
2021-02-19 15:31:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-28 10:27:26 +00:00
checksum = "d34f1408f55294453790c48b2f1ebbb1c5b4b7563eb1f418bcfcfdbb06ebb4e7"
2021-02-19 15:31:45 +00:00
dependencies = [
2022-08-04 11:23:42 +00:00
"getrandom 0.2.7",
2020-05-21 07:21:58 +00:00
]
[[package]]
name = "rand_hc"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c"
dependencies = [
2021-02-19 15:31:45 +00:00
"rand_core 0.5.1",
]
2021-04-08 14:45:29 +00:00
[[package]]
name = "rand_pcg"
2021-12-28 10:27:26 +00:00
version = "0.2.1"
2021-04-08 14:45:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-28 10:27:26 +00:00
checksum = "16abd0c1b639e9eb4d7c50c0b8100b0d0f849be2349829c740fe8e6eb4816429"
2021-04-08 14:45:29 +00:00
dependencies = [
2021-12-28 10:27:26 +00:00
"rand_core 0.5.1",
2021-04-08 14:45:29 +00:00
]
2020-06-20 13:22:41 +00:00
[[package]]
name = "rayon"
2022-06-11 09:08:53 +00:00
version = "1.5.3"
2020-06-20 13:22:41 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-11 09:08:53 +00:00
checksum = "bd99e5772ead8baa5215278c9b15bf92087709e9c1b2d1f97cdb5a183c933a7d"
2020-06-20 13:22:41 +00:00
dependencies = [
2021-12-28 10:27:26 +00:00
"autocfg",
2020-06-20 13:22:41 +00:00
"crossbeam-deque",
"either",
"rayon-core",
]
[[package]]
name = "rayon-core"
2022-06-11 09:08:53 +00:00
version = "1.9.3"
2020-06-20 13:22:41 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-11 09:08:53 +00:00
checksum = "258bcdb5ac6dad48491bb2992db6b7cf74878b0384908af124823d118c99683f"
2020-06-20 13:22:41 +00:00
dependencies = [
2022-03-09 18:58:46 +00:00
"crossbeam-channel",
2020-06-20 13:22:41 +00:00
"crossbeam-deque",
2022-03-09 18:58:46 +00:00
"crossbeam-utils",
2020-06-20 13:22:41 +00:00
"num_cpus",
]
2021-02-19 15:31:45 +00:00
[[package]]
name = "redox_syscall"
2022-08-04 11:23:42 +00:00
version = "0.2.16"
2021-02-19 15:31:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-04 11:23:42 +00:00
checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
2021-02-19 15:31:45 +00:00
dependencies = [
"bitflags",
]
2020-05-21 07:21:58 +00:00
[[package]]
name = "regex"
2022-08-04 11:23:42 +00:00
version = "1.6.0"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-04 11:23:42 +00:00
checksum = "4c4eb3267174b8c6c2f654116623910a0fef09c4753f8dd83db29c48a0df988b"
2020-05-21 07:21:58 +00:00
dependencies = [
"aho-corasick",
"memchr",
"regex-syntax",
]
[[package]]
name = "regex-syntax"
2022-08-04 11:23:42 +00:00
version = "0.6.27"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-04 11:23:42 +00:00
checksum = "a3f87b73ce11b1619a3c6332f45341e0047173771e8b8b73f87bfeefb7b56244"
2020-05-21 07:21:58 +00:00
[[package]]
name = "remove_dir_all"
2021-02-19 15:31:45 +00:00
version = "0.5.3"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:31:45 +00:00
checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7"
2020-05-21 07:21:58 +00:00
dependencies = [
2022-03-09 18:58:46 +00:00
"winapi",
2020-05-21 13:28:07 +00:00
]
2021-02-05 12:21:10 +00:00
[[package]]
name = "reqwest"
2022-08-04 11:23:42 +00:00
version = "0.11.11"
2021-02-05 12:21:10 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-04 11:23:42 +00:00
checksum = "b75aa69a3f06bbcc66ede33af2af253c6f7a86b1ca0033f60c580a27074fbf92"
2021-02-05 12:21:10 +00:00
dependencies = [
2021-02-19 15:31:45 +00:00
"base64 0.13.0",
2022-03-09 18:58:46 +00:00
"bytes",
2021-02-05 12:21:10 +00:00
"encoding_rs",
"futures-core",
"futures-util",
2022-03-09 18:58:46 +00:00
"h2",
2021-02-05 12:21:10 +00:00
"http",
"http-body",
"hyper",
"hyper-tls",
"ipnet",
"js-sys",
"lazy_static",
"log",
"mime",
"native-tls",
"percent-encoding",
2022-03-09 18:58:46 +00:00
"pin-project-lite",
2021-02-05 12:21:10 +00:00
"serde",
"serde_json",
2022-03-09 17:16:33 +00:00
"serde_urlencoded 0.7.1",
2022-03-09 18:58:46 +00:00
"tokio",
2021-02-19 15:44:50 +00:00
"tokio-native-tls",
2022-08-04 11:23:42 +00:00
"tower-service",
2021-02-05 12:21:10 +00:00
"url",
"wasm-bindgen",
"wasm-bindgen-futures",
"web-sys",
2022-03-09 18:58:46 +00:00
"winreg",
2020-05-21 07:21:58 +00:00
]
[[package]]
name = "ring"
version = "0.16.20"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc"
dependencies = [
"cc",
"libc",
"once_cell",
2022-03-09 19:03:00 +00:00
"spin 0.5.2",
"untrusted",
"web-sys",
2022-03-09 18:58:46 +00:00
"winapi",
]
2020-05-21 07:21:58 +00:00
[[package]]
name = "rust_decimal"
2022-08-04 11:23:42 +00:00
version = "1.25.0"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-04 11:23:42 +00:00
checksum = "34a3bb58e85333f1ab191bf979104b586ebd77475bc6681882825f4532dfe87c"
2020-05-21 07:21:58 +00:00
dependencies = [
2022-03-09 18:21:57 +00:00
"arrayvec",
2021-02-19 15:44:50 +00:00
"num-traits",
2020-05-21 07:21:58 +00:00
"serde",
]
2022-03-09 18:21:57 +00:00
[[package]]
name = "rustc-hash"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
2021-12-28 10:27:26 +00:00
[[package]]
name = "rustc_version"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
dependencies = [
2022-03-09 18:58:46 +00:00
"semver",
2020-05-21 07:21:58 +00:00
]
[[package]]
name = "rustls"
version = "0.18.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5d1126dcf58e93cee7d098dbda643b5f92ed724f1f6a63007c1116eed6700c81"
dependencies = [
"base64 0.12.3",
"log",
"ring",
"sct",
"webpki",
]
2020-05-21 07:21:58 +00:00
[[package]]
name = "ryu"
2022-06-11 09:08:53 +00:00
version = "1.0.10"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-11 09:08:53 +00:00
checksum = "f3f6f92acf49d1b98f7a81226834412ada05458b7364277387724a237f062695"
2020-05-21 07:21:58 +00:00
2022-03-09 18:21:57 +00:00
[[package]]
name = "saturating"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ece8e78b2f38ec51c51f5d475df0a7187ba5111b2a28bdc761ee05b075d40a71"
2020-05-21 07:21:58 +00:00
[[package]]
name = "schannel"
2022-06-11 09:08:53 +00:00
version = "0.1.20"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-11 09:08:53 +00:00
checksum = "88d6731146462ea25d9244b2ed5fd1d716d25c52e4d54aa4fb0f3c4e9854dbe2"
2020-05-21 07:21:58 +00:00
dependencies = [
"lazy_static",
2022-06-11 09:08:53 +00:00
"windows-sys",
2020-05-21 07:21:58 +00:00
]
2020-06-20 13:22:41 +00:00
[[package]]
name = "scoped_threadpool"
version = "0.1.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1d51f5df5af43ab3f1360b429fa5e0152ac5ce8c0bd6485cae490332e96846a8"
2020-05-21 13:28:07 +00:00
[[package]]
name = "scopeguard"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
[[package]]
name = "sct"
version = "0.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b362b83898e0e69f38515b82ee15aa80636befe47c3b6d3d89a911e78fc228ce"
dependencies = [
"ring",
"untrusted",
]
2020-05-21 07:21:58 +00:00
[[package]]
name = "security-framework"
2022-03-09 17:16:33 +00:00
version = "2.6.1"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-09 17:16:33 +00:00
checksum = "2dc14f172faf8a0194a3aded622712b0de276821addc574fa54fc0a1167e10dc"
2020-05-21 07:21:58 +00:00
dependencies = [
"bitflags",
"core-foundation",
"core-foundation-sys",
"libc",
"security-framework-sys",
]
[[package]]
name = "security-framework-sys"
2022-03-09 17:16:33 +00:00
version = "2.6.1"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-09 17:16:33 +00:00
checksum = "0160a13a177a45bfb43ce71c01580998474f556ad854dcbca936dd2841a5c556"
2020-05-21 07:21:58 +00:00
dependencies = [
"core-foundation-sys",
"libc",
]
2021-12-28 10:27:26 +00:00
[[package]]
name = "semver"
2022-08-04 11:23:42 +00:00
version = "1.0.12"
2021-12-28 10:27:26 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-04 11:23:42 +00:00
checksum = "a2333e6df6d6598f2b1974829f853c2b4c5f4a6e503c10af918081aa6f8564e1"
2021-12-28 10:27:26 +00:00
2020-05-21 07:21:58 +00:00
[[package]]
name = "serde"
2022-08-04 11:23:42 +00:00
version = "1.0.140"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-04 11:23:42 +00:00
checksum = "fc855a42c7967b7c369eb5860f7164ef1f6f81c20c7cc1141f2a604e18723b03"
2020-05-21 13:28:07 +00:00
dependencies = [
"serde_derive",
]
[[package]]
name = "serde_cbor"
2021-12-28 10:27:26 +00:00
version = "0.11.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-28 10:27:26 +00:00
checksum = "2bef2ebfde456fb76bbcf9f59315333decc4fda0b2b44b420243c11e0f5ec1f5"
dependencies = [
"half",
"serde",
]
2020-05-21 13:28:07 +00:00
[[package]]
name = "serde_derive"
2022-08-04 11:23:42 +00:00
version = "1.0.140"
2020-05-21 13:28:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-04 11:23:42 +00:00
checksum = "6f2122636b9fe3b81f1cb25099fcf2d3f542cdb1d45940d56c713158884a05da"
2020-05-21 13:28:07 +00:00
dependencies = [
2021-12-28 10:27:26 +00:00
"proc-macro2",
"quote",
"syn",
2020-05-21 13:28:07 +00:00
]
2020-05-21 07:21:58 +00:00
[[package]]
name = "serde_json"
2022-08-04 11:23:42 +00:00
version = "1.0.82"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-04 11:23:42 +00:00
checksum = "82c2c1fdcd807d1098552c5b9a36e425e42e9fbd7c6a37a8425f390f781f7fa7"
2020-05-21 07:21:58 +00:00
dependencies = [
2022-06-11 09:08:53 +00:00
"itoa 1.0.2",
2020-05-21 07:21:58 +00:00
"ryu",
"serde",
]
[[package]]
name = "serde_urlencoded"
version = "0.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9ec5d77e2d4c73717816afac02670d5c4f534ea95ed430442cad02e7a6e32c97"
dependencies = [
"dtoa",
2021-12-28 10:27:26 +00:00
"itoa 0.4.8",
"serde",
"url",
]
2020-05-21 13:28:07 +00:00
[[package]]
name = "serde_urlencoded"
2022-03-09 17:16:33 +00:00
version = "0.7.1"
2020-05-21 13:28:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-09 17:16:33 +00:00
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
2020-05-21 13:28:07 +00:00
dependencies = [
2021-02-19 15:44:50 +00:00
"form_urlencoded",
2022-06-11 09:08:53 +00:00
"itoa 1.0.2",
2021-02-19 15:44:50 +00:00
"ryu",
2020-05-21 13:28:07 +00:00
"serde",
]
2022-03-09 18:21:57 +00:00
[[package]]
name = "sha-1"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "028f48d513f9678cda28f6e4064755b3fbb2af6acd672f2c209b62323f7aea0f"
dependencies = [
2022-03-09 18:58:46 +00:00
"cfg-if",
2022-03-09 18:21:57 +00:00
"cpufeatures",
"digest 0.10.3",
2021-02-19 15:31:45 +00:00
]
2022-03-09 18:07:22 +00:00
[[package]]
name = "sha1"
version = "0.10.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c77f4e7f65455545c2153c1253d25056825e77ee2533f0e41deb65a93a34852f"
dependencies = [
2022-03-09 18:58:46 +00:00
"cfg-if",
2022-03-09 18:07:22 +00:00
"cpufeatures",
"digest 0.10.3",
]
2020-05-21 07:21:58 +00:00
[[package]]
name = "sha2"
2022-03-09 18:21:57 +00:00
version = "0.9.9"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-09 18:21:57 +00:00
checksum = "4d58a1e1bf39749807d89cf2d98ac2dfa0ff1cb3faa38fbb64dd88ac8013d800"
2020-05-21 07:21:58 +00:00
dependencies = [
2022-03-09 18:21:57 +00:00
"block-buffer 0.9.0",
2022-03-09 18:58:46 +00:00
"cfg-if",
2022-03-09 18:21:57 +00:00
"cpufeatures",
"digest 0.9.0",
"opaque-debug",
2020-05-21 07:21:58 +00:00
]
2021-02-19 15:44:50 +00:00
[[package]]
name = "sha2"
2022-03-09 18:21:57 +00:00
version = "0.10.2"
2021-02-19 15:44:50 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-09 18:21:57 +00:00
checksum = "55deaec60f81eefe3cce0dc50bda92d6d8e88f2a27df7c5033b42afeb1ed2676"
2021-02-19 15:44:50 +00:00
dependencies = [
2022-03-09 18:58:46 +00:00
"cfg-if",
2021-05-29 15:10:46 +00:00
"cpufeatures",
2022-03-09 18:21:57 +00:00
"digest 0.10.3",
2021-02-19 15:44:50 +00:00
]
2022-03-09 18:21:57 +00:00
[[package]]
name = "shlex"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "43b2853a4d09f215c24cc5489c992ce46052d359b5109343cbafbf26bc62f8a3"
2020-05-21 13:28:07 +00:00
[[package]]
name = "signal-hook-registry"
2021-12-28 10:27:26 +00:00
version = "1.4.0"
2020-05-21 13:28:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-28 10:27:26 +00:00
checksum = "e51e73328dc4ac0c7ccbda3a494dfa03df1de2f46018127f60c693f2648455b0"
2020-05-21 13:28:07 +00:00
dependencies = [
"libc",
]
[[package]]
name = "simple_asn1"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "692ca13de57ce0613a363c8c2f1de925adebc81b04c923ac60c5488bb44abe4b"
dependencies = [
"chrono",
"num-bigint 0.2.6",
"num-traits",
]
2021-04-08 14:45:29 +00:00
[[package]]
name = "siphasher"
2022-03-09 17:16:33 +00:00
version = "0.3.10"
2021-04-08 14:45:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-09 17:16:33 +00:00
checksum = "7bd3e3206899af3f8b12af284fafc038cc1dc2b41d1b89dd17297221c5d225de"
2021-04-08 14:45:29 +00:00
2020-05-21 13:28:07 +00:00
[[package]]
name = "slab"
2022-08-04 11:23:42 +00:00
version = "0.4.7"
2020-05-21 13:28:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-04 11:23:42 +00:00
checksum = "4614a76b2a8be0058caa9dbbaf66d988527d86d003c11a94fbd335d7661edcef"
dependencies = [
"autocfg",
]
2020-05-21 13:28:07 +00:00
2020-05-21 07:21:58 +00:00
[[package]]
name = "smallvec"
2022-08-04 11:23:42 +00:00
version = "1.9.0"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-04 11:23:42 +00:00
checksum = "2fd0db749597d91ff862fd1d55ea87f7855a744a8425a64695b6fca237d1dad1"
2020-05-21 07:21:58 +00:00
2021-02-19 15:44:50 +00:00
[[package]]
name = "snafu"
version = "0.6.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eab12d3c261b2308b0d80c26fffb58d17eba81a4be97890101f416b478c79ca7"
dependencies = [
"doc-comment",
"snafu-derive",
]
[[package]]
name = "snafu-derive"
version = "0.6.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1508efa03c362e23817f96cde18abed596a25219a8b2c66e8db33c03543d315b"
dependencies = [
2021-12-28 10:27:26 +00:00
"proc-macro2",
"quote",
"syn",
2021-02-19 15:44:50 +00:00
]
2021-05-29 15:10:46 +00:00
[[package]]
name = "socket2"
2022-03-09 17:16:33 +00:00
version = "0.4.4"
2021-05-29 15:10:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-09 17:16:33 +00:00
checksum = "66d72b759436ae32898a2af0a14218dbf55efde3feeb170eb623637db85ee1e0"
2021-05-29 15:10:46 +00:00
dependencies = [
"libc",
2022-03-09 18:58:46 +00:00
"winapi",
2021-05-29 15:10:46 +00:00
]
[[package]]
name = "spin"
version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"
2022-03-09 19:03:00 +00:00
[[package]]
name = "spin"
2022-08-04 11:23:42 +00:00
version = "0.9.4"
2022-03-09 19:03:00 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-04 11:23:42 +00:00
checksum = "7f6002a767bff9e83f8eeecf883ecb8011875a21ae8da43bffb817a57e78cc09"
2022-03-09 19:03:00 +00:00
dependencies = [
"lock_api",
]
2020-07-08 15:14:55 +00:00
[[package]]
2021-02-19 15:31:45 +00:00
name = "static_assertions"
version = "1.1.0"
2020-07-08 15:14:55 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:31:45 +00:00
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
2020-07-08 15:14:55 +00:00
2021-04-08 14:45:29 +00:00
[[package]]
name = "string_cache"
2022-06-11 09:08:53 +00:00
version = "0.8.4"
2021-04-08 14:45:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-11 09:08:53 +00:00
checksum = "213494b7a2b503146286049378ce02b482200519accc31872ee8be91fa820a08"
2021-04-08 14:45:29 +00:00
dependencies = [
"new_debug_unreachable",
2022-06-11 09:08:53 +00:00
"once_cell",
"parking_lot",
2022-03-09 17:16:33 +00:00
"phf_shared 0.10.0",
2021-04-08 14:45:29 +00:00
"precomputed-hash",
"serde",
]
[[package]]
name = "string_cache_codegen"
2022-06-11 09:08:53 +00:00
version = "0.5.2"
2021-04-08 14:45:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-11 09:08:53 +00:00
checksum = "6bb30289b722be4ff74a408c3cc27edeaad656e06cb1fe8fa9231fa59c728988"
2021-04-08 14:45:29 +00:00
dependencies = [
2022-06-11 09:08:53 +00:00
"phf_generator 0.10.0",
"phf_shared 0.10.0",
2021-12-28 10:27:26 +00:00
"proc-macro2",
"quote",
2021-04-08 14:45:29 +00:00
]
2021-02-19 15:44:50 +00:00
[[package]]
name = "stringprep"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8ee348cb74b87454fff4b551cbf727025810a004f88aeacae7f85b87f4e9a1c1"
dependencies = [
"unicode-bidi",
"unicode-normalization",
]
2022-03-09 18:21:57 +00:00
[[package]]
name = "subprocess"
2022-06-11 09:08:53 +00:00
version = "0.2.9"
2022-03-09 18:21:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-11 09:08:53 +00:00
checksum = "0c2e86926081dda636c546d8c5e641661049d7562a68f5488be4a1f7f66f6086"
2022-03-09 18:21:57 +00:00
dependencies = [
"libc",
2022-03-09 18:58:46 +00:00
"winapi",
2022-03-09 18:21:57 +00:00
]
2022-06-11 09:08:53 +00:00
[[package]]
name = "subtle"
version = "2.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601"
2021-04-08 14:45:29 +00:00
[[package]]
name = "syn"
2022-08-04 11:23:42 +00:00
version = "1.0.98"
2021-02-19 15:44:50 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-04 11:23:42 +00:00
checksum = "c50aef8a904de4c23c788f104b7dddc7d6f79c647c7c8ce4cc8f73eb0ca773dd"
2021-02-19 15:44:50 +00:00
dependencies = [
2021-12-28 10:27:26 +00:00
"proc-macro2",
"quote",
2022-06-11 09:08:53 +00:00
"unicode-ident",
2020-05-21 07:21:58 +00:00
]
2022-03-09 18:21:57 +00:00
[[package]]
name = "tap"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
2020-05-21 07:21:58 +00:00
[[package]]
name = "tempfile"
2022-03-09 17:16:33 +00:00
version = "3.3.0"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-09 17:16:33 +00:00
checksum = "5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4"
2020-05-21 07:21:58 +00:00
dependencies = [
2022-03-09 18:58:46 +00:00
"cfg-if",
2022-03-09 17:16:33 +00:00
"fastrand",
2020-05-21 07:21:58 +00:00
"libc",
2021-02-19 15:44:50 +00:00
"redox_syscall",
2020-05-21 07:21:58 +00:00
"remove_dir_all",
2022-03-09 18:58:46 +00:00
"winapi",
2020-05-21 07:21:58 +00:00
]
2021-04-08 14:45:29 +00:00
[[package]]
name = "tendril"
2022-06-11 09:08:53 +00:00
version = "0.4.3"
2021-04-08 14:45:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-11 09:08:53 +00:00
checksum = "d24a120c5fc464a3458240ee02c299ebcb9d67b5249c8848b09d639dca8d7bb0"
2021-04-08 14:45:29 +00:00
dependencies = [
"futf",
"mac",
"utf-8",
]
2021-02-19 15:44:50 +00:00
[[package]]
name = "thiserror"
2022-06-11 09:08:53 +00:00
version = "1.0.31"
2021-02-19 15:44:50 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-11 09:08:53 +00:00
checksum = "bd829fe32373d27f76265620b5309d0340cb8550f523c1dda251d6298069069a"
2021-02-19 15:44:50 +00:00
dependencies = [
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
2022-06-11 09:08:53 +00:00
version = "1.0.31"
2021-02-19 15:44:50 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-11 09:08:53 +00:00
checksum = "0396bc89e626244658bef819e22d0cc459e795a5ebe878e6ec336d1674a8d79a"
2021-02-19 15:44:50 +00:00
dependencies = [
2021-12-28 10:27:26 +00:00
"proc-macro2",
"quote",
"syn",
2020-05-21 07:21:58 +00:00
]
2022-03-09 19:03:00 +00:00
[[package]]
name = "threadpool"
version = "1.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d050e60b33d41c19108b32cea32164033a9013fe3b46cbd4457559bfbf77afaa"
dependencies = [
"num_cpus",
]
2020-06-20 13:22:41 +00:00
[[package]]
name = "tiff"
2022-08-04 11:23:42 +00:00
version = "0.7.3"
2020-06-20 13:22:41 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-04 11:23:42 +00:00
checksum = "7259662e32d1e219321eb309d5f9d898b779769d81b76e762c07c8e5d38fcb65"
2020-06-20 13:22:41 +00:00
dependencies = [
2022-03-09 19:03:00 +00:00
"flate2",
2022-06-11 09:08:53 +00:00
"jpeg-decoder 0.2.6",
2021-02-19 15:31:45 +00:00
"weezl",
2020-06-20 13:22:41 +00:00
]
2020-05-21 07:21:58 +00:00
[[package]]
name = "time"
2021-02-19 15:31:45 +00:00
version = "0.1.44"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:31:45 +00:00
checksum = "6db9e6914ab8b1ae1c260a4ae7a49b6c5611b40328a735b21862567685e73255"
2020-05-21 07:21:58 +00:00
dependencies = [
"libc",
2021-02-19 15:31:45 +00:00
"wasi 0.10.0+wasi-snapshot-preview1",
2022-03-09 18:58:46 +00:00
"winapi",
2021-02-19 15:44:50 +00:00
]
2022-03-09 18:21:57 +00:00
[[package]]
name = "time"
2022-08-04 11:23:42 +00:00
version = "0.3.12"
2022-03-09 18:21:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-04 11:23:42 +00:00
checksum = "74b7cc93fc23ba97fde84f7eea56c55d1ba183f495c6715defdfc7b9cb8c870f"
2022-03-09 18:21:57 +00:00
dependencies = [
2022-06-11 09:08:53 +00:00
"itoa 1.0.2",
2022-08-04 11:23:42 +00:00
"js-sys",
2022-03-09 18:21:57 +00:00
"libc",
"num_threads",
2022-03-09 18:58:46 +00:00
"time-macros",
2022-03-09 18:21:57 +00:00
]
2021-02-19 15:44:50 +00:00
[[package]]
name = "time-macros"
2022-06-11 09:08:53 +00:00
version = "0.2.4"
2021-02-19 15:31:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-11 09:08:53 +00:00
checksum = "42657b1a6f4d817cda8e7a0ace261fe0cc946cf3a80314390b22cc61ae080792"
2021-02-19 15:31:45 +00:00
[[package]]
name = "tinyvec"
2022-06-11 09:08:53 +00:00
version = "1.6.0"
2021-02-19 15:31:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-11 09:08:53 +00:00
checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
2021-02-19 15:31:45 +00:00
dependencies = [
"tinyvec_macros",
]
[[package]]
name = "tinyvec_macros"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
2021-02-05 12:21:10 +00:00
[[package]]
2021-02-19 15:44:50 +00:00
name = "tokio"
2022-08-04 11:23:42 +00:00
version = "1.20.1"
2021-02-19 15:44:50 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-04 11:23:42 +00:00
checksum = "7a8325f63a7d4774dd041e363b2409ed1c5cbbd0f867795e661df066b2b0a581"
2021-02-19 15:44:50 +00:00
dependencies = [
2022-08-04 11:23:42 +00:00
"autocfg",
2022-03-09 18:58:46 +00:00
"bytes",
2021-02-19 15:44:50 +00:00
"libc",
"memchr",
2022-03-09 18:58:46 +00:00
"mio",
2021-02-19 15:44:50 +00:00
"num_cpus",
2022-03-09 18:58:46 +00:00
"once_cell",
2022-06-11 09:08:53 +00:00
"parking_lot",
2022-03-09 18:58:46 +00:00
"pin-project-lite",
"signal-hook-registry",
"socket2",
"winapi",
2021-02-19 15:44:50 +00:00
]
[[package]]
name = "tokio-native-tls"
version = "0.3.0"
2021-02-05 12:21:10 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:44:50 +00:00
checksum = "f7d995660bd2b7f8c1568414c1126076c13fbb725c40112dc0120b78eb9b717b"
2021-02-05 12:21:10 +00:00
dependencies = [
"native-tls",
2022-03-09 18:58:46 +00:00
"tokio",
2021-02-05 12:21:10 +00:00
]
2020-05-21 13:28:07 +00:00
[[package]]
name = "tokio-util"
2022-06-11 09:08:53 +00:00
version = "0.7.3"
2020-05-21 13:28:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-11 09:08:53 +00:00
checksum = "cc463cd8deddc3770d20f9852143d50bf6094e640b485cb2e189a2099085ff45"
2020-05-21 13:28:07 +00:00
dependencies = [
2022-03-09 18:58:46 +00:00
"bytes",
2020-05-21 13:28:07 +00:00
"futures-core",
"futures-sink",
2022-03-09 18:58:46 +00:00
"pin-project-lite",
"tokio",
2022-06-11 09:08:53 +00:00
"tracing",
2020-05-21 13:28:07 +00:00
]
2021-02-05 12:21:10 +00:00
[[package]]
name = "tower-service"
2022-08-04 11:23:42 +00:00
version = "0.3.2"
2021-02-05 12:21:10 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-04 11:23:42 +00:00
checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52"
2021-02-05 12:21:10 +00:00
[[package]]
name = "tracing"
2022-08-04 11:23:42 +00:00
version = "0.1.36"
2021-02-05 12:21:10 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-04 11:23:42 +00:00
checksum = "2fce9567bd60a67d08a16488756721ba392f24f29006402881e43b19aac64307"
2021-02-05 12:21:10 +00:00
dependencies = [
2022-03-09 18:58:46 +00:00
"cfg-if",
2022-06-11 09:08:53 +00:00
"log",
2022-03-09 18:58:46 +00:00
"pin-project-lite",
2022-03-09 17:45:34 +00:00
"tracing-attributes",
2021-02-05 12:21:10 +00:00
"tracing-core",
]
2022-03-09 17:45:34 +00:00
[[package]]
name = "tracing-attributes"
2022-08-04 11:23:42 +00:00
version = "0.1.22"
2022-03-09 17:45:34 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-04 11:23:42 +00:00
checksum = "11c75893af559bc8e10716548bdef5cb2b983f8e637db9d0e15126b61b484ee2"
2022-03-09 17:45:34 +00:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
2021-02-05 12:21:10 +00:00
[[package]]
name = "tracing-core"
2022-08-04 11:23:42 +00:00
version = "0.1.29"
2021-02-05 12:21:10 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-04 11:23:42 +00:00
checksum = "5aeea4303076558a00714b823f9ad67d58a3bbda1df83d8827d21193156e22f7"
2021-02-05 12:21:10 +00:00
dependencies = [
2022-06-11 09:08:53 +00:00
"once_cell",
2021-02-05 12:21:10 +00:00
]
[[package]]
name = "try-lock"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642"
2020-06-20 08:31:58 +00:00
[[package]]
name = "twoway"
2021-05-29 15:10:46 +00:00
version = "0.2.2"
2020-06-20 08:31:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "c57ffb460d7c24cd6eda43694110189030a3d1dfe418416d9468fd1c1d290b47"
2020-06-20 08:31:58 +00:00
dependencies = [
"memchr",
"unchecked-index",
]
2020-05-21 07:21:58 +00:00
[[package]]
name = "twox-hash"
2022-06-11 09:08:53 +00:00
version = "1.6.3"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-11 09:08:53 +00:00
checksum = "97fee6b57c6a41524a810daee9286c02d7752c4253064d0b05472833a438f675"
2020-05-21 07:21:58 +00:00
dependencies = [
2022-03-09 18:58:46 +00:00
"cfg-if",
2022-03-09 17:16:33 +00:00
"rand 0.8.5",
2021-02-19 15:44:50 +00:00
"static_assertions",
2020-05-21 07:21:58 +00:00
]
[[package]]
name = "typenum"
2021-12-28 10:27:26 +00:00
version = "1.15.0"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-28 10:27:26 +00:00
checksum = "dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987"
2020-05-21 07:21:58 +00:00
2020-06-20 08:31:58 +00:00
[[package]]
name = "unchecked-index"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eeba86d422ce181a719445e51872fa30f1f7413b62becb52e95ec91aa262d85c"
2020-07-08 09:03:17 +00:00
[[package]]
name = "unicase"
version = "2.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6"
dependencies = [
2022-03-09 18:58:46 +00:00
"version_check",
2020-07-08 09:03:17 +00:00
]
2020-05-21 07:21:58 +00:00
[[package]]
name = "unicode-bidi"
2022-06-11 09:08:53 +00:00
version = "0.3.8"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-11 09:08:53 +00:00
checksum = "099b7128301d285f79ddd55b9a83d5e6b9e97c92e0ea0daebee7263e932de992"
[[package]]
name = "unicode-ident"
2022-08-04 11:23:42 +00:00
version = "1.0.2"
2022-06-11 09:08:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-04 11:23:42 +00:00
checksum = "15c61ba63f9235225a22310255a29b806b907c9b8c964bcbd0a2c70f3f2deea7"
2020-05-21 07:21:58 +00:00
[[package]]
name = "unicode-normalization"
2022-08-04 11:23:42 +00:00
version = "0.1.21"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-04 11:23:42 +00:00
checksum = "854cbdc4f7bc6ae19c820d44abdc3277ac3e1b2b93db20a636825d9322fb60e6"
2020-05-21 07:21:58 +00:00
dependencies = [
2021-02-19 15:31:45 +00:00
"tinyvec",
2020-05-21 07:21:58 +00:00
]
[[package]]
name = "untrusted"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
2020-05-21 07:21:58 +00:00
[[package]]
name = "url"
2021-05-29 15:10:46 +00:00
version = "2.2.2"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "a507c383b2d33b5fc35d1861e77e6b383d158b2da5e14fe51b83dfedf6fd578c"
2020-05-21 07:21:58 +00:00
dependencies = [
2021-02-19 15:31:45 +00:00
"form_urlencoded",
2020-05-21 07:21:58 +00:00
"idna",
"matches",
"percent-encoding",
2022-03-09 17:45:34 +00:00
"serde",
2020-05-21 07:21:58 +00:00
]
2021-04-08 14:45:29 +00:00
[[package]]
name = "utf-8"
2021-05-29 15:10:46 +00:00
version = "0.7.6"
2021-04-08 14:45:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
2021-04-08 14:45:29 +00:00
2020-05-21 07:21:58 +00:00
[[package]]
name = "uuid"
2021-02-19 15:31:45 +00:00
version = "0.8.2"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:31:45 +00:00
checksum = "bc5cf98d8186244414c848017f0e2676b3fcb46807f6668a97dfe67359a3c4b7"
2020-05-21 07:21:58 +00:00
[[package]]
name = "vcpkg"
2021-12-28 10:27:26 +00:00
version = "0.2.15"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-28 10:27:26 +00:00
checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
2020-05-21 07:21:58 +00:00
2020-07-08 09:03:17 +00:00
[[package]]
name = "version_check"
2022-03-09 17:16:33 +00:00
version = "0.9.4"
2020-07-08 09:03:17 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-09 17:16:33 +00:00
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
2020-07-08 09:03:17 +00:00
2021-02-05 12:21:10 +00:00
[[package]]
name = "want"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0"
dependencies = [
"log",
"try-lock",
]
2020-05-21 07:21:58 +00:00
[[package]]
name = "wasi"
version = "0.9.0+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
2021-02-19 15:31:45 +00:00
[[package]]
name = "wasi"
version = "0.10.0+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f"
2022-06-11 09:08:53 +00:00
[[package]]
name = "wasi"
version = "0.11.0+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
2021-02-05 12:21:10 +00:00
[[package]]
name = "wasm-bindgen"
2022-08-04 11:23:42 +00:00
version = "0.2.82"
2021-02-05 12:21:10 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-04 11:23:42 +00:00
checksum = "fc7652e3f6c4706c8d9cd54832c4a4ccb9b5336e2c3bd154d5cccfbf1c1f5f7d"
2021-02-05 12:21:10 +00:00
dependencies = [
2022-03-09 18:58:46 +00:00
"cfg-if",
2021-02-05 12:21:10 +00:00
"wasm-bindgen-macro",
]
[[package]]
name = "wasm-bindgen-backend"
2022-08-04 11:23:42 +00:00
version = "0.2.82"
2021-02-05 12:21:10 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-04 11:23:42 +00:00
checksum = "662cd44805586bd52971b9586b1df85cdbbd9112e4ef4d8f41559c334dc6ac3f"
2021-02-05 12:21:10 +00:00
dependencies = [
"bumpalo",
"log",
2022-08-04 11:23:42 +00:00
"once_cell",
2021-12-28 10:27:26 +00:00
"proc-macro2",
"quote",
"syn",
2021-02-05 12:21:10 +00:00
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-futures"
2022-08-04 11:23:42 +00:00
version = "0.4.32"
2021-02-05 12:21:10 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-04 11:23:42 +00:00
checksum = "fa76fb221a1f8acddf5b54ace85912606980ad661ac7a503b4570ffd3a624dad"
2021-02-05 12:21:10 +00:00
dependencies = [
2022-03-09 18:58:46 +00:00
"cfg-if",
2021-02-05 12:21:10 +00:00
"js-sys",
"wasm-bindgen",
"web-sys",
]
[[package]]
name = "wasm-bindgen-macro"
2022-08-04 11:23:42 +00:00
version = "0.2.82"
2021-02-05 12:21:10 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-04 11:23:42 +00:00
checksum = "b260f13d3012071dfb1512849c033b1925038373aea48ced3012c09df952c602"
2021-02-05 12:21:10 +00:00
dependencies = [
2021-12-28 10:27:26 +00:00
"quote",
2021-02-05 12:21:10 +00:00
"wasm-bindgen-macro-support",
]
[[package]]
name = "wasm-bindgen-macro-support"
2022-08-04 11:23:42 +00:00
version = "0.2.82"
2021-02-05 12:21:10 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-04 11:23:42 +00:00
checksum = "5be8e654bdd9b79216c2929ab90721aa82faf65c48cdf08bdc4e7f51357b80da"
2021-02-05 12:21:10 +00:00
dependencies = [
2021-12-28 10:27:26 +00:00
"proc-macro2",
"quote",
"syn",
2021-02-05 12:21:10 +00:00
"wasm-bindgen-backend",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-shared"
2022-08-04 11:23:42 +00:00
version = "0.2.82"
2021-02-05 12:21:10 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-04 11:23:42 +00:00
checksum = "6598dd0bd3c7d51095ff6531a5b23e02acdc81804e30d8f07afb77b7215a140a"
2021-02-05 12:21:10 +00:00
[[package]]
name = "web-sys"
2022-08-04 11:23:42 +00:00
version = "0.3.59"
2021-02-05 12:21:10 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-04 11:23:42 +00:00
checksum = "ed055ab27f941423197eb86b2035720b1a3ce40504df082cac2ecc6ed73335a1"
2021-02-05 12:21:10 +00:00
dependencies = [
"js-sys",
"wasm-bindgen",
]
[[package]]
name = "webauthn-rs"
2022-03-09 17:45:34 +00:00
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-09 17:45:34 +00:00
checksum = "90b266eccb4b32595876f5c73ea443b0516da0b1df72ca07bc08ed9ba7f96ec1"
dependencies = [
2022-03-09 17:45:34 +00:00
"base64 0.13.0",
2022-03-09 18:58:46 +00:00
"nom",
"openssl",
2022-03-09 17:45:34 +00:00
"rand 0.8.5",
"serde",
"serde_cbor",
"serde_derive",
"serde_json",
"thiserror",
2022-03-09 17:45:34 +00:00
"tracing",
"url",
]
2021-04-08 14:45:29 +00:00
[[package]]
name = "webpage"
2021-12-28 10:27:26 +00:00
version = "1.4.0"
2021-04-08 14:45:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-28 10:27:26 +00:00
checksum = "4d03ebca8fe2492fffdb5be0f681a942665c50488348d8abc00efb470e0ea890"
2021-04-08 14:45:29 +00:00
dependencies = [
"curl",
"html5ever",
2021-12-28 10:27:26 +00:00
"markup5ever_rcdom",
2021-04-08 14:45:29 +00:00
"serde_json",
]
[[package]]
name = "webpki"
version = "0.21.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b8e38c0608262c46d4a56202ebabdeb094cef7e560ca7a226c6bf055188aa4ea"
dependencies = [
"ring",
"untrusted",
]
[[package]]
name = "webpki-roots"
version = "0.19.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f8eff4b7516a57307f9349c64bf34caa34b940b66fed4b2fb3136cb7386e5739"
dependencies = [
"webpki",
]
2021-02-11 17:29:29 +00:00
[[package]]
name = "webrtc-sdp"
2022-03-09 17:16:33 +00:00
version = "0.3.9"
2021-02-11 17:29:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-09 17:16:33 +00:00
checksum = "99abde0f90c17b56ccc3c105f719d61535003862bdb357465f04181ca667ca16"
2021-02-11 17:29:29 +00:00
dependencies = [
"log",
"url",
]
2021-02-19 15:31:45 +00:00
[[package]]
name = "weezl"
2022-08-04 11:23:42 +00:00
version = "0.1.7"
2021-02-19 15:31:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-04 11:23:42 +00:00
checksum = "9193164d4de03a926d909d3bc7c30543cecb35400c02114792c2cae20d5e2dbb"
2021-02-19 15:31:45 +00:00
[[package]]
name = "wildmatch"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7f44b95f62d34113cf558c93511ac93027e03e9c29a60dd0fd70e6e025c7270a"
2020-05-21 07:21:58 +00:00
[[package]]
name = "winapi"
2021-02-19 15:31:45 +00:00
version = "0.3.9"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:31:45 +00:00
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
2020-05-21 07:21:58 +00:00
dependencies = [
"winapi-i686-pc-windows-gnu",
"winapi-x86_64-pc-windows-gnu",
]
[[package]]
name = "winapi-i686-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
[[package]]
name = "winapi-x86_64-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
2020-05-21 13:28:07 +00:00
[[package]]
2022-03-09 18:58:46 +00:00
name = "windows-sys"
2022-06-11 09:08:53 +00:00
version = "0.36.1"
2020-05-21 13:28:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-11 09:08:53 +00:00
checksum = "ea04155a16a59f9eab786fe12a4a450e75cdb175f9e0d80da1e17db09f55b8d2"
2020-05-21 13:28:07 +00:00
dependencies = [
2022-03-09 18:58:46 +00:00
"windows_aarch64_msvc",
"windows_i686_gnu",
"windows_i686_msvc",
"windows_x86_64_gnu",
"windows_x86_64_msvc",
2020-05-21 13:28:07 +00:00
]
2021-02-05 12:21:10 +00:00
[[package]]
2022-03-09 18:58:46 +00:00
name = "windows_aarch64_msvc"
2022-06-11 09:08:53 +00:00
version = "0.36.1"
2021-02-05 12:21:10 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-11 09:08:53 +00:00
checksum = "9bb8c3fd39ade2d67e9874ac4f3db21f0d710bee00fe7cab16949ec184eeaa47"
2021-02-05 12:21:10 +00:00
2020-05-21 13:28:07 +00:00
[[package]]
2022-03-09 18:58:46 +00:00
name = "windows_i686_gnu"
2022-06-11 09:08:53 +00:00
version = "0.36.1"
2020-05-21 13:28:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-11 09:08:53 +00:00
checksum = "180e6ccf01daf4c426b846dfc66db1fc518f074baa793aa7d9b9aaeffad6a3b6"
2022-03-09 18:58:46 +00:00
[[package]]
name = "windows_i686_msvc"
2022-06-11 09:08:53 +00:00
version = "0.36.1"
2022-03-09 18:58:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-11 09:08:53 +00:00
checksum = "e2e7917148b2812d1eeafaeb22a97e4813dfa60a3f8f78ebe204bcc88f12f024"
2022-03-09 18:58:46 +00:00
[[package]]
name = "windows_x86_64_gnu"
2022-06-11 09:08:53 +00:00
version = "0.36.1"
2022-03-09 18:58:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-11 09:08:53 +00:00
checksum = "4dcd171b8776c41b97521e5da127a2d86ad280114807d0b2ab1e462bc764d9e1"
2022-03-09 18:58:46 +00:00
[[package]]
name = "windows_x86_64_msvc"
2022-06-11 09:08:53 +00:00
version = "0.36.1"
2022-03-09 18:58:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-11 09:08:53 +00:00
checksum = "c811ca4a8c853ef420abd8592ba53ddbbac90410fab6903b3e79972a631f7680"
2022-03-09 18:58:46 +00:00
[[package]]
name = "winreg"
2022-06-11 09:08:53 +00:00
version = "0.10.1"
2022-03-09 18:58:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-11 09:08:53 +00:00
checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d"
2020-05-21 13:28:07 +00:00
dependencies = [
2022-03-09 18:58:46 +00:00
"winapi",
2020-05-21 13:28:07 +00:00
]
2022-03-09 18:21:57 +00:00
[[package]]
name = "wyz"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "129e027ad65ce1453680623c3fb5163cbf7107bfe1aa32257e7d0e63f9ced188"
dependencies = [
"tap",
]
2021-12-28 10:27:26 +00:00
[[package]]
name = "xml5ever"
version = "0.16.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9234163818fd8e2418fcde330655e757900d4236acd8cc70fef345ef91f6d865"
dependencies = [
"log",
"mac",
"markup5ever",
"time 0.1.44",
]
2020-05-20 17:05:59 +00:00
[[package]]
name = "yaml-rust"
2021-02-19 15:31:45 +00:00
version = "0.4.5"
2020-05-20 17:05:59 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:31:45 +00:00
checksum = "56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85"
2020-05-20 17:05:59 +00:00
dependencies = [
"linked-hash-map",
]
2021-03-06 08:35:36 +00:00
2022-06-11 09:08:53 +00:00
[[package]]
name = "zeroize"
2022-08-04 11:23:42 +00:00
version = "1.5.7"
2022-06-11 09:08:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-04 11:23:42 +00:00
checksum = "c394b5bd0c6f669e7275d9c20aa90ae064cb22e75a1cad54e1b34088034b149f"
2022-06-11 09:08:53 +00:00
2021-03-06 08:35:36 +00:00
[[package]]
name = "zip"
2022-06-11 09:08:53 +00:00
version = "0.6.2"
2021-03-06 08:35:36 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-11 09:08:53 +00:00
checksum = "bf225bcf73bb52cbb496e70475c7bd7a3f769df699c0020f6c7bd9a96dcf0b8d"
2021-03-06 08:35:36 +00:00
dependencies = [
2022-06-11 09:08:53 +00:00
"aes 0.7.5",
2021-03-06 08:35:36 +00:00
"byteorder",
"bzip2",
2022-06-11 09:08:53 +00:00
"constant_time_eq",
2021-03-06 08:35:36 +00:00
"crc32fast",
2022-06-11 09:08:53 +00:00
"crossbeam-utils",
2021-03-06 08:35:36 +00:00
"flate2",
2022-06-11 09:08:53 +00:00
"hmac",
"pbkdf2",
"sha1",
2022-08-04 11:23:42 +00:00
"time 0.3.12",
2022-06-11 09:08:53 +00:00
"zstd",
2021-03-06 08:35:36 +00:00
]
2022-03-09 18:58:46 +00:00
[[package]]
name = "zstd"
2022-06-11 09:08:53 +00:00
version = "0.10.2+zstd.1.5.2"
2022-03-09 18:58:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-11 09:08:53 +00:00
checksum = "5f4a6bd64f22b5e3e94b4e238669ff9f10815c27a5180108b849d24174a83847"
2022-03-09 18:58:46 +00:00
dependencies = [
"zstd-safe",
]
[[package]]
name = "zstd-safe"
2022-06-11 09:08:53 +00:00
version = "4.1.6+zstd.1.5.2"
2022-03-09 18:58:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-11 09:08:53 +00:00
checksum = "94b61c51bb270702d6167b8ce67340d2754b088d0c091b06e593aa772c3ee9bb"
2022-03-09 18:58:46 +00:00
dependencies = [
"libc",
"zstd-sys",
]
[[package]]
name = "zstd-sys"
version = "1.6.3+zstd.1.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fc49afa5c8d634e75761feda8c592051e7eeb4683ba827211eb0d731d3402ea8"
dependencies = [
"cc",
"libc",
]