2019-04-16 16:57:06 +02:00
|
|
|
# This file is automatically @generated by Cargo.
|
|
|
|
# It is not intended for manual editing.
|
2021-09-03 13:13:03 +02:00
|
|
|
version = 3
|
|
|
|
|
2020-07-27 06:16:38 +02:00
|
|
|
[[package]]
|
|
|
|
name = "ab_glyph_rasterizer"
|
2022-01-29 21:18:50 +01:00
|
|
|
version = "0.1.5"
|
2019-04-16 16:57:06 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-01-29 21:18:50 +01:00
|
|
|
checksum = "a13739d7177fbd22bb0ed28badfff9f372f8bef46c863db4e1c6248f6b223b6e"
|
2019-04-16 16:57:06 +02:00
|
|
|
|
2022-02-16 05:16:16 +01:00
|
|
|
[[package]]
|
|
|
|
name = "actix-codec"
|
|
|
|
version = "0.5.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "57a7559404a7f3573127aab53c08ce37a6c6a315c374a31070f3c91cd1b4a7fe"
|
|
|
|
dependencies = [
|
|
|
|
"bitflags",
|
|
|
|
"bytes",
|
|
|
|
"futures-core",
|
|
|
|
"futures-sink",
|
|
|
|
"log",
|
|
|
|
"memchr",
|
|
|
|
"pin-project-lite",
|
|
|
|
"tokio",
|
|
|
|
"tokio-util 0.7.0",
|
2020-09-12 14:01:59 +02:00
|
|
|
]
|
|
|
|
|
2019-04-16 16:57:06 +02:00
|
|
|
[[package]]
|
|
|
|
name = "actix-http"
|
2022-03-09 18:55:23 +01:00
|
|
|
version = "3.0.3"
|
2019-04-16 16:57:06 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-03-09 18:55:23 +01:00
|
|
|
checksum = "86f4fb03b18c988b0944792e2538c7c1a4b32d3019214e2a734846e45207743e"
|
2020-02-12 20:08:24 +01:00
|
|
|
dependencies = [
|
2022-02-28 05:22:28 +01:00
|
|
|
"actix-codec",
|
2021-02-26 15:51:35 +01:00
|
|
|
"actix-rt",
|
2020-02-12 20:08:24 +01:00
|
|
|
"actix-service",
|
2021-02-26 16:28:04 +01:00
|
|
|
"actix-utils",
|
2022-04-04 06:17:51 +02:00
|
|
|
"ahash",
|
2020-10-30 21:02:12 +01:00
|
|
|
"base64 0.13.0",
|
2020-02-12 20:08:24 +01:00
|
|
|
"bitflags",
|
2022-01-29 21:18:50 +01:00
|
|
|
"brotli",
|
2021-09-03 13:13:03 +02:00
|
|
|
"bytes",
|
|
|
|
"bytestring",
|
2020-02-12 20:08:24 +01:00
|
|
|
"derive_more",
|
|
|
|
"encoding_rs",
|
|
|
|
"flate2",
|
|
|
|
"futures-core",
|
2021-02-26 16:04:58 +01:00
|
|
|
"h2",
|
2020-02-12 20:08:24 +01:00
|
|
|
"http",
|
|
|
|
"httparse",
|
2021-10-21 06:17:30 +02:00
|
|
|
"httpdate",
|
2022-02-17 12:01:16 +01:00
|
|
|
"itoa",
|
2020-02-12 20:08:24 +01:00
|
|
|
"language-tags",
|
2021-09-03 13:13:03 +02:00
|
|
|
"local-channel",
|
2020-02-12 20:08:24 +01:00
|
|
|
"log",
|
|
|
|
"mime",
|
|
|
|
"percent-encoding",
|
2021-09-03 13:13:03 +02:00
|
|
|
"pin-project-lite",
|
|
|
|
"rand",
|
2022-02-26 16:02:08 +01:00
|
|
|
"sha-1 0.10.0",
|
2021-09-03 13:13:03 +02:00
|
|
|
"smallvec",
|
|
|
|
"zstd",
|
2019-12-26 05:20:46 +01:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "actix-macros"
|
2021-11-05 05:15:43 +01:00
|
|
|
version = "0.2.3"
|
2019-04-16 16:57:06 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-11-05 05:15:43 +01:00
|
|
|
checksum = "465a6172cf69b960917811022d8f29bc0b7fa1398bc4f78b3c466673db1213b6"
|
2019-04-16 16:57:06 +02:00
|
|
|
dependencies = [
|
2020-02-12 20:08:24 +01:00
|
|
|
"quote",
|
|
|
|
"syn",
|
2019-04-16 16:57:06 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "actix-router"
|
2022-02-28 05:22:28 +01:00
|
|
|
version = "0.5.0"
|
2019-04-16 16:57:06 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-02-28 05:22:28 +01:00
|
|
|
checksum = "eb60846b52c118f2f04a56cc90880a274271c489b2498623d58176f8ca21fa80"
|
2019-04-16 16:57:06 +02:00
|
|
|
dependencies = [
|
2020-02-12 20:08:24 +01:00
|
|
|
"bytestring",
|
2021-09-14 13:03:18 +02:00
|
|
|
"firestorm",
|
2020-02-12 20:08:24 +01:00
|
|
|
"http",
|
|
|
|
"log",
|
|
|
|
"regex",
|
2022-02-26 16:02:08 +01:00
|
|
|
"serde",
|
2019-04-16 16:57:06 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "actix-rt"
|
2022-03-09 05:22:56 +01:00
|
|
|
version = "2.7.0"
|
2019-04-16 16:57:06 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-03-09 05:22:56 +01:00
|
|
|
checksum = "7ea16c295198e958ef31930a6ef37d0fb64e9ca3b6116e6b93a8bdae96ee1000"
|
2019-04-16 16:57:06 +02:00
|
|
|
dependencies = [
|
2021-02-26 15:51:35 +01:00
|
|
|
"actix-macros",
|
2021-09-03 13:13:03 +02:00
|
|
|
"futures-core",
|
2021-02-26 16:04:58 +01:00
|
|
|
"tokio",
|
2019-04-16 16:57:06 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "actix-server"
|
2022-03-09 18:55:23 +01:00
|
|
|
version = "2.1.1"
|
2019-04-16 16:57:06 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-03-09 18:55:23 +01:00
|
|
|
checksum = "0da34f8e659ea1b077bb4637948b815cd3768ad5a188fdcd74ff4d84240cd824"
|
2019-04-16 16:57:06 +02:00
|
|
|
dependencies = [
|
2021-02-26 15:51:35 +01:00
|
|
|
"actix-rt",
|
2020-02-12 20:08:24 +01:00
|
|
|
"actix-service",
|
2021-02-26 16:28:04 +01:00
|
|
|
"actix-utils",
|
2021-09-03 13:13:03 +02:00
|
|
|
"futures-core",
|
2022-01-29 21:18:50 +01:00
|
|
|
"futures-util",
|
2022-02-17 05:17:06 +01:00
|
|
|
"mio",
|
2020-02-12 20:08:24 +01:00
|
|
|
"num_cpus",
|
2022-01-29 21:18:50 +01:00
|
|
|
"socket2",
|
2021-09-03 13:13:03 +02:00
|
|
|
"tokio",
|
2022-03-09 18:55:23 +01:00
|
|
|
"tracing",
|
2019-04-16 16:57:06 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "actix-service"
|
2022-01-29 21:18:50 +01:00
|
|
|
version = "2.0.2"
|
2019-09-26 06:24:19 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-01-29 21:18:50 +01:00
|
|
|
checksum = "3b894941f818cfdc7ccc4b9e60fa7e53b5042a2e8567270f9147d5591893373a"
|
2019-09-26 06:24:19 +02:00
|
|
|
dependencies = [
|
2021-09-03 13:13:03 +02:00
|
|
|
"futures-core",
|
|
|
|
"paste",
|
|
|
|
"pin-project-lite",
|
2019-09-26 06:24:19 +02:00
|
|
|
]
|
|
|
|
|
2019-04-16 16:57:06 +02:00
|
|
|
[[package]]
|
2019-12-26 05:20:46 +01:00
|
|
|
name = "actix-tls"
|
2022-02-17 12:01:16 +01:00
|
|
|
version = "3.0.3"
|
2020-09-12 14:01:59 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-02-17 12:01:16 +01:00
|
|
|
checksum = "9fde0cf292f7cdc7f070803cb9a0d45c018441321a78b1042ffbbb81ec333297"
|
2020-09-12 14:01:59 +02:00
|
|
|
dependencies = [
|
2022-02-28 05:22:28 +01:00
|
|
|
"actix-codec",
|
2021-09-03 13:13:03 +02:00
|
|
|
"actix-rt",
|
2020-09-12 14:01:59 +02:00
|
|
|
"actix-service",
|
2021-02-26 16:28:04 +01:00
|
|
|
"actix-utils",
|
2021-09-03 13:13:03 +02:00
|
|
|
"futures-core",
|
|
|
|
"http",
|
|
|
|
"log",
|
2022-01-29 21:18:50 +01:00
|
|
|
"pin-project-lite",
|
2022-02-17 12:01:16 +01:00
|
|
|
"tokio-util 0.7.0",
|
2020-09-12 14:01:59 +02:00
|
|
|
]
|
|
|
|
|
2019-04-16 16:57:06 +02:00
|
|
|
[[package]]
|
|
|
|
name = "actix-utils"
|
2021-09-03 13:13:03 +02:00
|
|
|
version = "3.0.0"
|
2019-04-16 16:57:06 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-09-03 13:13:03 +02:00
|
|
|
checksum = "e491cbaac2e7fc788dfff99ff48ef317e23b3cf63dbaf7aaab6418f40f92aa94"
|
2019-04-16 16:57:06 +02:00
|
|
|
dependencies = [
|
2021-09-03 13:13:03 +02:00
|
|
|
"local-waker",
|
|
|
|
"pin-project-lite",
|
2019-04-16 16:57:06 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "actix-web"
|
2022-02-28 05:22:28 +01:00
|
|
|
version = "4.0.1"
|
2019-12-26 05:20:46 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-02-28 05:22:28 +01:00
|
|
|
checksum = "f4e5ebffd51d50df56a3ae0de0e59487340ca456f05dd0b90c0a7a6dd6a74d31"
|
2020-02-12 20:08:24 +01:00
|
|
|
dependencies = [
|
2022-02-28 05:22:28 +01:00
|
|
|
"actix-codec",
|
2020-02-12 20:08:24 +01:00
|
|
|
"actix-http",
|
2021-02-26 15:51:35 +01:00
|
|
|
"actix-macros",
|
2020-02-12 20:08:24 +01:00
|
|
|
"actix-router",
|
2021-02-26 15:51:35 +01:00
|
|
|
"actix-rt",
|
2020-02-12 20:08:24 +01:00
|
|
|
"actix-server",
|
|
|
|
"actix-service",
|
2021-02-26 16:28:04 +01:00
|
|
|
"actix-utils",
|
2020-02-12 20:08:24 +01:00
|
|
|
"actix-web-codegen",
|
2022-04-04 06:17:51 +02:00
|
|
|
"ahash",
|
2021-09-03 13:13:03 +02:00
|
|
|
"bytes",
|
2022-02-28 05:22:28 +01:00
|
|
|
"bytestring",
|
2021-09-03 13:13:03 +02:00
|
|
|
"cfg-if",
|
|
|
|
"cookie",
|
2020-02-12 20:08:24 +01:00
|
|
|
"derive_more",
|
|
|
|
"encoding_rs",
|
2020-09-12 14:01:59 +02:00
|
|
|
"futures-core",
|
|
|
|
"futures-util",
|
2022-02-17 12:01:16 +01:00
|
|
|
"itoa",
|
2021-09-03 13:13:03 +02:00
|
|
|
"language-tags",
|
2020-02-12 20:08:24 +01:00
|
|
|
"log",
|
|
|
|
"mime",
|
2021-09-03 13:13:03 +02:00
|
|
|
"once_cell",
|
2022-01-29 21:18:50 +01:00
|
|
|
"pin-project-lite",
|
2020-02-12 20:08:24 +01:00
|
|
|
"regex",
|
2022-02-26 16:02:08 +01:00
|
|
|
"serde",
|
2020-02-12 20:08:24 +01:00
|
|
|
"serde_json",
|
2020-11-30 05:17:12 +01:00
|
|
|
"serde_urlencoded",
|
2021-09-03 13:13:03 +02:00
|
|
|
"smallvec",
|
2020-09-12 14:01:59 +02:00
|
|
|
"socket2",
|
2022-03-10 05:16:17 +01:00
|
|
|
"time",
|
2020-02-12 20:08:24 +01:00
|
|
|
"url",
|
2019-04-16 16:57:06 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "actix-web-codegen"
|
2022-02-28 05:22:28 +01:00
|
|
|
version = "4.0.0"
|
2019-04-16 16:57:06 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-02-28 05:22:28 +01:00
|
|
|
checksum = "7525bedf54704abb1d469e88d7e7e9226df73778798a69cea5022d53b2ae91bc"
|
2019-04-16 16:57:06 +02:00
|
|
|
dependencies = [
|
2021-09-14 13:03:18 +02:00
|
|
|
"actix-router",
|
2020-02-12 20:08:24 +01:00
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
|
|
|
"syn",
|
2019-04-16 16:57:06 +02:00
|
|
|
]
|
|
|
|
|
2021-02-26 16:28:04 +01:00
|
|
|
[[package]]
|
|
|
|
name = "adler"
|
|
|
|
version = "1.0.2"
|
2019-11-14 05:21:38 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-02-26 16:28:04 +01:00
|
|
|
checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
|
2019-11-14 05:21:38 +01:00
|
|
|
|
2021-09-03 13:13:03 +02:00
|
|
|
[[package]]
|
|
|
|
name = "ahash"
|
2022-01-29 21:18:50 +01:00
|
|
|
version = "0.7.6"
|
2021-09-03 13:13:03 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-01-29 21:18:50 +01:00
|
|
|
checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47"
|
2021-09-03 13:13:03 +02:00
|
|
|
dependencies = [
|
|
|
|
"getrandom",
|
|
|
|
"once_cell",
|
|
|
|
"version_check",
|
|
|
|
]
|
|
|
|
|
2019-04-16 16:57:06 +02:00
|
|
|
[[package]]
|
|
|
|
name = "aho-corasick"
|
2021-09-14 13:03:18 +02:00
|
|
|
version = "0.7.18"
|
2019-04-16 16:57:06 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-09-14 13:03:18 +02:00
|
|
|
checksum = "1e37cfd5e7657ada45f742d6e99ca5788580b5c529dc78faf11ece6dc702656f"
|
2019-04-16 16:57:06 +02:00
|
|
|
dependencies = [
|
2020-02-12 20:08:24 +01:00
|
|
|
"memchr",
|
2019-04-16 16:57:06 +02:00
|
|
|
]
|
|
|
|
|
2022-01-29 21:18:50 +01: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",
|
|
|
|
]
|
|
|
|
|
2020-10-30 16:40:35 +01:00
|
|
|
[[package]]
|
|
|
|
name = "ansi_term"
|
|
|
|
version = "0.12.1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2"
|
|
|
|
dependencies = [
|
2021-09-03 13:13:03 +02:00
|
|
|
"winapi",
|
2020-10-30 16:40:35 +01:00
|
|
|
]
|
|
|
|
|
2021-03-29 12:12:46 +02:00
|
|
|
[[package]]
|
|
|
|
name = "anyhow"
|
2022-03-09 18:55:23 +01:00
|
|
|
version = "1.0.56"
|
2021-03-29 12:12:46 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-03-09 18:55:23 +01:00
|
|
|
checksum = "4361135be9122e0870de935d7c439aef945b9f9ddd4199a553b5270b49c82a27"
|
2021-03-29 12:12:46 +02:00
|
|
|
|
2019-04-16 16:57:06 +02:00
|
|
|
[[package]]
|
2022-02-26 16:02:08 +01:00
|
|
|
name = "async-trait"
|
|
|
|
version = "0.1.52"
|
2019-04-16 16:57:06 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-02-26 16:02:08 +01:00
|
|
|
checksum = "061a7acccaa286c011ddc30970520b98fa40e00c9d644633fb26b5fc63a265e3"
|
|
|
|
dependencies = [
|
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
|
|
|
"syn",
|
|
|
|
]
|
2019-04-16 16:57:06 +02:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "autocfg"
|
2022-02-17 12:01:16 +01:00
|
|
|
version = "1.1.0"
|
2019-04-16 16:57:06 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-02-17 12:01:16 +01:00
|
|
|
checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
|
2019-04-16 16:57:06 +02:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "awc"
|
2022-03-09 05:22:51 +01:00
|
|
|
version = "3.0.0"
|
2019-04-16 16:57:06 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-03-09 05:22:51 +01:00
|
|
|
checksum = "65c60c44fbf3c8cee365e86b97d706e513b733c4eeb16437b45b88d2fffe889a"
|
2019-04-16 16:57:06 +02:00
|
|
|
dependencies = [
|
2022-02-28 05:22:28 +01:00
|
|
|
"actix-codec",
|
2020-02-12 20:08:24 +01:00
|
|
|
"actix-http",
|
2021-02-26 15:51:35 +01:00
|
|
|
"actix-rt",
|
2020-02-12 20:08:24 +01:00
|
|
|
"actix-service",
|
2021-11-16 05:15:07 +01:00
|
|
|
"actix-tls",
|
|
|
|
"actix-utils",
|
2022-04-04 06:17:51 +02:00
|
|
|
"ahash",
|
2020-11-30 05:17:12 +01:00
|
|
|
"base64 0.13.0",
|
2021-09-03 13:13:03 +02:00
|
|
|
"bytes",
|
|
|
|
"cfg-if",
|
|
|
|
"cookie",
|
2020-02-12 20:08:24 +01:00
|
|
|
"derive_more",
|
|
|
|
"futures-core",
|
2021-11-16 05:15:07 +01:00
|
|
|
"futures-util",
|
|
|
|
"h2",
|
|
|
|
"http",
|
2022-02-17 12:01:16 +01:00
|
|
|
"itoa",
|
2020-02-12 20:08:24 +01:00
|
|
|
"log",
|
|
|
|
"mime",
|
|
|
|
"percent-encoding",
|
2021-09-03 13:13:03 +02:00
|
|
|
"pin-project-lite",
|
|
|
|
"rand",
|
2022-02-26 16:02:08 +01:00
|
|
|
"serde",
|
2020-02-12 20:08:24 +01:00
|
|
|
"serde_json",
|
2020-11-30 05:17:12 +01:00
|
|
|
"serde_urlencoded",
|
2021-11-16 05:15:07 +01:00
|
|
|
"tokio",
|
2019-04-16 16:57:06 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "badge"
|
2020-07-27 06:16:38 +02:00
|
|
|
version = "0.3.0"
|
2019-04-16 16:57:06 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-07-27 06:16:38 +02:00
|
|
|
checksum = "d0228ae65b89e72921e86c19c3574da63bda0628e9d7da5e164f569bbf4e477d"
|
2019-04-16 16:57:06 +02:00
|
|
|
dependencies = [
|
2021-02-26 16:28:04 +01:00
|
|
|
"base64 0.12.3",
|
2020-07-27 06:16:38 +02:00
|
|
|
"once_cell",
|
2020-02-12 20:08:24 +01:00
|
|
|
"rusttype",
|
2019-04-16 16:57:06 +02:00
|
|
|
]
|
|
|
|
|
2020-04-27 06:16:47 +02:00
|
|
|
[[package]]
|
|
|
|
name = "base64"
|
2021-02-26 16:28:04 +01:00
|
|
|
version = "0.12.3"
|
2020-04-27 06:16:47 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-02-26 16:28:04 +01:00
|
|
|
checksum = "3441f0f7b02788e948e47f457ca01f1d7e6d92c693bc132c22b087d3141c03ff"
|
2020-04-27 06:16:47 +02:00
|
|
|
|
2020-10-30 21:02:12 +01:00
|
|
|
[[package]]
|
|
|
|
name = "base64"
|
|
|
|
version = "0.13.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd"
|
|
|
|
|
2019-04-16 16:57:06 +02:00
|
|
|
[[package]]
|
|
|
|
name = "bitflags"
|
2021-09-14 13:03:18 +02:00
|
|
|
version = "1.3.2"
|
2019-04-16 16:57:06 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-09-14 13:03:18 +02:00
|
|
|
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
2019-04-16 16:57:06 +02:00
|
|
|
|
2022-02-26 16:02:08 +01:00
|
|
|
[[package]]
|
|
|
|
name = "block-buffer"
|
|
|
|
version = "0.7.3"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "c0940dc441f31689269e10ac70eb1002a3a1d3ad1390e030043662eb7fe4688b"
|
|
|
|
dependencies = [
|
|
|
|
"block-padding",
|
|
|
|
"byte-tools",
|
|
|
|
"byteorder",
|
|
|
|
"generic-array 0.12.4",
|
|
|
|
]
|
|
|
|
|
2020-09-12 14:01:59 +02:00
|
|
|
[[package]]
|
|
|
|
name = "block-buffer"
|
2022-02-17 12:01:16 +01:00
|
|
|
version = "0.10.2"
|
2020-09-12 14:01:59 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-02-17 12:01:16 +01:00
|
|
|
checksum = "0bf7fe51849ea569fd452f37822f606a5cabb684dc918707a0193fd4664ff324"
|
2020-09-12 14:01:59 +02:00
|
|
|
dependencies = [
|
2022-02-26 16:02:08 +01:00
|
|
|
"generic-array 0.14.5",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "block-padding"
|
|
|
|
version = "0.1.5"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "fa79dedbb091f449f1f39e53edf88d5dbe95f895dae6135a8d7b881fb5af73f5"
|
|
|
|
dependencies = [
|
|
|
|
"byte-tools",
|
2020-09-12 14:01:59 +02:00
|
|
|
]
|
|
|
|
|
2019-04-16 16:57:06 +02:00
|
|
|
[[package]]
|
2022-01-29 21:18:50 +01:00
|
|
|
name = "brotli"
|
|
|
|
version = "3.3.3"
|
2019-04-16 16:57:06 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-01-29 21:18:50 +01:00
|
|
|
checksum = "f838e47a451d5a8fa552371f80024dd6ace9b7acdf25c4c3d0f9bc6816fb1c39"
|
2019-04-16 16:57:06 +02:00
|
|
|
dependencies = [
|
2022-01-29 21:18:50 +01:00
|
|
|
"alloc-no-stdlib",
|
|
|
|
"alloc-stdlib",
|
|
|
|
"brotli-decompressor",
|
2019-04-16 16:57:06 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
2022-01-29 21:18:50 +01:00
|
|
|
name = "brotli-decompressor"
|
|
|
|
version = "2.3.2"
|
2019-04-16 16:57:06 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-01-29 21:18:50 +01:00
|
|
|
checksum = "59ad2d4653bf5ca36ae797b1f4bb4dbddb60ce49ca4aed8a2ce4829f60425b80"
|
2019-04-16 16:57:06 +02:00
|
|
|
dependencies = [
|
2022-01-29 21:18:50 +01:00
|
|
|
"alloc-no-stdlib",
|
|
|
|
"alloc-stdlib",
|
2019-04-16 16:57:06 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
2020-02-12 19:45:18 +01:00
|
|
|
name = "bumpalo"
|
2022-01-29 21:18:50 +01:00
|
|
|
version = "3.9.1"
|
2019-04-16 16:57:06 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-01-29 21:18:50 +01:00
|
|
|
checksum = "a4a45a46ab1f2412e53d3a0ade76ffad2025804294569aae387231a0cd6e0899"
|
2019-04-16 16:57:06 +02:00
|
|
|
|
2022-02-26 16:02:08 +01:00
|
|
|
[[package]]
|
|
|
|
name = "byte-tools"
|
|
|
|
version = "0.3.1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "e3b5ca7a04898ad4bcd41c90c5285445ff5b791899bb1b0abdd2a2aa791211d7"
|
|
|
|
|
2019-04-23 18:19:35 +02:00
|
|
|
[[package]]
|
|
|
|
name = "bytecount"
|
2021-02-26 16:28:04 +01:00
|
|
|
version = "0.6.2"
|
2019-04-23 18:19:35 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-02-26 16:28:04 +01:00
|
|
|
checksum = "72feb31ffc86498dacdbd0fcebb56138e7177a8cc5cea4516031d15ae85a742e"
|
2019-04-23 18:19:35 +02:00
|
|
|
|
2022-02-26 16:02:08 +01:00
|
|
|
[[package]]
|
|
|
|
name = "byteorder"
|
|
|
|
version = "1.4.3"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
|
|
|
|
|
2020-10-27 10:32:39 +01:00
|
|
|
[[package]]
|
|
|
|
name = "bytes"
|
2021-09-03 12:00:46 +02:00
|
|
|
version = "1.1.0"
|
2020-10-27 10:32:39 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-09-03 12:00:46 +02:00
|
|
|
checksum = "c4872d67bab6358e59559027aa3b9157c53d9358c51423c17554809a8858e0f8"
|
2020-10-27 10:32:39 +01:00
|
|
|
|
2019-04-16 16:57:06 +02:00
|
|
|
[[package]]
|
2019-12-26 05:20:46 +01:00
|
|
|
name = "bytestring"
|
2021-02-26 16:28:04 +01:00
|
|
|
version = "1.0.0"
|
2019-04-16 16:57:06 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-02-26 16:28:04 +01:00
|
|
|
checksum = "90706ba19e97b90786e19dc0d5e2abd80008d99d4c0c5d1ad0b5e72cec7c494d"
|
2019-04-16 16:57:06 +02:00
|
|
|
dependencies = [
|
2021-09-03 13:13:03 +02:00
|
|
|
"bytes",
|
2019-04-16 16:57:06 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "cc"
|
2022-02-17 12:01:16 +01:00
|
|
|
version = "1.0.73"
|
2019-04-16 16:57:06 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-02-17 12:01:16 +01:00
|
|
|
checksum = "2fff2a6927b3bb87f9595d67196a70493f627687a71d87a0d692242c33f58c11"
|
2020-02-12 20:17:59 +01:00
|
|
|
dependencies = [
|
|
|
|
"jobserver",
|
|
|
|
]
|
2019-04-16 16:57:06 +02:00
|
|
|
|
2020-11-24 05:17:21 +01:00
|
|
|
[[package]]
|
|
|
|
name = "cfg-if"
|
|
|
|
version = "1.0.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
|
|
|
|
2019-04-21 20:44:29 +02:00
|
|
|
[[package]]
|
2020-11-24 19:06:18 +01:00
|
|
|
name = "config"
|
2022-04-14 06:14:40 +02:00
|
|
|
version = "0.13.1"
|
2019-04-21 20:44:29 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-04-14 06:14:40 +02:00
|
|
|
checksum = "3ea917b74b6edfb5024e3b55d3c8f710b5f4ed92646429601a42e96f0812b31b"
|
2019-04-21 20:44:29 +02:00
|
|
|
dependencies = [
|
2022-02-26 16:02:08 +01:00
|
|
|
"async-trait",
|
|
|
|
"json5",
|
2020-11-24 19:06:18 +01:00
|
|
|
"lazy_static",
|
2022-02-26 16:02:08 +01:00
|
|
|
"nom",
|
|
|
|
"pathdiff",
|
|
|
|
"ron",
|
2020-11-24 19:06:18 +01:00
|
|
|
"rust-ini",
|
2022-02-26 16:02:08 +01:00
|
|
|
"serde",
|
2020-11-24 19:06:18 +01:00
|
|
|
"serde_json",
|
|
|
|
"toml",
|
|
|
|
"yaml-rust",
|
2019-04-21 20:44:29 +02:00
|
|
|
]
|
|
|
|
|
2021-09-14 13:03:18 +02:00
|
|
|
[[package]]
|
|
|
|
name = "convert_case"
|
|
|
|
version = "0.4.0"
|
2020-09-12 14:01:59 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-09-14 13:03:18 +02:00
|
|
|
checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e"
|
2020-09-12 14:01:59 +02:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "cookie"
|
2022-01-29 21:18:50 +01:00
|
|
|
version = "0.16.0"
|
2020-09-12 14:01:59 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-01-29 21:18:50 +01:00
|
|
|
checksum = "94d4706de1b0fa5b132270cddffa8585166037822e260a944fe161acd137ca05"
|
2020-09-12 14:01:59 +02:00
|
|
|
dependencies = [
|
|
|
|
"percent-encoding",
|
2022-03-10 05:16:17 +01:00
|
|
|
"time",
|
2021-02-26 16:28:04 +01:00
|
|
|
"version_check",
|
2020-09-12 14:01:59 +02:00
|
|
|
]
|
|
|
|
|
2019-04-21 20:44:29 +02:00
|
|
|
[[package]]
|
|
|
|
name = "core-foundation"
|
2022-02-17 12:01:16 +01:00
|
|
|
version = "0.9.3"
|
2019-04-21 20:44:29 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-02-17 12:01:16 +01:00
|
|
|
checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146"
|
2019-04-21 20:44:29 +02:00
|
|
|
dependencies = [
|
2020-02-12 20:08:24 +01:00
|
|
|
"core-foundation-sys",
|
|
|
|
"libc",
|
2019-04-21 20:44:29 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "core-foundation-sys"
|
2022-01-29 21:18:50 +01:00
|
|
|
version = "0.8.3"
|
2019-04-21 20:44:29 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-01-29 21:18:50 +01:00
|
|
|
checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc"
|
2019-04-21 20:44:29 +02:00
|
|
|
|
2020-09-12 14:01:59 +02:00
|
|
|
[[package]]
|
2021-09-14 13:03:18 +02:00
|
|
|
name = "cpufeatures"
|
|
|
|
version = "0.2.1"
|
2020-09-12 14:01:59 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-09-14 13:03:18 +02:00
|
|
|
checksum = "95059428f66df56b63431fdb4e1947ed2190586af5c5a8a8b71122bdf5a7f469"
|
|
|
|
dependencies = [
|
|
|
|
"libc",
|
|
|
|
]
|
2020-09-12 14:01:59 +02:00
|
|
|
|
2019-04-16 16:57:06 +02:00
|
|
|
[[package]]
|
|
|
|
name = "crc32fast"
|
2022-02-17 12:01:16 +01:00
|
|
|
version = "1.3.2"
|
2019-04-16 16:57:06 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-02-17 12:01:16 +01:00
|
|
|
checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d"
|
2019-04-16 16:57:06 +02:00
|
|
|
dependencies = [
|
2021-09-03 13:13:03 +02:00
|
|
|
"cfg-if",
|
2019-04-16 16:57:06 +02:00
|
|
|
]
|
|
|
|
|
2022-01-29 21:18:50 +01:00
|
|
|
[[package]]
|
|
|
|
name = "crypto-common"
|
2022-02-17 12:01:16 +01:00
|
|
|
version = "0.1.3"
|
2022-01-29 21:18:50 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-02-17 12:01:16 +01:00
|
|
|
checksum = "57952ca27b5e3606ff4dd79b0020231aaf9d6aa76dc05fd30137538c50bd3ce8"
|
2022-01-29 21:18:50 +01:00
|
|
|
dependencies = [
|
2022-02-26 16:02:08 +01:00
|
|
|
"generic-array 0.14.5",
|
2022-02-17 12:01:16 +01:00
|
|
|
"typenum",
|
2022-01-29 21:18:50 +01:00
|
|
|
]
|
|
|
|
|
2019-04-16 16:57:06 +02:00
|
|
|
[[package]]
|
|
|
|
name = "derive_more"
|
2022-01-29 21:18:50 +01:00
|
|
|
version = "0.99.17"
|
2019-04-16 16:57:06 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-01-29 21:18:50 +01:00
|
|
|
checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321"
|
2019-04-16 16:57:06 +02:00
|
|
|
dependencies = [
|
2021-09-14 13:03:18 +02:00
|
|
|
"convert_case",
|
2020-02-12 20:08:24 +01:00
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
2022-01-29 21:18:50 +01:00
|
|
|
"rustc_version",
|
2020-02-12 20:08:24 +01:00
|
|
|
"syn",
|
2019-04-16 16:57:06 +02:00
|
|
|
]
|
|
|
|
|
2022-02-26 16:02:08 +01:00
|
|
|
[[package]]
|
|
|
|
name = "digest"
|
|
|
|
version = "0.8.1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "f3d0c8c8752312f9713efd397ff63acb9f85585afbf179282e720e7704954dd5"
|
|
|
|
dependencies = [
|
|
|
|
"generic-array 0.12.4",
|
|
|
|
]
|
|
|
|
|
2020-09-12 14:01:59 +02:00
|
|
|
[[package]]
|
|
|
|
name = "digest"
|
2022-02-17 12:01:16 +01:00
|
|
|
version = "0.10.3"
|
2020-09-12 14:01:59 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-02-17 12:01:16 +01:00
|
|
|
checksum = "f2fb860ca6fafa5552fb6d0e816a69c8e49f0908bf524e30a90d97c85892d506"
|
2020-09-12 14:01:59 +02:00
|
|
|
dependencies = [
|
2022-02-26 16:02:08 +01:00
|
|
|
"block-buffer 0.10.2",
|
2022-01-29 21:18:50 +01:00
|
|
|
"crypto-common",
|
2020-09-12 14:01:59 +02:00
|
|
|
]
|
|
|
|
|
2022-02-26 16:02:08 +01:00
|
|
|
[[package]]
|
|
|
|
name = "dlv-list"
|
2022-04-04 06:17:51 +02:00
|
|
|
version = "0.3.0"
|
2022-02-26 16:02:08 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-04-04 06:17:51 +02:00
|
|
|
checksum = "0688c2a7f92e427f44895cd63841bff7b29f8d7a1648b9e7e07a4a365b2e1257"
|
2022-02-26 16:02:08 +01:00
|
|
|
|
2020-11-24 19:06:18 +01:00
|
|
|
[[package]]
|
|
|
|
name = "dotenv"
|
|
|
|
version = "0.15.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "77c90badedccf4105eca100756a0b1289e191f6fcbdadd3cee1d2f614f97da8f"
|
|
|
|
|
2019-04-21 20:44:29 +02:00
|
|
|
[[package]]
|
2019-04-16 16:57:06 +02:00
|
|
|
name = "either"
|
2021-02-26 16:28:04 +01:00
|
|
|
version = "1.6.1"
|
2019-04-21 20:44:29 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-02-26 16:28:04 +01:00
|
|
|
checksum = "e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457"
|
2019-04-21 20:44:29 +02:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "encoding_rs"
|
2022-01-29 21:18:50 +01:00
|
|
|
version = "0.8.30"
|
2019-04-21 20:44:29 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-01-29 21:18:50 +01:00
|
|
|
checksum = "7896dc8abb250ffdda33912550faa54c88ec8b998dec0b2c55ab224921ce11df"
|
2019-04-21 20:44:29 +02:00
|
|
|
dependencies = [
|
2021-09-03 13:13:03 +02:00
|
|
|
"cfg-if",
|
2019-04-16 16:57:06 +02:00
|
|
|
]
|
|
|
|
|
2021-02-26 16:06:33 +01:00
|
|
|
[[package]]
|
|
|
|
name = "enum-iterator"
|
2021-09-14 13:03:18 +02:00
|
|
|
version = "0.7.0"
|
2021-02-26 16:06:33 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-09-14 13:03:18 +02:00
|
|
|
checksum = "4eeac5c5edb79e4e39fe8439ef35207780a11f69c52cbe424ce3dfad4cb78de6"
|
2021-02-26 16:06:33 +01:00
|
|
|
dependencies = [
|
|
|
|
"enum-iterator-derive",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "enum-iterator-derive"
|
2021-09-14 13:03:18 +02:00
|
|
|
version = "0.7.0"
|
2021-02-26 16:06:33 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-09-14 13:03:18 +02:00
|
|
|
checksum = "c134c37760b27a871ba422106eedbb8247da973a09e82558bf26d619c882b159"
|
2021-02-26 16:06:33 +01:00
|
|
|
dependencies = [
|
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
|
|
|
"syn",
|
|
|
|
]
|
|
|
|
|
2022-02-26 16:02:08 +01:00
|
|
|
[[package]]
|
|
|
|
name = "fake-simd"
|
|
|
|
version = "0.1.2"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "e88a8acf291dafb59c2d96e8f59828f3838bb1a70398823ade51a84de6a6deed"
|
|
|
|
|
2022-01-11 12:10:18 +01:00
|
|
|
[[package]]
|
|
|
|
name = "fastrand"
|
2022-01-29 21:18:50 +01:00
|
|
|
version = "1.7.0"
|
2022-01-11 12:10:18 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-01-29 21:18:50 +01:00
|
|
|
checksum = "c3fcf0cee53519c866c09b5de1f6c56ff9d647101f81c1964fa632e148896cdf"
|
2022-01-11 12:10:18 +01:00
|
|
|
dependencies = [
|
|
|
|
"instant",
|
|
|
|
]
|
|
|
|
|
2021-09-14 13:03:18 +02:00
|
|
|
[[package]]
|
|
|
|
name = "firestorm"
|
2022-01-29 21:18:50 +01:00
|
|
|
version = "0.5.0"
|
2021-09-14 13:03:18 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-01-29 21:18:50 +01:00
|
|
|
checksum = "4d3d6188b8804df28032815ea256b6955c9625c24da7525f387a7af02fbb8f01"
|
2021-09-14 13:03:18 +02:00
|
|
|
|
2019-04-16 16:57:06 +02:00
|
|
|
[[package]]
|
|
|
|
name = "flate2"
|
2021-09-14 13:03:18 +02:00
|
|
|
version = "1.0.22"
|
2019-04-16 16:57:06 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-09-14 13:03:18 +02:00
|
|
|
checksum = "1e6988e897c1c9c485f43b47a529cef42fde0547f9d8d41a7062518f1d8fc53f"
|
2019-04-16 16:57:06 +02:00
|
|
|
dependencies = [
|
2021-09-03 13:13:03 +02:00
|
|
|
"cfg-if",
|
2020-02-12 20:08:24 +01:00
|
|
|
"crc32fast",
|
|
|
|
"libc",
|
|
|
|
"miniz_oxide",
|
2019-04-16 16:57:06 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "fnv"
|
2021-02-26 16:28:04 +01:00
|
|
|
version = "1.0.7"
|
2019-04-16 16:57:06 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-02-26 16:28:04 +01:00
|
|
|
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
2019-04-16 16:57:06 +02:00
|
|
|
|
2019-04-21 20:44:29 +02:00
|
|
|
[[package]]
|
|
|
|
name = "foreign-types"
|
|
|
|
version = "0.3.2"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-02-12 20:08:24 +01:00
|
|
|
checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
|
2019-04-21 20:44:29 +02:00
|
|
|
dependencies = [
|
2020-02-12 20:08:24 +01:00
|
|
|
"foreign-types-shared",
|
2019-04-21 20:44:29 +02:00
|
|
|
]
|
|
|
|
|
2019-04-16 16:57:06 +02:00
|
|
|
[[package]]
|
2019-04-21 20:44:29 +02:00
|
|
|
name = "foreign-types-shared"
|
|
|
|
version = "0.1.1"
|
2019-04-16 16:57:06 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-02-12 20:08:24 +01:00
|
|
|
checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
|
2019-04-16 16:57:06 +02:00
|
|
|
|
2020-11-23 11:57:41 +01:00
|
|
|
[[package]]
|
|
|
|
name = "form_urlencoded"
|
2021-02-26 16:28:04 +01:00
|
|
|
version = "1.0.1"
|
2020-11-23 11:57:41 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-02-26 16:28:04 +01:00
|
|
|
checksum = "5fc25a87fa4fd2094bffb06925852034d90a17f0d1e05197d4956d3555752191"
|
2020-11-23 11:57:41 +01:00
|
|
|
dependencies = [
|
|
|
|
"matches",
|
|
|
|
"percent-encoding",
|
|
|
|
]
|
|
|
|
|
2019-04-16 16:57:06 +02:00
|
|
|
[[package]]
|
2019-11-25 17:41:24 +01:00
|
|
|
name = "futures"
|
2022-02-07 05:19:05 +01:00
|
|
|
version = "0.3.21"
|
2019-04-16 16:57:06 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-02-07 05:19:05 +01:00
|
|
|
checksum = "f73fe65f54d1e12b726f517d3e2135ca3125a437b6d998caf1962961f7172d9e"
|
2019-04-16 16:57:06 +02:00
|
|
|
dependencies = [
|
2020-02-12 20:08:24 +01:00
|
|
|
"futures-channel",
|
|
|
|
"futures-core",
|
|
|
|
"futures-executor",
|
|
|
|
"futures-io",
|
|
|
|
"futures-sink",
|
|
|
|
"futures-task",
|
|
|
|
"futures-util",
|
2019-04-16 16:57:06 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
2019-11-25 17:41:24 +01:00
|
|
|
name = "futures-channel"
|
2022-02-07 05:19:05 +01:00
|
|
|
version = "0.3.21"
|
2019-04-16 16:57:06 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-02-07 05:19:05 +01:00
|
|
|
checksum = "c3083ce4b914124575708913bca19bfe887522d6e2e6d0952943f5eac4a74010"
|
2019-04-16 16:57:06 +02:00
|
|
|
dependencies = [
|
2020-02-12 20:08:24 +01:00
|
|
|
"futures-core",
|
|
|
|
"futures-sink",
|
2019-04-16 16:57:06 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
2019-11-25 17:41:24 +01:00
|
|
|
name = "futures-core"
|
2022-02-07 05:19:05 +01:00
|
|
|
version = "0.3.21"
|
2019-04-16 16:57:06 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-02-07 05:19:05 +01:00
|
|
|
checksum = "0c09fd04b7e4073ac7156a9539b57a484a8ea920f79c7c675d05d289ab6110d3"
|
2019-04-16 16:57:06 +02:00
|
|
|
|
2019-04-21 20:44:29 +02:00
|
|
|
[[package]]
|
2019-12-26 05:20:46 +01:00
|
|
|
name = "futures-executor"
|
2022-02-07 05:19:05 +01:00
|
|
|
version = "0.3.21"
|
2019-04-21 20:44:29 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-02-07 05:19:05 +01:00
|
|
|
checksum = "9420b90cfa29e327d0429f19be13e7ddb68fa1cccb09d65e5706b8c7a749b8a6"
|
2019-04-21 20:44:29 +02:00
|
|
|
dependencies = [
|
2020-02-12 20:08:24 +01:00
|
|
|
"futures-core",
|
|
|
|
"futures-task",
|
|
|
|
"futures-util",
|
2019-04-21 20:44:29 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
2019-12-26 05:20:46 +01:00
|
|
|
name = "futures-io"
|
2022-02-07 05:19:05 +01:00
|
|
|
version = "0.3.21"
|
2019-04-21 20:44:29 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-02-07 05:19:05 +01:00
|
|
|
checksum = "fc4045962a5a5e935ee2fdedaa4e08284547402885ab326734432bed5d12966b"
|
2019-04-21 20:44:29 +02:00
|
|
|
|
2019-04-16 16:57:06 +02:00
|
|
|
[[package]]
|
2019-12-26 05:20:46 +01:00
|
|
|
name = "futures-macro"
|
2022-02-07 05:19:05 +01:00
|
|
|
version = "0.3.21"
|
2019-04-16 16:57:06 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-02-07 05:19:05 +01:00
|
|
|
checksum = "33c1e13800337f4d4d7a316bf45a567dbcb6ffe087f16424852d97e97a91f512"
|
2019-12-26 05:20:46 +01:00
|
|
|
dependencies = [
|
2020-02-12 20:08:24 +01:00
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
|
|
|
"syn",
|
2019-12-26 05:20:46 +01:00
|
|
|
]
|
2019-04-16 16:57:06 +02:00
|
|
|
|
|
|
|
[[package]]
|
2019-12-26 05:20:46 +01:00
|
|
|
name = "futures-sink"
|
2022-02-07 05:19:05 +01:00
|
|
|
version = "0.3.21"
|
2019-04-16 16:57:06 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-02-07 05:19:05 +01:00
|
|
|
checksum = "21163e139fa306126e6eedaf49ecdb4588f939600f0b1e770f4205ee4b7fa868"
|
2019-04-16 16:57:06 +02:00
|
|
|
|
|
|
|
[[package]]
|
2019-12-26 05:20:46 +01:00
|
|
|
name = "futures-task"
|
2022-02-07 05:19:05 +01:00
|
|
|
version = "0.3.21"
|
2019-04-16 16:57:06 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-02-07 05:19:05 +01:00
|
|
|
checksum = "57c66a976bf5909d801bbef33416c41372779507e7a6b3a5e25e4749c58f776a"
|
2019-04-16 16:57:06 +02:00
|
|
|
|
|
|
|
[[package]]
|
2019-12-26 05:20:46 +01:00
|
|
|
name = "futures-util"
|
2022-02-07 05:19:05 +01:00
|
|
|
version = "0.3.21"
|
2019-04-16 16:57:06 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-02-07 05:19:05 +01:00
|
|
|
checksum = "d8b7abd5d659d9b90c8cba917f6ec750a74e2dc23902ef9cd4cc8c8b22e6036a"
|
2019-12-26 05:20:46 +01:00
|
|
|
dependencies = [
|
2020-02-12 20:08:24 +01:00
|
|
|
"futures-channel",
|
|
|
|
"futures-core",
|
|
|
|
"futures-io",
|
|
|
|
"futures-macro",
|
|
|
|
"futures-sink",
|
|
|
|
"futures-task",
|
|
|
|
"memchr",
|
2021-09-03 13:13:03 +02:00
|
|
|
"pin-project-lite",
|
2020-02-12 20:08:24 +01:00
|
|
|
"pin-utils",
|
|
|
|
"slab",
|
2019-12-26 05:20:46 +01:00
|
|
|
]
|
2019-04-16 16:57:06 +02:00
|
|
|
|
2022-02-26 16:02:08 +01:00
|
|
|
[[package]]
|
|
|
|
name = "generic-array"
|
|
|
|
version = "0.12.4"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "ffdf9f34f1447443d37393cc6c2b8313aebddcd96906caf34e54c68d8e57d7bd"
|
|
|
|
dependencies = [
|
|
|
|
"typenum",
|
|
|
|
]
|
|
|
|
|
2020-09-12 14:01:59 +02:00
|
|
|
[[package]]
|
|
|
|
name = "generic-array"
|
2022-01-29 21:18:50 +01:00
|
|
|
version = "0.14.5"
|
2020-09-12 14:01:59 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-01-29 21:18:50 +01:00
|
|
|
checksum = "fd48d33ec7f05fbfa152300fdad764757cbded343c1aa1cff2fbaf4134851803"
|
2020-09-12 14:01:59 +02:00
|
|
|
dependencies = [
|
|
|
|
"typenum",
|
2021-02-26 16:28:04 +01:00
|
|
|
"version_check",
|
2020-09-12 14:01:59 +02:00
|
|
|
]
|
|
|
|
|
2021-03-22 12:46:10 +01:00
|
|
|
[[package]]
|
|
|
|
name = "gethostname"
|
2022-01-29 21:18:50 +01:00
|
|
|
version = "0.2.2"
|
2021-03-22 12:46:10 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-01-29 21:18:50 +01:00
|
|
|
checksum = "4addc164932852d066774c405dbbdb7914742d2b39e39e1a7ca949c856d054d1"
|
2021-03-22 12:46:10 +01:00
|
|
|
dependencies = [
|
|
|
|
"libc",
|
2021-09-03 13:13:03 +02:00
|
|
|
"winapi",
|
2019-07-18 17:13:53 +02:00
|
|
|
]
|
|
|
|
|
2021-02-10 18:04:57 +01:00
|
|
|
[[package]]
|
|
|
|
name = "getrandom"
|
2022-03-09 18:55:23 +01:00
|
|
|
version = "0.2.5"
|
2021-02-10 18:04:57 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-03-09 18:55:23 +01:00
|
|
|
checksum = "d39cd93900197114fa1fcb7ae84ca742095eed9442088988ae74fa744e930e77"
|
2021-02-10 18:04:57 +01:00
|
|
|
dependencies = [
|
2021-09-03 13:13:03 +02:00
|
|
|
"cfg-if",
|
2021-02-10 18:04:57 +01:00
|
|
|
"libc",
|
2022-04-28 06:13:27 +02:00
|
|
|
"wasi 0.10.2+wasi-snapshot-preview1",
|
2021-02-10 18:04:57 +01:00
|
|
|
]
|
|
|
|
|
2021-02-26 16:06:33 +01:00
|
|
|
[[package]]
|
|
|
|
name = "getset"
|
2022-01-29 21:18:50 +01:00
|
|
|
version = "0.1.2"
|
2021-02-26 16:06:33 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-01-29 21:18:50 +01:00
|
|
|
checksum = "e45727250e75cc04ff2846a66397da8ef2b3db8e40e0cef4df67950a07621eb9"
|
2021-02-26 16:06:33 +01:00
|
|
|
dependencies = [
|
|
|
|
"proc-macro-error",
|
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
|
|
|
"syn",
|
|
|
|
]
|
|
|
|
|
2019-04-16 16:57:06 +02:00
|
|
|
[[package]]
|
|
|
|
name = "git2"
|
2022-03-11 05:15:31 +01:00
|
|
|
version = "0.14.2"
|
2019-04-16 16:57:06 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-03-11 05:15:31 +01:00
|
|
|
checksum = "3826a6e0e2215d7a41c2bfc7c9244123969273f3476b939a226aac0ab56e9e3c"
|
2019-04-16 16:57:06 +02:00
|
|
|
dependencies = [
|
2020-02-12 20:08:24 +01:00
|
|
|
"bitflags",
|
|
|
|
"libc",
|
|
|
|
"libgit2-sys",
|
|
|
|
"log",
|
|
|
|
"openssl-probe",
|
|
|
|
"openssl-sys",
|
|
|
|
"url",
|
2019-04-16 16:57:06 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "h2"
|
2022-01-29 21:18:50 +01:00
|
|
|
version = "0.3.11"
|
2019-04-16 16:57:06 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-01-29 21:18:50 +01:00
|
|
|
checksum = "d9f1f717ddc7b2ba36df7e871fd88db79326551d3d6f1fc406fbfd28b582ff8e"
|
2019-04-16 16:57:06 +02:00
|
|
|
dependencies = [
|
2021-09-03 13:13:03 +02:00
|
|
|
"bytes",
|
2020-02-12 20:08:24 +01:00
|
|
|
"fnv",
|
|
|
|
"futures-core",
|
|
|
|
"futures-sink",
|
|
|
|
"futures-util",
|
|
|
|
"http",
|
|
|
|
"indexmap",
|
|
|
|
"slab",
|
2021-02-26 16:04:58 +01:00
|
|
|
"tokio",
|
2022-02-16 05:16:16 +01:00
|
|
|
"tokio-util 0.6.9",
|
2021-02-26 16:28:04 +01:00
|
|
|
"tracing",
|
2019-04-16 16:57:06 +02:00
|
|
|
]
|
|
|
|
|
2022-02-26 16:02:08 +01:00
|
|
|
[[package]]
|
|
|
|
name = "hashbrown"
|
2022-04-04 06:17:51 +02:00
|
|
|
version = "0.11.2"
|
2022-02-26 16:02:08 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-04-04 06:17:51 +02:00
|
|
|
checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e"
|
2022-02-26 16:02:08 +01:00
|
|
|
|
2021-02-26 16:28:04 +01:00
|
|
|
[[package]]
|
|
|
|
name = "hashbrown"
|
2022-04-04 06:17:51 +02:00
|
|
|
version = "0.12.0"
|
2021-02-26 16:28:04 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-04-04 06:17:51 +02:00
|
|
|
checksum = "8c21d40587b92fa6a6c6e3c1bdbf87d75511db5672f9c93175574b3a00df1758"
|
|
|
|
dependencies = [
|
|
|
|
"ahash",
|
|
|
|
]
|
2021-02-26 16:28:04 +01:00
|
|
|
|
2019-04-16 16:57:06 +02:00
|
|
|
[[package]]
|
2019-12-26 05:20:46 +01:00
|
|
|
name = "hermit-abi"
|
2021-09-14 13:03:18 +02:00
|
|
|
version = "0.1.19"
|
2019-04-16 16:57:06 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-09-14 13:03:18 +02:00
|
|
|
checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
|
2019-04-16 16:57:06 +02:00
|
|
|
dependencies = [
|
2020-02-12 20:08:24 +01:00
|
|
|
"libc",
|
2019-04-16 16:57:06 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "hoc"
|
2022-04-14 11:08:40 +02:00
|
|
|
version = "0.22.2"
|
2019-04-16 16:57:06 +02:00
|
|
|
dependencies = [
|
2021-02-26 15:51:35 +01:00
|
|
|
"actix-rt",
|
2020-02-12 20:08:24 +01:00
|
|
|
"actix-web",
|
2021-09-03 13:13:03 +02:00
|
|
|
"awc",
|
2020-02-12 20:08:24 +01:00
|
|
|
"badge",
|
2021-09-03 13:13:03 +02:00
|
|
|
"bytes",
|
2020-11-24 19:06:18 +01:00
|
|
|
"config",
|
|
|
|
"dotenv",
|
2020-02-12 20:08:24 +01:00
|
|
|
"futures",
|
|
|
|
"git2",
|
|
|
|
"lazy_static",
|
|
|
|
"number_prefix",
|
|
|
|
"openssl-probe",
|
|
|
|
"reqwest",
|
|
|
|
"ructe",
|
2022-02-26 16:02:08 +01:00
|
|
|
"serde",
|
2020-02-12 20:08:24 +01:00
|
|
|
"serde_derive",
|
|
|
|
"serde_json",
|
2020-05-15 12:15:18 +02:00
|
|
|
"tempfile",
|
2021-03-22 12:46:10 +01:00
|
|
|
"tokio",
|
2020-10-30 16:40:35 +01:00
|
|
|
"tracing",
|
|
|
|
"tracing-actix-web",
|
2021-03-22 12:46:10 +01:00
|
|
|
"tracing-bunyan-formatter",
|
2020-10-30 16:40:35 +01:00
|
|
|
"tracing-futures",
|
2021-03-22 12:46:10 +01:00
|
|
|
"tracing-log",
|
2020-10-30 16:40:35 +01:00
|
|
|
"tracing-subscriber",
|
2020-02-12 20:08:24 +01:00
|
|
|
"vergen",
|
2019-04-16 16:57:06 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "http"
|
2022-01-29 21:18:50 +01:00
|
|
|
version = "0.2.6"
|
2019-04-16 16:57:06 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-01-29 21:18:50 +01:00
|
|
|
checksum = "31f4c6746584866f0feabcc69893c5b51beef3831656a968ed7ae254cdc4fd03"
|
2019-04-16 16:57:06 +02:00
|
|
|
dependencies = [
|
2021-09-03 13:13:03 +02:00
|
|
|
"bytes",
|
2020-02-12 20:08:24 +01:00
|
|
|
"fnv",
|
2022-02-17 12:01:16 +01:00
|
|
|
"itoa",
|
2019-05-19 13:56:23 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "http-body"
|
2022-01-29 21:18:50 +01:00
|
|
|
version = "0.4.4"
|
2019-05-19 13:56:23 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-01-29 21:18:50 +01:00
|
|
|
checksum = "1ff4f84919677303da5f147645dbea6b1881f368d03ac84e1dc09031ebd7b2c6"
|
2019-05-19 13:56:23 +02:00
|
|
|
dependencies = [
|
2021-09-03 13:13:03 +02:00
|
|
|
"bytes",
|
2020-02-12 20:08:24 +01:00
|
|
|
"http",
|
2021-09-03 13:13:03 +02:00
|
|
|
"pin-project-lite",
|
2019-04-16 16:57:06 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "httparse"
|
2022-02-17 12:01:16 +01:00
|
|
|
version = "1.6.0"
|
2019-04-16 16:57:06 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-02-17 12:01:16 +01:00
|
|
|
checksum = "9100414882e15fb7feccb4897e5f0ff0ff1ca7d1a86a23208ada4d7a18e6c6c4"
|
2019-04-16 16:57:06 +02:00
|
|
|
|
2021-02-11 11:10:09 +01:00
|
|
|
[[package]]
|
|
|
|
name = "httpdate"
|
2022-01-29 21:18:50 +01:00
|
|
|
version = "1.0.2"
|
2021-02-11 11:10:09 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-01-29 21:18:50 +01:00
|
|
|
checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421"
|
2021-02-11 11:10:09 +01:00
|
|
|
|
2019-04-21 20:44:29 +02:00
|
|
|
[[package]]
|
|
|
|
name = "hyper"
|
2022-02-17 12:01:16 +01:00
|
|
|
version = "0.14.17"
|
2019-04-21 20:44:29 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-02-17 12:01:16 +01:00
|
|
|
checksum = "043f0e083e9901b6cc658a77d1eb86f4fc650bbb977a4337dd63192826aa85dd"
|
2019-04-21 20:44:29 +02:00
|
|
|
dependencies = [
|
2021-09-03 13:13:03 +02:00
|
|
|
"bytes",
|
2020-02-12 20:08:24 +01:00
|
|
|
"futures-channel",
|
|
|
|
"futures-core",
|
|
|
|
"futures-util",
|
2021-02-26 16:04:58 +01:00
|
|
|
"h2",
|
2020-02-12 20:08:24 +01:00
|
|
|
"http",
|
|
|
|
"http-body",
|
|
|
|
"httparse",
|
2021-02-11 11:10:09 +01:00
|
|
|
"httpdate",
|
2022-02-17 12:01:16 +01:00
|
|
|
"itoa",
|
2021-09-03 13:13:03 +02:00
|
|
|
"pin-project-lite",
|
2021-02-11 11:10:09 +01:00
|
|
|
"socket2",
|
2021-02-26 16:04:58 +01:00
|
|
|
"tokio",
|
2020-02-12 20:08:24 +01:00
|
|
|
"tower-service",
|
2021-02-11 11:10:09 +01:00
|
|
|
"tracing",
|
2020-02-12 20:08:24 +01:00
|
|
|
"want",
|
2019-04-21 20:44:29 +02:00
|
|
|
]
|
|
|
|
|
2019-04-16 16:57:06 +02:00
|
|
|
[[package]]
|
2019-04-21 20:44:29 +02:00
|
|
|
name = "hyper-tls"
|
2021-09-03 13:13:03 +02:00
|
|
|
version = "0.5.0"
|
2019-04-16 16:57:06 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-09-03 13:13:03 +02:00
|
|
|
checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905"
|
2019-04-16 16:57:06 +02:00
|
|
|
dependencies = [
|
2021-09-03 13:13:03 +02:00
|
|
|
"bytes",
|
2020-02-12 20:08:24 +01:00
|
|
|
"hyper",
|
|
|
|
"native-tls",
|
2021-02-26 16:04:58 +01:00
|
|
|
"tokio",
|
2021-09-03 13:13:03 +02:00
|
|
|
"tokio-native-tls",
|
2019-04-16 16:57:06 +02:00
|
|
|
]
|
|
|
|
|
2019-08-29 06:26:47 +02:00
|
|
|
[[package]]
|
|
|
|
name = "idna"
|
2021-09-14 13:03:18 +02:00
|
|
|
version = "0.2.3"
|
2019-08-29 06:26:47 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-09-14 13:03:18 +02:00
|
|
|
checksum = "418a0a6fab821475f634efe3ccc45c013f742efe03d853e8d3355d5cb850ecf8"
|
2019-08-29 06:26:47 +02:00
|
|
|
dependencies = [
|
2020-02-12 20:08:24 +01:00
|
|
|
"matches",
|
|
|
|
"unicode-bidi",
|
|
|
|
"unicode-normalization",
|
2019-08-29 06:26:47 +02:00
|
|
|
]
|
|
|
|
|
2019-04-16 16:57:06 +02:00
|
|
|
[[package]]
|
|
|
|
name = "indexmap"
|
2022-01-29 21:18:50 +01:00
|
|
|
version = "1.8.0"
|
2019-04-16 16:57:06 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-01-29 21:18:50 +01:00
|
|
|
checksum = "282a6247722caba404c065016bbfa522806e51714c34f5dfc3e4a3a46fcb4223"
|
2019-11-14 05:21:38 +01:00
|
|
|
dependencies = [
|
2020-02-12 20:08:24 +01:00
|
|
|
"autocfg",
|
2022-02-26 16:02:08 +01:00
|
|
|
"hashbrown 0.11.2",
|
2021-02-26 16:28:04 +01:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "instant"
|
2022-01-29 21:18:50 +01:00
|
|
|
version = "0.1.12"
|
2021-02-26 16:28:04 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-01-29 21:18:50 +01:00
|
|
|
checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
|
2021-02-26 16:28:04 +01:00
|
|
|
dependencies = [
|
2021-09-03 13:13:03 +02:00
|
|
|
"cfg-if",
|
2019-04-16 16:57:06 +02:00
|
|
|
]
|
|
|
|
|
2020-09-11 19:40:12 +02:00
|
|
|
[[package]]
|
|
|
|
name = "ipnet"
|
2022-03-09 18:55:23 +01:00
|
|
|
version = "2.4.0"
|
2020-09-11 19:40:12 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-03-09 18:55:23 +01:00
|
|
|
checksum = "35e70ee094dc02fd9c13fdad4940090f22dbd6ac7c9e7094a46cf0232a50bc7c"
|
2020-09-11 19:40:12 +02:00
|
|
|
|
2019-04-23 18:19:35 +02:00
|
|
|
[[package]]
|
|
|
|
name = "itertools"
|
2022-01-29 21:18:50 +01:00
|
|
|
version = "0.10.3"
|
2019-04-23 18:19:35 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-01-29 21:18:50 +01:00
|
|
|
checksum = "a9a9d19fa1e79b6215ff29b9d6880b706147f16e9b1dbb1e4e5947b5b02bc5e3"
|
2019-04-23 18:19:35 +02:00
|
|
|
dependencies = [
|
2020-02-12 20:08:24 +01:00
|
|
|
"either",
|
2019-04-23 18:19:35 +02:00
|
|
|
]
|
|
|
|
|
2021-12-14 05:14:56 +01:00
|
|
|
[[package]]
|
|
|
|
name = "itoa"
|
|
|
|
version = "1.0.1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "1aab8fc367588b89dcee83ab0fd66b72b50b72fa1904d7095045ace2b0c81c35"
|
|
|
|
|
2020-02-12 20:17:59 +01:00
|
|
|
[[package]]
|
|
|
|
name = "jobserver"
|
2021-09-14 13:03:18 +02:00
|
|
|
version = "0.1.24"
|
2020-02-12 20:17:59 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-09-14 13:03:18 +02:00
|
|
|
checksum = "af25a77299a7f711a01975c35a6a424eb6862092cc2d6c72c4ed6cbc56dfc1fa"
|
2020-02-12 20:17:59 +01:00
|
|
|
dependencies = [
|
|
|
|
"libc",
|
|
|
|
]
|
|
|
|
|
2020-02-12 19:45:18 +01:00
|
|
|
[[package]]
|
|
|
|
name = "js-sys"
|
2022-01-29 21:18:50 +01:00
|
|
|
version = "0.3.56"
|
2019-04-16 16:57:06 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-01-29 21:18:50 +01:00
|
|
|
checksum = "a38fc24e30fd564ce974c02bf1d337caddff65be6cc4735a1f7eab22a7440f04"
|
2020-02-12 19:45:18 +01:00
|
|
|
dependencies = [
|
2020-02-12 20:08:24 +01:00
|
|
|
"wasm-bindgen",
|
2020-02-12 19:45:18 +01:00
|
|
|
]
|
2019-04-16 16:57:06 +02:00
|
|
|
|
2022-02-26 16:02:08 +01:00
|
|
|
[[package]]
|
|
|
|
name = "json5"
|
|
|
|
version = "0.4.1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "96b0db21af676c1ce64250b5f40f3ce2cf27e4e47cb91ed91eb6fe9350b430c1"
|
|
|
|
dependencies = [
|
|
|
|
"pest",
|
|
|
|
"pest_derive",
|
|
|
|
"serde",
|
|
|
|
]
|
|
|
|
|
2019-04-16 16:57:06 +02:00
|
|
|
[[package]]
|
|
|
|
name = "language-tags"
|
2021-09-03 13:13:03 +02:00
|
|
|
version = "0.3.2"
|
2019-04-16 16:57:06 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-09-03 13:13:03 +02:00
|
|
|
checksum = "d4345964bb142484797b161f473a503a434de77149dd8c7427788c6e13379388"
|
2019-04-16 16:57:06 +02:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "lazy_static"
|
2019-08-28 20:18:32 +02:00
|
|
|
version = "1.4.0"
|
2019-04-16 16:57:06 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-02-12 20:08:24 +01:00
|
|
|
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
|
2019-04-16 16:57:06 +02:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "libc"
|
2022-03-09 18:55:23 +01:00
|
|
|
version = "0.2.119"
|
2019-04-16 16:57:06 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-03-09 18:55:23 +01:00
|
|
|
checksum = "1bf2e165bb3457c8e098ea76f3e3bc9db55f87aa90d52d0e6be741470916aaa4"
|
2019-04-16 16:57:06 +02:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "libgit2-sys"
|
2022-03-11 05:15:31 +01:00
|
|
|
version = "0.13.2+1.4.2"
|
2019-04-16 16:57:06 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-03-11 05:15:31 +01:00
|
|
|
checksum = "3a42de9a51a5c12e00fc0e4ca6bc2ea43582fc6418488e8f615e905d886f258b"
|
2019-04-16 16:57:06 +02:00
|
|
|
dependencies = [
|
2020-02-12 20:08:24 +01:00
|
|
|
"cc",
|
|
|
|
"libc",
|
|
|
|
"libssh2-sys",
|
|
|
|
"libz-sys",
|
|
|
|
"openssl-sys",
|
|
|
|
"pkg-config",
|
2019-04-16 16:57:06 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "libssh2-sys"
|
2022-01-29 21:18:50 +01:00
|
|
|
version = "0.2.23"
|
2019-04-16 16:57:06 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-01-29 21:18:50 +01:00
|
|
|
checksum = "b094a36eb4b8b8c8a7b4b8ae43b2944502be3e59cd87687595cf6b0a71b3f4ca"
|
2019-04-16 16:57:06 +02:00
|
|
|
dependencies = [
|
2020-02-12 20:08:24 +01:00
|
|
|
"cc",
|
|
|
|
"libc",
|
|
|
|
"libz-sys",
|
|
|
|
"openssl-sys",
|
|
|
|
"pkg-config",
|
|
|
|
"vcpkg",
|
2019-04-16 16:57:06 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "libz-sys"
|
2022-03-09 18:55:23 +01:00
|
|
|
version = "1.1.5"
|
2019-04-16 16:57:06 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-03-09 18:55:23 +01:00
|
|
|
checksum = "6f35facd4a5673cb5a48822be2be1d4236c1c99cb4113cab7061ac720d5bf859"
|
2019-04-16 16:57:06 +02:00
|
|
|
dependencies = [
|
2020-02-12 20:08:24 +01:00
|
|
|
"cc",
|
|
|
|
"libc",
|
|
|
|
"pkg-config",
|
|
|
|
"vcpkg",
|
2019-04-16 16:57:06 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "linked-hash-map"
|
2021-02-26 16:28:04 +01:00
|
|
|
version = "0.5.4"
|
2019-04-16 16:57:06 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-02-26 16:28:04 +01:00
|
|
|
checksum = "7fb9b38af92608140b86b693604b9ffcc5824240a484d1ecd4795bacb2fe88f3"
|
2019-04-16 16:57:06 +02:00
|
|
|
|
2021-09-03 13:13:03 +02:00
|
|
|
[[package]]
|
|
|
|
name = "local-channel"
|
|
|
|
version = "0.1.2"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "6246c68cf195087205a0512559c97e15eaf95198bf0e206d662092cdcb03fe9f"
|
|
|
|
dependencies = [
|
|
|
|
"futures-core",
|
|
|
|
"futures-sink",
|
|
|
|
"futures-util",
|
|
|
|
"local-waker",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "local-waker"
|
2022-01-29 21:18:50 +01:00
|
|
|
version = "0.1.2"
|
2021-09-03 13:13:03 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-01-29 21:18:50 +01:00
|
|
|
checksum = "902eb695eb0591864543cbfbf6d742510642a605a61fc5e97fe6ceb5a30ac4fb"
|
2021-09-03 13:13:03 +02:00
|
|
|
|
2019-04-16 16:57:06 +02:00
|
|
|
[[package]]
|
|
|
|
name = "lock_api"
|
2022-01-29 21:18:50 +01:00
|
|
|
version = "0.4.6"
|
2019-07-18 17:13:53 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-01-29 21:18:50 +01:00
|
|
|
checksum = "88943dd7ef4a2e5a4bfa2753aaab3013e34ce2533d1996fb18ef591e315e2b3b"
|
2019-07-18 17:13:53 +02:00
|
|
|
dependencies = [
|
2020-02-12 20:08:24 +01:00
|
|
|
"scopeguard",
|
2019-07-18 17:13:53 +02:00
|
|
|
]
|
|
|
|
|
2019-04-16 16:57:06 +02:00
|
|
|
[[package]]
|
|
|
|
name = "log"
|
2021-02-26 16:28:04 +01:00
|
|
|
version = "0.4.14"
|
2020-10-30 16:40:35 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-02-26 16:28:04 +01:00
|
|
|
checksum = "51b9bbe6c47d51fc3e1a9b945965946b4c44142ab8792c50835a980d362c2710"
|
2020-10-30 16:40:35 +01:00
|
|
|
dependencies = [
|
2021-09-03 13:13:03 +02:00
|
|
|
"cfg-if",
|
2019-04-16 16:57:06 +02:00
|
|
|
]
|
|
|
|
|
2022-02-26 16:02:08 +01:00
|
|
|
[[package]]
|
|
|
|
name = "maplit"
|
|
|
|
version = "1.0.2"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "3e2e65a1a2e43cfcb47a895c4c8b10d1f4a61097f9f254f183aee60cad9c651d"
|
|
|
|
|
2020-10-30 16:40:35 +01:00
|
|
|
[[package]]
|
|
|
|
name = "matchers"
|
2021-10-27 20:53:34 +02:00
|
|
|
version = "0.1.0"
|
2020-10-30 16:40:35 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-10-27 20:53:34 +02:00
|
|
|
checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558"
|
2020-10-30 16:40:35 +01:00
|
|
|
dependencies = [
|
|
|
|
"regex-automata",
|
|
|
|
]
|
|
|
|
|
2019-04-16 16:57:06 +02:00
|
|
|
[[package]]
|
|
|
|
name = "matches"
|
2021-09-14 13:03:18 +02:00
|
|
|
version = "0.1.9"
|
2019-04-16 16:57:06 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-09-14 13:03:18 +02:00
|
|
|
checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f"
|
2019-04-16 16:57:06 +02:00
|
|
|
|
2019-04-23 18:19:35 +02:00
|
|
|
[[package]]
|
|
|
|
name = "md5"
|
2019-11-07 05:22:25 +01:00
|
|
|
version = "0.7.0"
|
2019-04-23 18:19:35 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-02-12 20:08:24 +01:00
|
|
|
checksum = "490cc448043f947bae3cbee9c203358d62dbee0db12107a74be5c30ccfd09771"
|
2019-04-23 18:19:35 +02:00
|
|
|
|
2019-04-16 16:57:06 +02:00
|
|
|
[[package]]
|
|
|
|
name = "memchr"
|
2021-09-14 13:03:18 +02:00
|
|
|
version = "2.4.1"
|
2019-04-21 20:44:29 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-09-14 13:03:18 +02:00
|
|
|
checksum = "308cc39be01b73d0d18f82a0e7b2a3df85245f84af96fdddc5d202d27e47b86a"
|
2019-04-21 20:44:29 +02:00
|
|
|
|
2019-04-16 16:57:06 +02:00
|
|
|
[[package]]
|
|
|
|
name = "mime"
|
2020-02-12 20:08:24 +01:00
|
|
|
version = "0.3.16"
|
2019-04-16 16:57:06 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-02-12 20:08:24 +01:00
|
|
|
checksum = "2a60c7ce501c71e03a9c9c0d35b861413ae925bd979cc7a4e30d060069aaac8d"
|
2019-04-16 16:57:06 +02:00
|
|
|
|
2022-02-07 05:19:19 +01:00
|
|
|
[[package]]
|
|
|
|
name = "minimal-lexical"
|
|
|
|
version = "0.2.1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
|
|
|
2019-04-16 16:57:06 +02:00
|
|
|
[[package]]
|
|
|
|
name = "miniz_oxide"
|
2021-02-26 16:28:04 +01:00
|
|
|
version = "0.4.4"
|
2019-04-16 16:57:06 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-02-26 16:28:04 +01:00
|
|
|
checksum = "a92518e98c078586bc6c934028adcca4c92a53d6a958196de835170a01d84e4b"
|
2019-04-16 16:57:06 +02:00
|
|
|
dependencies = [
|
2021-02-26 16:28:04 +01:00
|
|
|
"adler",
|
|
|
|
"autocfg",
|
2019-04-16 16:57:06 +02:00
|
|
|
]
|
|
|
|
|
2022-01-29 21:18:50 +01:00
|
|
|
[[package]]
|
|
|
|
name = "mio"
|
2022-04-28 06:13:27 +02:00
|
|
|
version = "0.8.2"
|
2019-04-16 16:57:06 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-04-28 06:13:27 +02:00
|
|
|
checksum = "52da4364ffb0e4fe33a9841a98a3f3014fb964045ce4f7a45a398243c8d6b0c9"
|
2019-04-16 16:57:06 +02:00
|
|
|
dependencies = [
|
2020-02-12 20:08:24 +01:00
|
|
|
"libc",
|
|
|
|
"log",
|
2021-02-26 16:04:58 +01:00
|
|
|
"miow",
|
2021-09-03 13:13:03 +02:00
|
|
|
"ntapi",
|
2022-04-28 06:13:27 +02:00
|
|
|
"wasi 0.11.0+wasi-snapshot-preview1",
|
2021-09-03 13:13:03 +02:00
|
|
|
"winapi",
|
2019-04-16 16:57:06 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "miow"
|
2021-09-03 13:13:03 +02:00
|
|
|
version = "0.3.7"
|
2019-04-16 16:57:06 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-09-03 13:13:03 +02:00
|
|
|
checksum = "b9f1c5b025cda876f66ef43a113f91ebc9f4ccef34843000e0adf6ebbab84e21"
|
2019-04-16 16:57:06 +02:00
|
|
|
dependencies = [
|
2021-09-03 13:13:03 +02:00
|
|
|
"winapi",
|
2019-04-16 16:57:06 +02:00
|
|
|
]
|
|
|
|
|
2019-04-21 20:44:29 +02:00
|
|
|
[[package]]
|
|
|
|
name = "native-tls"
|
2021-09-14 13:03:18 +02:00
|
|
|
version = "0.2.8"
|
2019-04-21 20:44:29 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-09-14 13:03:18 +02:00
|
|
|
checksum = "48ba9f7719b5a0f42f338907614285fb5fd70e53858141f69898a1fb7203b24d"
|
2019-04-21 20:44:29 +02:00
|
|
|
dependencies = [
|
2020-02-12 20:08:24 +01:00
|
|
|
"lazy_static",
|
|
|
|
"libc",
|
|
|
|
"log",
|
|
|
|
"openssl",
|
|
|
|
"openssl-probe",
|
|
|
|
"openssl-sys",
|
|
|
|
"schannel",
|
|
|
|
"security-framework",
|
|
|
|
"security-framework-sys",
|
|
|
|
"tempfile",
|
2019-04-21 20:44:29 +02:00
|
|
|
]
|
|
|
|
|
2021-03-29 12:56:11 +02:00
|
|
|
[[package]]
|
|
|
|
name = "nom"
|
2022-02-07 05:19:19 +01:00
|
|
|
version = "7.1.0"
|
2021-03-29 12:56:11 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-02-07 05:19:19 +01:00
|
|
|
checksum = "1b1d11e1ef389c76fe5b81bcaf2ea32cf88b62bc494e19f493d0b30e7a930109"
|
2021-03-29 12:56:11 +02:00
|
|
|
dependencies = [
|
|
|
|
"memchr",
|
2022-02-07 05:19:19 +01:00
|
|
|
"minimal-lexical",
|
2021-03-29 12:56:11 +02:00
|
|
|
"version_check",
|
|
|
|
]
|
|
|
|
|
2021-09-03 13:13:03 +02:00
|
|
|
[[package]]
|
|
|
|
name = "ntapi"
|
2022-02-17 12:01:16 +01:00
|
|
|
version = "0.3.7"
|
2021-09-03 13:13:03 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-02-17 12:01:16 +01:00
|
|
|
checksum = "c28774a7fd2fbb4f0babd8237ce554b73af68021b5f695a3cebd6c59bac0980f"
|
2021-09-03 13:13:03 +02:00
|
|
|
dependencies = [
|
|
|
|
"winapi",
|
|
|
|
]
|
|
|
|
|
2019-04-16 16:57:06 +02:00
|
|
|
[[package]]
|
|
|
|
name = "num_cpus"
|
2022-01-29 21:18:50 +01:00
|
|
|
version = "1.13.1"
|
2019-04-16 16:57:06 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-01-29 21:18:50 +01:00
|
|
|
checksum = "19e64526ebdee182341572e50e9ad03965aa510cd94427a4549448f285e957a1"
|
2019-04-16 16:57:06 +02:00
|
|
|
dependencies = [
|
2020-02-12 20:08:24 +01:00
|
|
|
"hermit-abi",
|
|
|
|
"libc",
|
2019-04-16 16:57:06 +02:00
|
|
|
]
|
|
|
|
|
2022-01-29 21:18:50 +01:00
|
|
|
[[package]]
|
|
|
|
name = "num_threads"
|
|
|
|
version = "0.1.3"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "97ba99ba6393e2c3734791401b66902d981cb03bf190af674ca69949b6d5fb15"
|
|
|
|
dependencies = [
|
|
|
|
"libc",
|
|
|
|
]
|
|
|
|
|
2019-04-30 14:18:30 +02:00
|
|
|
[[package]]
|
|
|
|
name = "number_prefix"
|
2020-05-01 13:11:21 +02:00
|
|
|
version = "0.4.0"
|
2019-04-30 14:18:30 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-05-01 13:11:21 +02:00
|
|
|
checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3"
|
2019-05-01 13:38:57 +02:00
|
|
|
|
2020-05-11 06:19:54 +02:00
|
|
|
[[package]]
|
|
|
|
name = "once_cell"
|
2022-03-09 18:55:23 +01:00
|
|
|
version = "1.10.0"
|
2020-05-11 06:19:54 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-03-09 18:55:23 +01:00
|
|
|
checksum = "87f3e037eac156d1775da914196f0f37741a274155e34a0b7e427c35d2a2ecb9"
|
2020-09-12 14:01:59 +02:00
|
|
|
|
2022-02-26 16:02:08 +01:00
|
|
|
[[package]]
|
|
|
|
name = "opaque-debug"
|
|
|
|
version = "0.2.3"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "2839e79665f131bdb5782e51f2c6c9599c133c6098982a54c794358bf432529c"
|
|
|
|
|
2019-04-21 20:44:29 +02:00
|
|
|
[[package]]
|
|
|
|
name = "openssl"
|
2022-01-29 21:18:50 +01:00
|
|
|
version = "0.10.38"
|
2019-04-21 20:44:29 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-01-29 21:18:50 +01:00
|
|
|
checksum = "0c7ae222234c30df141154f159066c5093ff73b63204dcda7121eb082fc56a95"
|
2019-04-21 20:44:29 +02:00
|
|
|
dependencies = [
|
2020-02-12 20:08:24 +01:00
|
|
|
"bitflags",
|
2021-09-03 13:13:03 +02:00
|
|
|
"cfg-if",
|
2020-02-12 20:08:24 +01:00
|
|
|
"foreign-types",
|
|
|
|
"libc",
|
2021-09-14 13:03:18 +02:00
|
|
|
"once_cell",
|
2020-02-12 20:08:24 +01:00
|
|
|
"openssl-sys",
|
2019-04-21 20:44:29 +02:00
|
|
|
]
|
|
|
|
|
2019-04-16 16:57:06 +02:00
|
|
|
[[package]]
|
|
|
|
name = "openssl-probe"
|
2022-01-13 05:12:15 +01:00
|
|
|
version = "0.1.5"
|
2019-04-16 16:57:06 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-01-13 05:12:15 +01:00
|
|
|
checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
|
2019-04-16 16:57:06 +02:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "openssl-sys"
|
2022-01-29 21:18:50 +01:00
|
|
|
version = "0.9.72"
|
2019-04-16 16:57:06 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-01-29 21:18:50 +01:00
|
|
|
checksum = "7e46109c383602735fa0a2e48dd2b7c892b048e1bf69e5c3b1d804b7d9c203cb"
|
2019-04-16 16:57:06 +02:00
|
|
|
dependencies = [
|
2020-02-12 20:08:24 +01:00
|
|
|
"autocfg",
|
|
|
|
"cc",
|
|
|
|
"libc",
|
|
|
|
"pkg-config",
|
|
|
|
"vcpkg",
|
2019-04-16 16:57:06 +02:00
|
|
|
]
|
|
|
|
|
2022-02-26 16:02:08 +01:00
|
|
|
[[package]]
|
|
|
|
name = "ordered-multimap"
|
2022-04-04 06:17:51 +02:00
|
|
|
version = "0.4.3"
|
2022-02-26 16:02:08 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-04-04 06:17:51 +02:00
|
|
|
checksum = "ccd746e37177e1711c20dd619a1620f34f5c8b569c53590a72dedd5344d8924a"
|
2022-02-26 16:02:08 +01:00
|
|
|
dependencies = [
|
|
|
|
"dlv-list",
|
2022-04-04 06:17:51 +02:00
|
|
|
"hashbrown 0.12.0",
|
2022-02-26 16:02:08 +01:00
|
|
|
]
|
|
|
|
|
2019-05-14 01:12:43 +02:00
|
|
|
[[package]]
|
2020-07-27 06:16:38 +02:00
|
|
|
name = "owned_ttf_parser"
|
|
|
|
version = "0.6.0"
|
2019-05-14 01:12:43 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-07-27 06:16:38 +02:00
|
|
|
checksum = "9f923fb806c46266c02ab4a5b239735c144bdeda724a50ed058e5226f594cde3"
|
2019-05-14 01:12:43 +02:00
|
|
|
dependencies = [
|
2020-07-27 06:16:38 +02:00
|
|
|
"ttf-parser",
|
2019-04-16 16:57:06 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "parking_lot"
|
2022-02-17 05:17:06 +01:00
|
|
|
version = "0.12.0"
|
2019-05-19 13:56:23 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-02-17 05:17:06 +01:00
|
|
|
checksum = "87f5ec2493a61ac0506c0f4199f99070cbe83857b0337006a30f3e6719b8ef58"
|
2019-05-19 13:56:23 +02:00
|
|
|
dependencies = [
|
2021-02-26 15:51:35 +01:00
|
|
|
"lock_api",
|
|
|
|
"parking_lot_core",
|
2019-05-19 13:56:23 +02:00
|
|
|
]
|
|
|
|
|
2019-07-18 17:13:53 +02:00
|
|
|
[[package]]
|
2019-05-19 13:56:23 +02:00
|
|
|
name = "parking_lot_core"
|
2022-02-17 05:17:06 +01:00
|
|
|
version = "0.9.1"
|
2019-07-18 17:13:53 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-02-17 05:17:06 +01:00
|
|
|
checksum = "28141e0cc4143da2443301914478dc976a61ffdb3f043058310c70df2fed8954"
|
2019-07-18 17:13:53 +02:00
|
|
|
dependencies = [
|
2021-09-03 13:13:03 +02:00
|
|
|
"cfg-if",
|
2020-02-12 20:08:24 +01:00
|
|
|
"libc",
|
2021-02-26 16:28:04 +01:00
|
|
|
"redox_syscall",
|
2020-02-12 20:08:24 +01:00
|
|
|
"smallvec",
|
2022-02-17 05:17:06 +01:00
|
|
|
"windows-sys",
|
2019-07-18 17:13:53 +02:00
|
|
|
]
|
|
|
|
|
2019-04-16 16:57:06 +02:00
|
|
|
[[package]]
|
2021-09-03 13:13:03 +02:00
|
|
|
name = "paste"
|
2022-01-29 21:18:50 +01:00
|
|
|
version = "1.0.6"
|
2019-04-16 16:57:06 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-01-29 21:18:50 +01:00
|
|
|
checksum = "0744126afe1a6dd7f394cb50a716dbe086cb06e255e53d8d0185d82828358fb5"
|
2019-05-19 13:56:23 +02:00
|
|
|
|
2022-02-26 16:02:08 +01:00
|
|
|
[[package]]
|
|
|
|
name = "pathdiff"
|
|
|
|
version = "0.2.1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "8835116a5c179084a830efb3adc117ab007512b535bc1a21c991d3b32a6b44dd"
|
|
|
|
|
2019-05-19 13:56:23 +02:00
|
|
|
[[package]]
|
2021-09-03 13:13:03 +02:00
|
|
|
name = "percent-encoding"
|
|
|
|
version = "2.1.0"
|
2019-05-19 13:56:23 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-09-03 13:13:03 +02:00
|
|
|
checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e"
|
2020-10-26 05:17:33 +01:00
|
|
|
|
2022-02-26 16:02:08 +01:00
|
|
|
[[package]]
|
|
|
|
name = "pest"
|
|
|
|
version = "2.1.3"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "10f4872ae94d7b90ae48754df22fd42ad52ce740b8f370b03da4835417403e53"
|
|
|
|
dependencies = [
|
|
|
|
"ucd-trie",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "pest_derive"
|
|
|
|
version = "2.1.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "833d1ae558dc601e9a60366421196a8d94bc0ac980476d0b67e1d0988d72b2d0"
|
|
|
|
dependencies = [
|
|
|
|
"pest",
|
|
|
|
"pest_generator",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "pest_generator"
|
|
|
|
version = "2.1.3"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "99b8db626e31e5b81787b9783425769681b347011cc59471e33ea46d2ea0cf55"
|
|
|
|
dependencies = [
|
|
|
|
"pest",
|
|
|
|
"pest_meta",
|
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
|
|
|
"syn",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "pest_meta"
|
|
|
|
version = "2.1.3"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "54be6e404f5317079812fc8f9f5279de376d8856929e21c184ecf6bbd692a11d"
|
|
|
|
dependencies = [
|
|
|
|
"maplit",
|
|
|
|
"pest",
|
|
|
|
"sha-1 0.8.2",
|
|
|
|
]
|
|
|
|
|
2020-10-26 05:17:33 +01:00
|
|
|
[[package]]
|
|
|
|
name = "pin-project"
|
2022-01-29 21:18:50 +01:00
|
|
|
version = "1.0.10"
|
2020-10-26 05:17:33 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-01-29 21:18:50 +01:00
|
|
|
checksum = "58ad3879ad3baf4e44784bc6a718a8698867bb991f8ce24d1bcbe2cfb4c3a75e"
|
2020-10-26 05:17:33 +01:00
|
|
|
dependencies = [
|
2021-09-03 13:13:03 +02:00
|
|
|
"pin-project-internal",
|
2019-07-18 17:13:53 +02:00
|
|
|
]
|
|
|
|
|
2020-10-26 05:17:33 +01:00
|
|
|
[[package]]
|
|
|
|
name = "pin-project-internal"
|
2022-01-29 21:18:50 +01:00
|
|
|
version = "1.0.10"
|
2020-10-26 05:17:33 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-01-29 21:18:50 +01:00
|
|
|
checksum = "744b6f092ba29c3650faf274db506afd39944f48420f6c86b17cfe0ee1cb36bb"
|
2020-10-26 05:17:33 +01:00
|
|
|
dependencies = [
|
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
|
|
|
"syn",
|
|
|
|
]
|
|
|
|
|
2020-11-23 11:57:41 +01:00
|
|
|
[[package]]
|
|
|
|
name = "pin-project-lite"
|
2022-01-29 21:18:50 +01:00
|
|
|
version = "0.2.8"
|
2020-11-23 11:57:41 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-01-29 21:18:50 +01:00
|
|
|
checksum = "e280fbe77cc62c91527259e9442153f4688736748d24660126286329742b4c6c"
|
2020-11-23 11:57:41 +01:00
|
|
|
|
2019-08-29 06:26:47 +02:00
|
|
|
[[package]]
|
2019-12-26 05:20:46 +01:00
|
|
|
name = "pin-utils"
|
2020-05-11 06:19:54 +02:00
|
|
|
version = "0.1.0"
|
2019-08-29 06:26:47 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-05-11 06:19:54 +02:00
|
|
|
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
2019-08-29 06:26:47 +02:00
|
|
|
|
2019-04-16 16:57:06 +02:00
|
|
|
[[package]]
|
|
|
|
name = "pkg-config"
|
2022-01-29 21:18:50 +01:00
|
|
|
version = "0.3.24"
|
2019-04-16 16:57:06 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-01-29 21:18:50 +01:00
|
|
|
checksum = "58893f751c9b0412871a09abd62ecd2a00298c6c83befa223ef98c52aef40cbe"
|
2019-04-16 16:57:06 +02:00
|
|
|
|
2019-07-18 17:13:53 +02:00
|
|
|
[[package]]
|
|
|
|
name = "ppv-lite86"
|
2022-01-29 21:18:50 +01:00
|
|
|
version = "0.2.16"
|
2019-07-18 17:13:53 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-01-29 21:18:50 +01:00
|
|
|
checksum = "eb9f9e6e233e5c4a35559a617bf40a4ec447db2e84c20b55a6f83167b7e57872"
|
2019-07-18 17:13:53 +02:00
|
|
|
|
2021-02-26 16:06:33 +01:00
|
|
|
[[package]]
|
|
|
|
name = "proc-macro-error"
|
|
|
|
version = "1.0.4"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
|
|
|
|
dependencies = [
|
|
|
|
"proc-macro-error-attr",
|
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
|
|
|
"syn",
|
2021-02-26 16:28:04 +01:00
|
|
|
"version_check",
|
2021-02-26 16:06:33 +01:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "proc-macro-error-attr"
|
|
|
|
version = "1.0.4"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
|
|
|
|
dependencies = [
|
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
2021-02-26 16:28:04 +01:00
|
|
|
"version_check",
|
2021-02-26 16:06:33 +01:00
|
|
|
]
|
|
|
|
|
2019-08-28 09:23:42 +02:00
|
|
|
[[package]]
|
|
|
|
name = "proc-macro2"
|
2022-01-29 21:18:50 +01:00
|
|
|
version = "1.0.36"
|
2019-08-28 09:23:42 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-01-29 21:18:50 +01:00
|
|
|
checksum = "c7342d5883fbccae1cc37a2353b09c87c9b0f3afd73f5fb9bba687a1f733b029"
|
2019-08-28 09:23:42 +02:00
|
|
|
dependencies = [
|
2020-02-12 20:08:24 +01:00
|
|
|
"unicode-xid",
|
2019-04-21 20:44:29 +02:00
|
|
|
]
|
|
|
|
|
2019-08-28 09:23:42 +02:00
|
|
|
[[package]]
|
|
|
|
name = "quote"
|
2022-01-29 21:18:50 +01:00
|
|
|
version = "1.0.15"
|
2019-08-28 09:23:42 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-01-29 21:18:50 +01:00
|
|
|
checksum = "864d3e96a899863136fc6e99f3d7cae289dafe43bf2c5ac19b70df7210c0a145"
|
2019-08-28 09:23:42 +02:00
|
|
|
dependencies = [
|
2020-02-12 20:08:24 +01:00
|
|
|
"proc-macro2",
|
2019-08-28 09:23:42 +02:00
|
|
|
]
|
|
|
|
|
2021-02-10 18:04:57 +01:00
|
|
|
[[package]]
|
|
|
|
name = "rand"
|
2022-02-17 12:01:16 +01:00
|
|
|
version = "0.8.5"
|
2021-02-10 18:04:57 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-02-17 12:01:16 +01:00
|
|
|
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
|
2021-02-10 18:04:57 +01:00
|
|
|
dependencies = [
|
|
|
|
"libc",
|
2021-09-03 13:13:03 +02:00
|
|
|
"rand_chacha",
|
|
|
|
"rand_core",
|
2021-02-10 18:04:57 +01:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "rand_chacha"
|
2021-09-14 13:03:18 +02:00
|
|
|
version = "0.3.1"
|
2021-02-10 18:04:57 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-09-14 13:03:18 +02:00
|
|
|
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
2021-02-10 18:04:57 +01:00
|
|
|
dependencies = [
|
|
|
|
"ppv-lite86",
|
2021-09-03 13:13:03 +02:00
|
|
|
"rand_core",
|
2021-02-10 18:04:57 +01:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "rand_core"
|
2021-09-14 13:03:18 +02:00
|
|
|
version = "0.6.3"
|
2021-02-10 18:04:57 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-09-14 13:03:18 +02:00
|
|
|
checksum = "d34f1408f55294453790c48b2f1ebbb1c5b4b7563eb1f418bcfcfdbb06ebb4e7"
|
2021-02-10 18:04:57 +01:00
|
|
|
dependencies = [
|
2021-09-03 13:13:03 +02:00
|
|
|
"getrandom",
|
2021-02-10 18:04:57 +01:00
|
|
|
]
|
|
|
|
|
2019-04-16 16:57:06 +02:00
|
|
|
[[package]]
|
|
|
|
name = "redox_syscall"
|
2022-03-09 18:55:23 +01:00
|
|
|
version = "0.2.11"
|
2021-02-10 18:04:57 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-03-09 18:55:23 +01:00
|
|
|
checksum = "8380fe0152551244f0747b1bf41737e0f8a74f97a14ccefd1148187271634f3c"
|
2021-02-10 18:04:57 +01:00
|
|
|
dependencies = [
|
|
|
|
"bitflags",
|
|
|
|
]
|
|
|
|
|
2019-04-16 16:57:06 +02:00
|
|
|
[[package]]
|
|
|
|
name = "regex"
|
2022-03-09 18:55:23 +01:00
|
|
|
version = "1.5.5"
|
2019-04-16 16:57:06 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-03-09 18:55:23 +01:00
|
|
|
checksum = "1a11647b6b25ff05a515cb92c365cec08801e83423a235b51e231e1808747286"
|
2019-04-16 16:57:06 +02:00
|
|
|
dependencies = [
|
2020-02-12 20:08:24 +01:00
|
|
|
"aho-corasick",
|
|
|
|
"memchr",
|
|
|
|
"regex-syntax",
|
2019-04-16 16:57:06 +02:00
|
|
|
]
|
|
|
|
|
2020-10-30 16:40:35 +01:00
|
|
|
[[package]]
|
|
|
|
name = "regex-automata"
|
2021-09-14 13:03:18 +02:00
|
|
|
version = "0.1.10"
|
2020-10-30 16:40:35 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-09-14 13:03:18 +02:00
|
|
|
checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
|
2020-10-30 16:40:35 +01:00
|
|
|
dependencies = [
|
|
|
|
"regex-syntax",
|
|
|
|
]
|
|
|
|
|
2019-04-16 16:57:06 +02:00
|
|
|
[[package]]
|
|
|
|
name = "regex-syntax"
|
2021-09-14 13:03:18 +02:00
|
|
|
version = "0.6.25"
|
2019-04-16 16:57:06 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-09-14 13:03:18 +02:00
|
|
|
checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b"
|
2019-04-16 16:57:06 +02:00
|
|
|
|
2019-04-21 20:44:29 +02:00
|
|
|
[[package]]
|
|
|
|
name = "remove_dir_all"
|
2021-02-26 16:28:04 +01:00
|
|
|
version = "0.5.3"
|
2019-04-21 20:44:29 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-02-26 16:28:04 +01:00
|
|
|
checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7"
|
2019-04-21 20:44:29 +02:00
|
|
|
dependencies = [
|
2021-09-03 13:13:03 +02:00
|
|
|
"winapi",
|
2019-04-21 20:44:29 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "reqwest"
|
2022-03-15 05:15:54 +01:00
|
|
|
version = "0.11.10"
|
2019-04-21 20:44:29 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-03-15 05:15:54 +01:00
|
|
|
checksum = "46a1f7aa4f35e5e8b4160449f51afc758f0ce6454315a9fa7d0d113e958c41eb"
|
2020-02-12 20:08:24 +01:00
|
|
|
dependencies = [
|
2020-11-23 11:57:41 +01:00
|
|
|
"base64 0.13.0",
|
2021-09-03 13:13:03 +02:00
|
|
|
"bytes",
|
2020-02-12 20:08:24 +01:00
|
|
|
"encoding_rs",
|
|
|
|
"futures-core",
|
|
|
|
"futures-util",
|
2022-01-11 12:10:15 +01:00
|
|
|
"h2",
|
2020-02-12 20:08:24 +01:00
|
|
|
"http",
|
|
|
|
"http-body",
|
|
|
|
"hyper",
|
|
|
|
"hyper-tls",
|
2020-09-11 19:40:12 +02:00
|
|
|
"ipnet",
|
2020-02-12 20:08:24 +01:00
|
|
|
"js-sys",
|
|
|
|
"lazy_static",
|
|
|
|
"log",
|
|
|
|
"mime",
|
|
|
|
"native-tls",
|
|
|
|
"percent-encoding",
|
2021-09-03 13:13:03 +02:00
|
|
|
"pin-project-lite",
|
2022-02-26 16:02:08 +01:00
|
|
|
"serde",
|
2021-10-19 06:17:43 +02:00
|
|
|
"serde_json",
|
2020-11-30 05:17:12 +01:00
|
|
|
"serde_urlencoded",
|
2021-02-26 16:04:58 +01:00
|
|
|
"tokio",
|
2021-09-03 13:13:03 +02:00
|
|
|
"tokio-native-tls",
|
2020-02-12 20:08:24 +01:00
|
|
|
"url",
|
|
|
|
"wasm-bindgen",
|
|
|
|
"wasm-bindgen-futures",
|
|
|
|
"web-sys",
|
2021-09-03 13:13:03 +02:00
|
|
|
"winreg",
|
2019-04-16 16:57:06 +02:00
|
|
|
]
|
|
|
|
|
2022-02-26 16:02:08 +01:00
|
|
|
[[package]]
|
|
|
|
name = "ron"
|
|
|
|
version = "0.7.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "1b861ecaade43ac97886a512b360d01d66be9f41f3c61088b42cedf92e03d678"
|
|
|
|
dependencies = [
|
|
|
|
"base64 0.13.0",
|
|
|
|
"bitflags",
|
|
|
|
"serde",
|
|
|
|
]
|
|
|
|
|
2019-04-23 18:19:35 +02:00
|
|
|
[[package]]
|
|
|
|
name = "ructe"
|
2022-02-07 05:19:19 +01:00
|
|
|
version = "0.14.0"
|
2019-04-23 18:19:35 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-02-07 05:19:19 +01:00
|
|
|
checksum = "ef88d8c2492d7266e264b31e0ffcf1149d5ba183bccd3abaf1483ee905fc85de"
|
2019-04-23 18:19:35 +02:00
|
|
|
dependencies = [
|
2021-03-29 12:56:11 +02:00
|
|
|
"base64 0.13.0",
|
2020-02-12 20:08:24 +01:00
|
|
|
"bytecount",
|
|
|
|
"itertools",
|
|
|
|
"md5",
|
2022-02-26 16:02:08 +01:00
|
|
|
"nom",
|
2019-04-23 18:19:35 +02:00
|
|
|
]
|
|
|
|
|
2020-11-24 19:06:18 +01:00
|
|
|
[[package]]
|
|
|
|
name = "rust-ini"
|
2022-04-04 06:17:51 +02:00
|
|
|
version = "0.18.0"
|
2020-11-24 19:06:18 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-04-04 06:17:51 +02:00
|
|
|
checksum = "f6d5f2436026b4f6e79dc829837d467cc7e9a55ee40e750d716713540715a2df"
|
2022-02-26 16:02:08 +01:00
|
|
|
dependencies = [
|
|
|
|
"cfg-if",
|
|
|
|
"ordered-multimap",
|
|
|
|
]
|
2020-11-24 19:06:18 +01:00
|
|
|
|
2019-04-16 16:57:06 +02:00
|
|
|
[[package]]
|
|
|
|
name = "rustc_version"
|
2022-01-29 21:18:50 +01:00
|
|
|
version = "0.4.0"
|
2021-09-14 13:03:18 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-01-29 21:18:50 +01:00
|
|
|
checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
|
2021-09-14 13:03:18 +02:00
|
|
|
dependencies = [
|
2022-01-29 21:18:50 +01:00
|
|
|
"semver",
|
2019-04-16 16:57:06 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "rusttype"
|
2020-07-27 06:16:38 +02:00
|
|
|
version = "0.9.2"
|
2019-04-16 16:57:06 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-07-27 06:16:38 +02:00
|
|
|
checksum = "dc7c727aded0be18c5b80c1640eae0ac8e396abf6fa8477d96cb37d18ee5ec59"
|
2019-04-16 16:57:06 +02:00
|
|
|
dependencies = [
|
2020-07-27 06:16:38 +02:00
|
|
|
"ab_glyph_rasterizer",
|
|
|
|
"owned_ttf_parser",
|
2019-04-16 16:57:06 +02:00
|
|
|
]
|
|
|
|
|
2021-03-29 12:12:46 +02:00
|
|
|
[[package]]
|
|
|
|
name = "rustversion"
|
2022-01-29 21:18:50 +01:00
|
|
|
version = "1.0.6"
|
2021-03-29 12:12:46 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-01-29 21:18:50 +01:00
|
|
|
checksum = "f2cc38e8fa666e2de3c4aba7edeb5ffc5246c1c2ed0e3d17e560aeeba736b23f"
|
2021-03-29 12:12:46 +02:00
|
|
|
|
2019-07-19 16:40:13 +02:00
|
|
|
[[package]]
|
|
|
|
name = "ryu"
|
2022-01-29 21:18:50 +01:00
|
|
|
version = "1.0.9"
|
2019-04-16 16:57:06 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-01-29 21:18:50 +01:00
|
|
|
checksum = "73b4b750c782965c211b42f022f59af1fbceabdd026623714f104152f1ec149f"
|
2019-04-16 16:57:06 +02:00
|
|
|
|
2019-04-21 20:44:29 +02:00
|
|
|
[[package]]
|
|
|
|
name = "schannel"
|
2021-02-26 16:28:04 +01:00
|
|
|
version = "0.1.19"
|
2019-04-21 20:44:29 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-02-26 16:28:04 +01:00
|
|
|
checksum = "8f05ba609c234e60bee0d547fe94a4c7e9da733d1c962cf6e59efa4cd9c8bc75"
|
2019-04-21 20:44:29 +02:00
|
|
|
dependencies = [
|
2020-02-12 20:08:24 +01:00
|
|
|
"lazy_static",
|
2021-09-03 13:13:03 +02:00
|
|
|
"winapi",
|
2019-04-21 20:44:29 +02:00
|
|
|
]
|
|
|
|
|
2019-05-19 13:56:23 +02:00
|
|
|
[[package]]
|
|
|
|
name = "scopeguard"
|
2020-07-23 06:19:01 +02:00
|
|
|
version = "1.1.0"
|
2019-05-19 13:56:23 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-07-23 06:19:01 +02:00
|
|
|
checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
|
2019-05-19 13:56:23 +02:00
|
|
|
|
2019-04-21 20:44:29 +02:00
|
|
|
[[package]]
|
|
|
|
name = "security-framework"
|
2022-02-17 12:01:16 +01:00
|
|
|
version = "2.6.1"
|
2019-04-21 20:44:29 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-02-17 12:01:16 +01:00
|
|
|
checksum = "2dc14f172faf8a0194a3aded622712b0de276821addc574fa54fc0a1167e10dc"
|
2019-04-21 20:44:29 +02:00
|
|
|
dependencies = [
|
2021-02-26 16:28:04 +01:00
|
|
|
"bitflags",
|
2020-02-12 20:08:24 +01:00
|
|
|
"core-foundation",
|
|
|
|
"core-foundation-sys",
|
|
|
|
"libc",
|
|
|
|
"security-framework-sys",
|
2019-04-21 20:44:29 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "security-framework-sys"
|
2022-02-17 12:01:16 +01:00
|
|
|
version = "2.6.1"
|
2019-04-21 20:44:29 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-02-17 12:01:16 +01:00
|
|
|
checksum = "0160a13a177a45bfb43ce71c01580998474f556ad854dcbca936dd2841a5c556"
|
2019-04-21 20:44:29 +02:00
|
|
|
dependencies = [
|
2020-02-12 20:08:24 +01:00
|
|
|
"core-foundation-sys",
|
2021-02-26 16:28:04 +01:00
|
|
|
"libc",
|
2019-04-21 20:44:29 +02:00
|
|
|
]
|
|
|
|
|
2019-04-16 16:57:06 +02:00
|
|
|
[[package]]
|
|
|
|
name = "semver"
|
2022-03-09 18:55:23 +01:00
|
|
|
version = "1.0.6"
|
2021-09-14 13:03:18 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-03-09 18:55:23 +01:00
|
|
|
checksum = "a4a3381e03edd24287172047536f20cabde766e2cd3e65e6b00fb3af51c4f38d"
|
2021-09-14 13:03:18 +02:00
|
|
|
|
2019-04-16 16:57:06 +02:00
|
|
|
[[package]]
|
|
|
|
name = "serde"
|
2022-01-26 05:15:49 +01:00
|
|
|
version = "1.0.136"
|
2019-04-16 16:57:06 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-01-26 05:15:49 +01:00
|
|
|
checksum = "ce31e24b01e1e524df96f1c2fdd054405f8d7376249a5110886fb4b658484789"
|
2020-11-24 19:06:18 +01:00
|
|
|
dependencies = [
|
2022-02-26 16:02:08 +01:00
|
|
|
"serde_derive",
|
2020-11-24 19:06:18 +01:00
|
|
|
]
|
|
|
|
|
2019-04-16 16:57:06 +02:00
|
|
|
[[package]]
|
|
|
|
name = "serde_derive"
|
2022-01-26 05:15:49 +01:00
|
|
|
version = "1.0.136"
|
2019-04-16 16:57:06 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-01-26 05:15:49 +01:00
|
|
|
checksum = "08597e7152fcd306f41838ed3e37be9eaeed2b61c42e2117266a554fab4662f9"
|
2019-04-16 16:57:06 +02:00
|
|
|
dependencies = [
|
2020-02-12 20:08:24 +01:00
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
|
|
|
"syn",
|
2019-04-16 16:57:06 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "serde_json"
|
2022-02-14 05:16:24 +01:00
|
|
|
version = "1.0.79"
|
2019-04-16 16:57:06 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-02-14 05:16:24 +01:00
|
|
|
checksum = "8e8d9fa5c3b304765ce1fd9c4c8a3de2c8db365a5b91be52f186efc675681d95"
|
2019-04-16 16:57:06 +02:00
|
|
|
dependencies = [
|
2022-02-17 12:01:16 +01:00
|
|
|
"itoa",
|
2020-02-12 20:08:24 +01:00
|
|
|
"ryu",
|
2022-02-26 16:02:08 +01:00
|
|
|
"serde",
|
2020-11-24 19:06:18 +01:00
|
|
|
]
|
|
|
|
|
2020-11-23 11:57:41 +01:00
|
|
|
[[package]]
|
|
|
|
name = "serde_urlencoded"
|
2022-01-29 21:18:50 +01:00
|
|
|
version = "0.7.1"
|
2020-11-23 11:57:41 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-01-29 21:18:50 +01:00
|
|
|
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
|
2020-11-23 11:57:41 +01:00
|
|
|
dependencies = [
|
|
|
|
"form_urlencoded",
|
2022-02-17 12:01:16 +01:00
|
|
|
"itoa",
|
2020-11-23 11:57:41 +01:00
|
|
|
"ryu",
|
2022-02-26 16:02:08 +01:00
|
|
|
"serde",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "sha-1"
|
|
|
|
version = "0.8.2"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "f7d94d0bede923b3cea61f3f1ff57ff8cdfd77b400fb8f9998949e0cf04163df"
|
|
|
|
dependencies = [
|
|
|
|
"block-buffer 0.7.3",
|
|
|
|
"digest 0.8.1",
|
|
|
|
"fake-simd",
|
|
|
|
"opaque-debug",
|
2020-11-23 11:57:41 +01:00
|
|
|
]
|
|
|
|
|
2020-09-12 14:01:59 +02:00
|
|
|
[[package]]
|
|
|
|
name = "sha-1"
|
2022-01-29 21:18:50 +01:00
|
|
|
version = "0.10.0"
|
2020-09-12 14:01:59 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-01-29 21:18:50 +01:00
|
|
|
checksum = "028f48d513f9678cda28f6e4064755b3fbb2af6acd672f2c209b62323f7aea0f"
|
2020-09-12 14:01:59 +02:00
|
|
|
dependencies = [
|
2021-09-03 13:13:03 +02:00
|
|
|
"cfg-if",
|
2021-09-14 13:03:18 +02:00
|
|
|
"cpufeatures",
|
2022-02-26 16:02:08 +01:00
|
|
|
"digest 0.10.3",
|
2020-09-12 14:01:59 +02:00
|
|
|
]
|
|
|
|
|
2020-10-30 16:40:35 +01:00
|
|
|
[[package]]
|
|
|
|
name = "sharded-slab"
|
2022-01-29 21:18:50 +01:00
|
|
|
version = "0.1.4"
|
2020-10-30 16:40:35 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-01-29 21:18:50 +01:00
|
|
|
checksum = "900fba806f70c630b0a382d0d825e17a0f19fcd059a2ade1ff237bcddf446b31"
|
2020-10-30 16:40:35 +01:00
|
|
|
dependencies = [
|
|
|
|
"lazy_static",
|
|
|
|
]
|
|
|
|
|
2019-05-01 13:38:57 +02:00
|
|
|
[[package]]
|
|
|
|
name = "signal-hook-registry"
|
2021-09-14 13:03:18 +02:00
|
|
|
version = "1.4.0"
|
2019-04-16 16:57:06 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-09-14 13:03:18 +02:00
|
|
|
checksum = "e51e73328dc4ac0c7ccbda3a494dfa03df1de2f46018127f60c693f2648455b0"
|
2019-04-16 16:57:06 +02:00
|
|
|
dependencies = [
|
2020-02-12 20:08:24 +01:00
|
|
|
"libc",
|
2019-04-16 16:57:06 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "slab"
|
2022-01-29 21:18:50 +01:00
|
|
|
version = "0.4.5"
|
2019-04-16 16:57:06 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-01-29 21:18:50 +01:00
|
|
|
checksum = "9def91fd1e018fe007022791f865d0ccc9b3a0d5001e01aabb8b40e46000afb5"
|
2019-04-16 16:57:06 +02:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "smallvec"
|
2022-01-29 21:18:50 +01:00
|
|
|
version = "1.8.0"
|
2019-04-16 16:57:06 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-01-29 21:18:50 +01:00
|
|
|
checksum = "f2dd574626839106c320a323308629dcb1acfc96e32a8cba364ddc61ac23ee83"
|
2019-04-16 16:57:06 +02:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "socket2"
|
2022-01-29 21:18:50 +01:00
|
|
|
version = "0.4.4"
|
2019-04-16 16:57:06 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-01-29 21:18:50 +01:00
|
|
|
checksum = "66d72b759436ae32898a2af0a14218dbf55efde3feeb170eb623637db85ee1e0"
|
2019-04-16 16:57:06 +02:00
|
|
|
dependencies = [
|
2020-02-12 20:08:24 +01:00
|
|
|
"libc",
|
2021-09-03 13:13:03 +02:00
|
|
|
"winapi",
|
2019-04-16 16:57:06 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "syn"
|
2022-01-29 21:18:50 +01:00
|
|
|
version = "1.0.86"
|
2019-04-16 16:57:06 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-01-29 21:18:50 +01:00
|
|
|
checksum = "8a65b3f4ffa0092e9887669db0eae07941f023991ab58ea44da8fe8e2d511c6b"
|
2019-04-16 16:57:06 +02:00
|
|
|
dependencies = [
|
2020-02-12 20:08:24 +01:00
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
|
|
|
"unicode-xid",
|
2019-08-28 09:23:42 +02:00
|
|
|
]
|
|
|
|
|
2019-04-21 20:44:29 +02:00
|
|
|
[[package]]
|
|
|
|
name = "tempfile"
|
2022-01-11 12:10:18 +01:00
|
|
|
version = "3.3.0"
|
2019-04-16 16:57:06 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-01-11 12:10:18 +01:00
|
|
|
checksum = "5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4"
|
2019-04-16 16:57:06 +02:00
|
|
|
dependencies = [
|
2021-09-03 13:13:03 +02:00
|
|
|
"cfg-if",
|
2022-01-11 12:10:18 +01:00
|
|
|
"fastrand",
|
2020-02-12 20:08:24 +01:00
|
|
|
"libc",
|
2021-02-26 16:28:04 +01:00
|
|
|
"redox_syscall",
|
2020-02-12 20:08:24 +01:00
|
|
|
"remove_dir_all",
|
2021-09-03 13:13:03 +02:00
|
|
|
"winapi",
|
2019-04-16 16:57:06 +02:00
|
|
|
]
|
|
|
|
|
2020-09-12 14:01:59 +02:00
|
|
|
[[package]]
|
|
|
|
name = "thiserror"
|
2022-01-29 21:18:50 +01:00
|
|
|
version = "1.0.30"
|
2020-09-12 14:01:59 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-01-29 21:18:50 +01:00
|
|
|
checksum = "854babe52e4df1653706b98fcfc05843010039b406875930a70e4d9644e5c417"
|
2020-09-12 14:01:59 +02:00
|
|
|
dependencies = [
|
|
|
|
"thiserror-impl",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "thiserror-impl"
|
2022-01-29 21:18:50 +01:00
|
|
|
version = "1.0.30"
|
2020-09-12 14:01:59 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-01-29 21:18:50 +01:00
|
|
|
checksum = "aa32fd3f627f367fe16f893e2597ae3c05020f8bba2666a4e6ea73d377e5714b"
|
2020-09-12 14:01:59 +02:00
|
|
|
dependencies = [
|
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
|
|
|
"syn",
|
|
|
|
]
|
|
|
|
|
2019-04-16 16:57:06 +02:00
|
|
|
[[package]]
|
|
|
|
name = "thread_local"
|
2022-01-26 05:15:42 +01:00
|
|
|
version = "1.1.4"
|
2019-04-16 16:57:06 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-01-26 05:15:42 +01:00
|
|
|
checksum = "5516c27b78311c50bf42c071425c560ac799b11c30b31f87e3081965fe5e0180"
|
2019-04-16 16:57:06 +02:00
|
|
|
dependencies = [
|
2021-02-26 16:28:04 +01:00
|
|
|
"once_cell",
|
2019-04-16 16:57:06 +02:00
|
|
|
]
|
|
|
|
|
2020-09-12 14:01:59 +02:00
|
|
|
[[package]]
|
|
|
|
name = "time"
|
2022-01-29 21:18:50 +01:00
|
|
|
version = "0.3.7"
|
2020-09-12 14:01:59 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-01-29 21:18:50 +01:00
|
|
|
checksum = "004cbc98f30fa233c61a38bc77e96a9106e65c88f2d3bef182ae952027e5753d"
|
2020-09-12 14:01:59 +02:00
|
|
|
dependencies = [
|
2022-02-17 12:01:16 +01:00
|
|
|
"itoa",
|
2020-09-12 14:01:59 +02:00
|
|
|
"libc",
|
2022-01-29 21:18:50 +01:00
|
|
|
"num_threads",
|
2020-09-12 14:01:59 +02:00
|
|
|
"time-macros",
|
2021-11-25 05:15:50 +01:00
|
|
|
]
|
|
|
|
|
2020-09-12 14:01:59 +02:00
|
|
|
[[package]]
|
|
|
|
name = "time-macros"
|
2022-01-29 21:18:50 +01:00
|
|
|
version = "0.2.3"
|
2020-09-12 14:01:59 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-01-29 21:18:50 +01:00
|
|
|
checksum = "25eb0ca3468fc0acc11828786797f6ef9aa1555e4a211a60d64cc8e4d1be47d6"
|
2020-09-12 14:01:59 +02:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "tinyvec"
|
2022-01-29 21:18:50 +01:00
|
|
|
version = "1.5.1"
|
2020-10-27 09:07:18 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-01-29 21:18:50 +01:00
|
|
|
checksum = "2c1c1d5a42b6245520c249549ec267180beaffcc0615401ac8e31853d4b6d8d2"
|
2020-10-27 09:07:18 +01:00
|
|
|
dependencies = [
|
|
|
|
"tinyvec_macros",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "tinyvec_macros"
|
|
|
|
version = "0.1.0"
|
2020-09-12 14:01:59 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-27 09:07:18 +01:00
|
|
|
checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
|
2020-09-12 14:01:59 +02:00
|
|
|
|
2019-04-21 20:44:29 +02:00
|
|
|
[[package]]
|
|
|
|
name = "tokio"
|
2022-04-28 06:13:27 +02:00
|
|
|
version = "1.18.0"
|
2019-04-21 20:44:29 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-04-28 06:13:27 +02:00
|
|
|
checksum = "0f48b6d60512a392e34dbf7fd456249fd2de3c83669ab642e021903f4015185b"
|
2019-04-21 20:44:29 +02:00
|
|
|
dependencies = [
|
2021-09-03 13:13:03 +02:00
|
|
|
"bytes",
|
2020-02-12 20:08:24 +01:00
|
|
|
"libc",
|
|
|
|
"memchr",
|
2022-02-17 05:17:06 +01:00
|
|
|
"mio",
|
2021-09-03 13:13:03 +02:00
|
|
|
"once_cell",
|
|
|
|
"parking_lot",
|
|
|
|
"pin-project-lite",
|
2020-02-12 20:08:24 +01:00
|
|
|
"signal-hook-registry",
|
2022-02-17 05:17:06 +01:00
|
|
|
"socket2",
|
2021-09-03 13:13:03 +02:00
|
|
|
"winapi",
|
2019-04-21 20:44:29 +02:00
|
|
|
]
|
|
|
|
|
2019-05-19 13:56:23 +02:00
|
|
|
[[package]]
|
2021-09-03 13:13:03 +02:00
|
|
|
name = "tokio-native-tls"
|
|
|
|
version = "0.3.0"
|
2019-05-19 13:56:23 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-09-03 13:13:03 +02:00
|
|
|
checksum = "f7d995660bd2b7f8c1568414c1126076c13fbb725c40112dc0120b78eb9b717b"
|
2019-05-19 13:56:23 +02:00
|
|
|
dependencies = [
|
2020-02-12 20:08:24 +01:00
|
|
|
"native-tls",
|
2021-02-26 16:04:58 +01:00
|
|
|
"tokio",
|
2019-05-19 13:56:23 +02:00
|
|
|
]
|
|
|
|
|
2020-04-04 13:22:37 +02:00
|
|
|
[[package]]
|
|
|
|
name = "tokio-util"
|
2022-01-29 21:18:50 +01:00
|
|
|
version = "0.6.9"
|
2020-04-04 13:22:37 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-01-29 21:18:50 +01:00
|
|
|
checksum = "9e99e1983e5d376cd8eb4b66604d2e99e79f5bd988c3055891dcd8c9e2604cc0"
|
2020-04-04 13:22:37 +02:00
|
|
|
dependencies = [
|
2021-09-03 13:13:03 +02:00
|
|
|
"bytes",
|
2020-04-04 13:22:37 +02:00
|
|
|
"futures-core",
|
|
|
|
"futures-sink",
|
|
|
|
"log",
|
2021-09-03 13:13:03 +02:00
|
|
|
"pin-project-lite",
|
2021-02-26 16:04:58 +01:00
|
|
|
"tokio",
|
2020-04-04 13:22:37 +02:00
|
|
|
]
|
|
|
|
|
2022-02-16 05:16:16 +01:00
|
|
|
[[package]]
|
|
|
|
name = "tokio-util"
|
|
|
|
version = "0.7.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "64910e1b9c1901aaf5375561e35b9c057d95ff41a44ede043a03e09279eabaf1"
|
|
|
|
dependencies = [
|
|
|
|
"bytes",
|
|
|
|
"futures-core",
|
|
|
|
"futures-sink",
|
|
|
|
"log",
|
|
|
|
"pin-project-lite",
|
|
|
|
"tokio",
|
|
|
|
]
|
|
|
|
|
2020-11-24 19:06:18 +01:00
|
|
|
[[package]]
|
|
|
|
name = "toml"
|
2021-02-26 16:28:04 +01:00
|
|
|
version = "0.5.8"
|
2020-11-24 19:06:18 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-02-26 16:28:04 +01:00
|
|
|
checksum = "a31142970826733df8241ef35dc040ef98c679ab14d7c3e54d827099b3acecaa"
|
2020-11-24 19:06:18 +01:00
|
|
|
dependencies = [
|
2022-02-26 16:02:08 +01:00
|
|
|
"serde",
|
2020-11-24 19:06:18 +01:00
|
|
|
]
|
|
|
|
|
2019-04-16 16:57:06 +02:00
|
|
|
[[package]]
|
2020-02-12 19:45:18 +01:00
|
|
|
name = "tower-service"
|
2021-02-26 16:28:04 +01:00
|
|
|
version = "0.3.1"
|
2019-04-16 16:57:06 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-02-26 16:28:04 +01:00
|
|
|
checksum = "360dfd1d6d30e05fda32ace2c8c70e9c0a9da713275777f5a4dbb8a1893930c6"
|
2019-04-16 16:57:06 +02:00
|
|
|
|
2020-10-30 16:40:35 +01:00
|
|
|
[[package]]
|
|
|
|
name = "tracing"
|
2022-04-11 06:17:01 +02:00
|
|
|
version = "0.1.33"
|
2020-10-30 16:40:35 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-04-11 06:17:01 +02:00
|
|
|
checksum = "80b9fa4360528139bc96100c160b7ae879f5567f49f1782b0b02035b0358ebf3"
|
2020-10-30 16:40:35 +01:00
|
|
|
dependencies = [
|
2021-09-03 13:13:03 +02:00
|
|
|
"cfg-if",
|
2021-02-26 16:04:58 +01:00
|
|
|
"log",
|
2021-09-03 13:13:03 +02:00
|
|
|
"pin-project-lite",
|
2020-10-30 16:40:35 +01:00
|
|
|
"tracing-attributes",
|
|
|
|
"tracing-core",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "tracing-actix-web"
|
2022-03-02 05:20:11 +01:00
|
|
|
version = "0.5.1"
|
2020-10-30 16:40:35 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-03-02 05:20:11 +01:00
|
|
|
checksum = "99bcebac55fba44eadf75a424ee403e756f9165596a613d125876388e5fb4c34"
|
2020-10-30 16:40:35 +01:00
|
|
|
dependencies = [
|
|
|
|
"actix-web",
|
2021-10-11 06:24:00 +02:00
|
|
|
"pin-project",
|
2020-10-30 16:40:35 +01:00
|
|
|
"tracing",
|
|
|
|
"tracing-futures",
|
|
|
|
"uuid",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "tracing-attributes"
|
2022-03-09 18:55:23 +01:00
|
|
|
version = "0.1.20"
|
2020-10-30 16:40:35 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-03-09 18:55:23 +01:00
|
|
|
checksum = "2e65ce065b4b5c53e73bb28912318cb8c9e9ad3921f1d669eb0e68b4c8143a2b"
|
2020-10-30 16:40:35 +01:00
|
|
|
dependencies = [
|
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
|
|
|
"syn",
|
|
|
|
]
|
|
|
|
|
2021-03-22 12:46:10 +01:00
|
|
|
[[package]]
|
|
|
|
name = "tracing-bunyan-formatter"
|
2022-01-17 05:17:42 +01:00
|
|
|
version = "0.3.2"
|
2021-03-22 12:46:10 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-01-17 05:17:42 +01:00
|
|
|
checksum = "bd99ff040622c69c0fc4bd3ea5fe16630ce46400a79bd41339391b2d416ea24c"
|
2021-03-22 12:46:10 +01:00
|
|
|
dependencies = [
|
|
|
|
"gethostname",
|
|
|
|
"log",
|
2022-02-26 16:02:08 +01:00
|
|
|
"serde",
|
2021-03-22 12:46:10 +01:00
|
|
|
"serde_json",
|
2022-03-10 05:16:17 +01:00
|
|
|
"time",
|
2021-03-22 12:46:10 +01:00
|
|
|
"tracing",
|
|
|
|
"tracing-core",
|
|
|
|
"tracing-log",
|
|
|
|
"tracing-subscriber",
|
|
|
|
]
|
|
|
|
|
2020-10-30 16:40:35 +01:00
|
|
|
[[package]]
|
|
|
|
name = "tracing-core"
|
2022-03-09 18:55:23 +01:00
|
|
|
version = "0.1.23"
|
2020-10-30 16:40:35 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-03-09 18:55:23 +01:00
|
|
|
checksum = "aa31669fa42c09c34d94d8165dd2012e8ff3c66aca50f3bb226b68f216f2706c"
|
2020-10-30 16:40:35 +01:00
|
|
|
dependencies = [
|
|
|
|
"lazy_static",
|
2022-02-04 05:16:40 +01:00
|
|
|
"valuable",
|
2020-10-30 16:40:35 +01:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "tracing-futures"
|
2021-02-26 15:31:17 +01:00
|
|
|
version = "0.2.5"
|
2020-10-30 16:40:35 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-02-26 15:31:17 +01:00
|
|
|
checksum = "97d095ae15e245a057c8e8451bab9b3ee1e1f68e9ba2b4fbc18d0ac5237835f2"
|
2020-10-30 16:40:35 +01:00
|
|
|
dependencies = [
|
2021-09-03 13:13:03 +02:00
|
|
|
"pin-project",
|
2020-10-30 16:40:35 +01:00
|
|
|
"tracing",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "tracing-log"
|
2021-02-22 05:14:56 +01:00
|
|
|
version = "0.1.2"
|
2020-10-30 16:40:35 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-02-22 05:14:56 +01:00
|
|
|
checksum = "a6923477a48e41c1951f1999ef8bb5a3023eb723ceadafe78ffb65dc366761e3"
|
2020-10-30 16:40:35 +01:00
|
|
|
dependencies = [
|
|
|
|
"lazy_static",
|
|
|
|
"log",
|
|
|
|
"tracing-core",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "tracing-subscriber"
|
2022-04-11 06:17:10 +02:00
|
|
|
version = "0.3.11"
|
2020-10-30 16:40:35 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-04-11 06:17:10 +02:00
|
|
|
checksum = "4bc28f93baff38037f64e6f43d34cfa1605f27a49c34e8a04c5e78b0babf2596"
|
2020-10-30 16:40:35 +01:00
|
|
|
dependencies = [
|
2020-11-24 19:06:18 +01:00
|
|
|
"ansi_term",
|
2020-10-30 16:40:35 +01:00
|
|
|
"lazy_static",
|
|
|
|
"matchers",
|
|
|
|
"regex",
|
|
|
|
"sharded-slab",
|
|
|
|
"smallvec",
|
|
|
|
"thread_local",
|
|
|
|
"tracing",
|
|
|
|
"tracing-core",
|
|
|
|
"tracing-log",
|
|
|
|
]
|
|
|
|
|
2019-04-16 16:57:06 +02:00
|
|
|
[[package]]
|
2019-04-21 20:44:29 +02:00
|
|
|
name = "try-lock"
|
2021-02-26 16:28:04 +01:00
|
|
|
version = "0.2.3"
|
2019-04-16 16:57:06 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-02-26 16:28:04 +01:00
|
|
|
checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642"
|
2019-04-16 16:57:06 +02:00
|
|
|
|
2020-07-27 06:16:38 +02:00
|
|
|
[[package]]
|
|
|
|
name = "ttf-parser"
|
|
|
|
version = "0.6.2"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "3e5d7cd7ab3e47dda6e56542f4bbf3824c15234958c6e1bd6aaa347e93499fdc"
|
|
|
|
|
2020-09-12 14:01:59 +02:00
|
|
|
[[package]]
|
|
|
|
name = "typenum"
|
2022-01-29 21:18:50 +01:00
|
|
|
version = "1.15.0"
|
2020-09-12 14:01:59 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-01-29 21:18:50 +01:00
|
|
|
checksum = "dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987"
|
2020-09-12 14:01:59 +02:00
|
|
|
|
2022-02-26 16:02:08 +01:00
|
|
|
[[package]]
|
|
|
|
name = "ucd-trie"
|
|
|
|
version = "0.1.3"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "56dee185309b50d1f11bfedef0fe6d036842e3fb77413abef29f8f8d1c5d4c1c"
|
|
|
|
|
2019-04-21 20:44:29 +02:00
|
|
|
[[package]]
|
2019-04-16 16:57:06 +02:00
|
|
|
name = "unicode-bidi"
|
2022-01-29 21:18:50 +01:00
|
|
|
version = "0.3.7"
|
2019-04-21 20:44:29 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-01-29 21:18:50 +01:00
|
|
|
checksum = "1a01404663e3db436ed2746d9fefef640d868edae3cceb81c3b8d5732fda678f"
|
2019-04-21 20:44:29 +02:00
|
|
|
|
2019-04-16 16:57:06 +02:00
|
|
|
[[package]]
|
|
|
|
name = "unicode-normalization"
|
2021-09-14 13:03:18 +02:00
|
|
|
version = "0.1.19"
|
2019-04-16 16:57:06 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-09-14 13:03:18 +02:00
|
|
|
checksum = "d54590932941a9e9266f0832deed84ebe1bf2e4c9e4a3554d393d18f5e854bf9"
|
2019-04-16 16:57:06 +02:00
|
|
|
dependencies = [
|
2021-02-26 16:28:04 +01:00
|
|
|
"tinyvec",
|
2019-04-16 16:57:06 +02:00
|
|
|
]
|
|
|
|
|
2019-05-14 01:12:43 +02:00
|
|
|
[[package]]
|
2019-08-28 09:23:42 +02:00
|
|
|
name = "unicode-xid"
|
2021-09-14 13:03:18 +02:00
|
|
|
version = "0.2.2"
|
2019-05-14 01:12:43 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-09-14 13:03:18 +02:00
|
|
|
checksum = "8ccb82d61f80a663efe1f787a51b16b5a51e3314d6ac365b08639f52387b33f3"
|
2019-05-14 01:12:43 +02:00
|
|
|
|
|
|
|
[[package]]
|
2019-04-16 16:57:06 +02:00
|
|
|
name = "url"
|
2021-09-14 13:03:18 +02:00
|
|
|
version = "2.2.2"
|
2019-05-14 01:12:43 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-09-14 13:03:18 +02:00
|
|
|
checksum = "a507c383b2d33b5fc35d1861e77e6b383d158b2da5e14fe51b83dfedf6fd578c"
|
2019-05-14 01:12:43 +02:00
|
|
|
dependencies = [
|
2020-11-23 11:57:41 +01:00
|
|
|
"form_urlencoded",
|
2020-02-12 20:08:24 +01:00
|
|
|
"idna",
|
|
|
|
"matches",
|
|
|
|
"percent-encoding",
|
2019-05-14 01:12:43 +02:00
|
|
|
]
|
|
|
|
|
2020-10-30 16:40:35 +01:00
|
|
|
[[package]]
|
|
|
|
name = "uuid"
|
2021-02-26 16:28:04 +01:00
|
|
|
version = "0.8.2"
|
2020-10-30 16:40:35 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-02-26 16:28:04 +01:00
|
|
|
checksum = "bc5cf98d8186244414c848017f0e2676b3fcb46807f6668a97dfe67359a3c4b7"
|
2020-10-30 16:40:35 +01:00
|
|
|
dependencies = [
|
2021-09-03 13:13:03 +02:00
|
|
|
"getrandom",
|
2020-10-30 16:40:35 +01:00
|
|
|
]
|
|
|
|
|
2022-02-04 05:16:40 +01:00
|
|
|
[[package]]
|
|
|
|
name = "valuable"
|
|
|
|
version = "0.1.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d"
|
|
|
|
|
2019-04-16 16:57:06 +02:00
|
|
|
[[package]]
|
|
|
|
name = "vcpkg"
|
2021-09-14 13:03:18 +02:00
|
|
|
version = "0.2.15"
|
2019-04-16 16:57:06 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-09-14 13:03:18 +02:00
|
|
|
checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
|
2019-04-16 16:57:06 +02:00
|
|
|
|
|
|
|
[[package]]
|
2019-04-23 18:19:35 +02:00
|
|
|
name = "vergen"
|
2022-03-10 05:16:17 +01:00
|
|
|
version = "7.0.0"
|
2019-04-16 16:57:06 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-03-10 05:16:17 +01:00
|
|
|
checksum = "4db743914c971db162f35bf46601c5a63ec4452e61461937b4c1ab817a60c12e"
|
2019-04-16 16:57:06 +02:00
|
|
|
dependencies = [
|
2021-03-29 12:12:46 +02:00
|
|
|
"anyhow",
|
2021-09-03 13:13:03 +02:00
|
|
|
"cfg-if",
|
2021-02-26 16:06:33 +01:00
|
|
|
"enum-iterator",
|
|
|
|
"getset",
|
|
|
|
"git2",
|
2021-03-29 12:12:46 +02:00
|
|
|
"rustversion",
|
|
|
|
"thiserror",
|
2022-03-10 05:16:17 +01:00
|
|
|
"time",
|
2019-04-16 16:57:06 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "version_check"
|
2022-01-29 21:18:50 +01:00
|
|
|
version = "0.9.4"
|
2019-04-16 16:57:06 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-01-29 21:18:50 +01:00
|
|
|
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
|
2019-04-16 16:57:06 +02:00
|
|
|
|
|
|
|
[[package]]
|
2019-04-21 20:44:29 +02:00
|
|
|
name = "want"
|
2020-02-12 19:45:18 +01:00
|
|
|
version = "0.3.0"
|
2019-04-16 16:57:06 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-02-12 20:08:24 +01:00
|
|
|
checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0"
|
2019-04-21 20:44:29 +02:00
|
|
|
dependencies = [
|
2020-02-12 20:08:24 +01:00
|
|
|
"log",
|
|
|
|
"try-lock",
|
2019-04-21 20:44:29 +02:00
|
|
|
]
|
2019-04-16 16:57:06 +02:00
|
|
|
|
2020-10-30 13:02:53 +01:00
|
|
|
[[package]]
|
|
|
|
name = "wasi"
|
2021-02-26 16:28:04 +01:00
|
|
|
version = "0.10.2+wasi-snapshot-preview1"
|
2020-10-30 13:02:53 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-02-26 16:28:04 +01:00
|
|
|
checksum = "fd6fbd9a79829dd1ad0cc20627bf1ed606756a7f77edff7b66b7064f9cb327c6"
|
2020-10-30 13:02:53 +01:00
|
|
|
|
2022-04-28 06:13:27 +02:00
|
|
|
[[package]]
|
|
|
|
name = "wasi"
|
|
|
|
version = "0.11.0+wasi-snapshot-preview1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
|
|
|
|
2019-04-16 16:57:06 +02:00
|
|
|
[[package]]
|
2020-02-12 19:45:18 +01:00
|
|
|
name = "wasm-bindgen"
|
2022-01-29 21:18:50 +01:00
|
|
|
version = "0.2.79"
|
2019-04-16 16:57:06 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-01-29 21:18:50 +01:00
|
|
|
checksum = "25f1af7423d8588a3d840681122e72e6a24ddbcb3f0ec385cac0d12d24256c06"
|
2019-04-16 16:57:06 +02:00
|
|
|
dependencies = [
|
2021-09-03 13:13:03 +02:00
|
|
|
"cfg-if",
|
2020-02-12 20:08:24 +01:00
|
|
|
"wasm-bindgen-macro",
|
2019-04-16 16:57:06 +02:00
|
|
|
]
|
|
|
|
|
2019-05-14 01:12:43 +02:00
|
|
|
[[package]]
|
2020-02-12 19:45:18 +01:00
|
|
|
name = "wasm-bindgen-backend"
|
2022-01-29 21:18:50 +01:00
|
|
|
version = "0.2.79"
|
2019-05-14 01:12:43 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-01-29 21:18:50 +01:00
|
|
|
checksum = "8b21c0df030f5a177f3cba22e9bc4322695ec43e7257d865302900290bcdedca"
|
2019-05-14 01:12:43 +02:00
|
|
|
dependencies = [
|
2020-02-12 20:08:24 +01:00
|
|
|
"bumpalo",
|
|
|
|
"lazy_static",
|
|
|
|
"log",
|
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
|
|
|
"syn",
|
|
|
|
"wasm-bindgen-shared",
|
2019-05-14 01:12:43 +02:00
|
|
|
]
|
|
|
|
|
2019-04-16 16:57:06 +02:00
|
|
|
[[package]]
|
2020-02-12 19:45:18 +01:00
|
|
|
name = "wasm-bindgen-futures"
|
2022-01-29 21:18:50 +01:00
|
|
|
version = "0.4.29"
|
2019-04-16 16:57:06 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-01-29 21:18:50 +01:00
|
|
|
checksum = "2eb6ec270a31b1d3c7e266b999739109abce8b6c87e4b31fcfcd788b65267395"
|
2019-04-16 16:57:06 +02:00
|
|
|
dependencies = [
|
2021-09-03 13:13:03 +02:00
|
|
|
"cfg-if",
|
2020-02-12 20:08:24 +01:00
|
|
|
"js-sys",
|
|
|
|
"wasm-bindgen",
|
|
|
|
"web-sys",
|
2019-04-16 16:57:06 +02:00
|
|
|
]
|
|
|
|
|
2019-08-29 06:26:47 +02:00
|
|
|
[[package]]
|
2020-02-12 19:45:18 +01:00
|
|
|
name = "wasm-bindgen-macro"
|
2022-01-29 21:18:50 +01:00
|
|
|
version = "0.2.79"
|
2019-08-29 06:26:47 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-01-29 21:18:50 +01:00
|
|
|
checksum = "2f4203d69e40a52ee523b2529a773d5ffc1dc0071801c87b3d270b471b80ed01"
|
2019-08-29 06:26:47 +02:00
|
|
|
dependencies = [
|
2020-02-12 20:08:24 +01:00
|
|
|
"quote",
|
|
|
|
"wasm-bindgen-macro-support",
|
2019-08-29 06:26:47 +02:00
|
|
|
]
|
|
|
|
|
2019-04-16 16:57:06 +02:00
|
|
|
[[package]]
|
2020-02-12 19:45:18 +01:00
|
|
|
name = "wasm-bindgen-macro-support"
|
2022-01-29 21:18:50 +01:00
|
|
|
version = "0.2.79"
|
2019-04-21 20:44:29 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-01-29 21:18:50 +01:00
|
|
|
checksum = "bfa8a30d46208db204854cadbb5d4baf5fcf8071ba5bf48190c3e59937962ebc"
|
2019-04-21 20:44:29 +02:00
|
|
|
dependencies = [
|
2020-02-12 20:08:24 +01:00
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
|
|
|
"syn",
|
|
|
|
"wasm-bindgen-backend",
|
|
|
|
"wasm-bindgen-shared",
|
2019-04-21 20:44:29 +02:00
|
|
|
]
|
|
|
|
|
2019-04-16 16:57:06 +02:00
|
|
|
[[package]]
|
2020-02-12 19:45:18 +01:00
|
|
|
name = "wasm-bindgen-shared"
|
2022-01-29 21:18:50 +01:00
|
|
|
version = "0.2.79"
|
2019-04-16 16:57:06 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-01-29 21:18:50 +01:00
|
|
|
checksum = "3d958d035c4438e28c70e4321a2911302f10135ce78a9c7834c0cab4123d06a2"
|
2019-04-16 16:57:06 +02:00
|
|
|
|
2019-04-21 20:44:29 +02:00
|
|
|
[[package]]
|
2020-11-23 11:57:41 +01:00
|
|
|
name = "web-sys"
|
2022-01-29 21:18:50 +01:00
|
|
|
version = "0.3.56"
|
2019-04-21 20:44:29 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-01-29 21:18:50 +01:00
|
|
|
checksum = "c060b319f29dd25724f09a2ba1418f142f539b2be99fbf4d2d5a8f7330afb8eb"
|
2019-04-21 20:44:29 +02:00
|
|
|
dependencies = [
|
2020-11-23 11:57:41 +01:00
|
|
|
"js-sys",
|
|
|
|
"wasm-bindgen",
|
2019-04-21 20:44:29 +02:00
|
|
|
]
|
|
|
|
|
2019-04-16 16:57:06 +02:00
|
|
|
[[package]]
|
|
|
|
name = "winapi"
|
2021-02-26 16:28:04 +01:00
|
|
|
version = "0.3.9"
|
2019-04-16 16:57:06 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-02-26 16:28:04 +01:00
|
|
|
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
|
2019-04-16 16:57:06 +02:00
|
|
|
dependencies = [
|
2020-02-12 20:08:24 +01:00
|
|
|
"winapi-i686-pc-windows-gnu",
|
|
|
|
"winapi-x86_64-pc-windows-gnu",
|
2019-04-16 16:57:06 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "winapi-i686-pc-windows-gnu"
|
|
|
|
version = "0.4.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-02-12 20:08:24 +01:00
|
|
|
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
2019-04-16 16:57:06 +02:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "winapi-x86_64-pc-windows-gnu"
|
|
|
|
version = "0.4.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-02-12 20:08:24 +01:00
|
|
|
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
2019-04-16 16:57:06 +02:00
|
|
|
|
2022-02-17 05:17:06 +01:00
|
|
|
[[package]]
|
|
|
|
name = "windows-sys"
|
|
|
|
version = "0.32.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "3df6e476185f92a12c072be4a189a0210dcdcf512a1891d6dff9edb874deadc6"
|
|
|
|
dependencies = [
|
|
|
|
"windows_aarch64_msvc",
|
|
|
|
"windows_i686_gnu",
|
|
|
|
"windows_i686_msvc",
|
|
|
|
"windows_x86_64_gnu",
|
|
|
|
"windows_x86_64_msvc",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "windows_aarch64_msvc"
|
|
|
|
version = "0.32.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "d8e92753b1c443191654ec532f14c199742964a061be25d77d7a96f09db20bf5"
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "windows_i686_gnu"
|
|
|
|
version = "0.32.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "6a711c68811799e017b6038e0922cb27a5e2f43a2ddb609fe0b6f3eeda9de615"
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "windows_i686_msvc"
|
|
|
|
version = "0.32.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "146c11bb1a02615db74680b32a68e2d61f553cc24c4eb5b4ca10311740e44172"
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "windows_x86_64_gnu"
|
|
|
|
version = "0.32.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "c912b12f7454c6620635bbff3450962753834be2a594819bd5e945af18ec64bc"
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "windows_x86_64_msvc"
|
|
|
|
version = "0.32.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "504a2476202769977a040c6364301a3f65d0cc9e3fb08600b2bda150a0488316"
|
|
|
|
|
2019-04-16 16:57:06 +02:00
|
|
|
[[package]]
|
|
|
|
name = "winreg"
|
2022-03-15 05:15:54 +01:00
|
|
|
version = "0.10.1"
|
2019-04-16 16:57:06 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-03-15 05:15:54 +01:00
|
|
|
checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d"
|
2019-04-16 16:57:06 +02:00
|
|
|
dependencies = [
|
2021-09-03 13:13:03 +02:00
|
|
|
"winapi",
|
2019-04-16 16:57:06 +02:00
|
|
|
]
|
|
|
|
|
2021-09-03 13:13:03 +02:00
|
|
|
[[package]]
|
|
|
|
name = "yaml-rust"
|
|
|
|
version = "0.4.5"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85"
|
2020-07-17 13:13:46 +02:00
|
|
|
dependencies = [
|
2021-09-03 13:13:03 +02:00
|
|
|
"linked-hash-map",
|
2019-04-16 16:57:06 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
2021-09-03 13:13:03 +02:00
|
|
|
name = "zstd"
|
2022-02-14 05:16:29 +01:00
|
|
|
version = "0.10.0+zstd.1.5.2"
|
2019-04-16 16:57:06 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-02-14 05:16:29 +01:00
|
|
|
checksum = "3b1365becbe415f3f0fcd024e2f7b45bacfb5bdd055f0dc113571394114e7bdd"
|
2019-04-16 16:57:06 +02:00
|
|
|
dependencies = [
|
2021-09-03 13:13:03 +02:00
|
|
|
"zstd-safe",
|
2019-04-16 16:57:06 +02:00
|
|
|
]
|
2020-11-24 19:06:18 +01:00
|
|
|
|
2021-03-29 12:56:11 +02:00
|
|
|
[[package]]
|
2021-09-03 13:13:03 +02:00
|
|
|
name = "zstd-safe"
|
2022-02-14 05:16:29 +01:00
|
|
|
version = "4.1.4+zstd.1.5.2"
|
2021-03-29 12:56:11 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-02-14 05:16:29 +01:00
|
|
|
checksum = "2f7cd17c9af1a4d6c24beb1cc54b17e2ef7b593dc92f19e9d9acad8b182bbaee"
|
2021-09-03 13:13:03 +02:00
|
|
|
dependencies = [
|
|
|
|
"libc",
|
|
|
|
"zstd-sys",
|
|
|
|
]
|
2021-03-29 12:56:11 +02:00
|
|
|
|
2020-11-24 19:06:18 +01:00
|
|
|
[[package]]
|
2021-09-03 13:13:03 +02:00
|
|
|
name = "zstd-sys"
|
2022-02-14 05:16:29 +01:00
|
|
|
version = "1.6.3+zstd.1.5.2"
|
2020-11-24 19:06:18 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-02-14 05:16:29 +01:00
|
|
|
checksum = "fc49afa5c8d634e75761feda8c592051e7eeb4683ba827211eb0d731d3402ea8"
|
2020-11-24 19:06:18 +01:00
|
|
|
dependencies = [
|
2021-09-03 13:13:03 +02:00
|
|
|
"cc",
|
|
|
|
"libc",
|
2020-11-24 19:06:18 +01:00
|
|
|
]
|