2021-10-31 15:11:13 +05:30
|
|
|
# This file is automatically @generated by Cargo.
|
|
|
|
# It is not intended for manual editing.
|
|
|
|
version = 3
|
|
|
|
|
2022-02-17 20:26:45 +05:30
|
|
|
[[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",
|
2022-08-22 03:03:39 +05:30
|
|
|
"tokio-util",
|
2021-10-31 15:11:13 +05:30
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "actix-http"
|
2022-08-21 17:57:45 +05:30
|
|
|
version = "3.2.1"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-21 17:57:45 +05:30
|
|
|
checksum = "6f9ffb6db08c1c3a1f4aef540f1a63193adc73c4fbd40b75a95fc8c5258f6e51"
|
2021-10-31 15:11:13 +05:30
|
|
|
dependencies = [
|
2022-08-21 17:57:45 +05:30
|
|
|
"actix-codec",
|
2021-10-31 15:11:13 +05:30
|
|
|
"actix-rt",
|
|
|
|
"actix-service",
|
|
|
|
"actix-utils",
|
|
|
|
"ahash",
|
|
|
|
"base64",
|
|
|
|
"bitflags",
|
2022-02-17 20:26:45 +05:30
|
|
|
"brotli",
|
2021-10-31 15:11:13 +05:30
|
|
|
"bytes",
|
|
|
|
"bytestring",
|
|
|
|
"derive_more",
|
|
|
|
"encoding_rs",
|
|
|
|
"flate2",
|
|
|
|
"futures-core",
|
|
|
|
"h2",
|
|
|
|
"http",
|
|
|
|
"httparse",
|
|
|
|
"httpdate",
|
|
|
|
"itoa",
|
|
|
|
"language-tags",
|
|
|
|
"local-channel",
|
|
|
|
"mime",
|
|
|
|
"percent-encoding",
|
|
|
|
"pin-project-lite",
|
|
|
|
"rand",
|
2022-08-21 17:57:45 +05:30
|
|
|
"sha1",
|
2021-10-31 15:11:13 +05:30
|
|
|
"smallvec",
|
2022-08-21 17:57:45 +05:30
|
|
|
"tracing",
|
2021-10-31 15:11:13 +05:30
|
|
|
"zstd",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "actix-macros"
|
|
|
|
version = "0.2.3"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "465a6172cf69b960917811022d8f29bc0b7fa1398bc4f78b3c466673db1213b6"
|
|
|
|
dependencies = [
|
|
|
|
"quote",
|
|
|
|
"syn",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "actix-router"
|
2022-08-21 17:57:45 +05:30
|
|
|
version = "0.5.0"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-21 17:57:45 +05:30
|
|
|
checksum = "eb60846b52c118f2f04a56cc90880a274271c489b2498623d58176f8ca21fa80"
|
2021-10-31 15:11:13 +05:30
|
|
|
dependencies = [
|
|
|
|
"bytestring",
|
|
|
|
"firestorm",
|
|
|
|
"http",
|
|
|
|
"log",
|
|
|
|
"regex",
|
2022-08-22 03:03:39 +05:30
|
|
|
"serde 1.0.144",
|
2021-10-31 15:11:13 +05:30
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "actix-rt"
|
2022-08-22 03:03:39 +05:30
|
|
|
version = "2.7.0"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-22 03:03:39 +05:30
|
|
|
checksum = "7ea16c295198e958ef31930a6ef37d0fb64e9ca3b6116e6b93a8bdae96ee1000"
|
2021-10-31 15:11:13 +05:30
|
|
|
dependencies = [
|
|
|
|
"actix-macros",
|
|
|
|
"futures-core",
|
|
|
|
"tokio",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "actix-server"
|
2022-08-22 03:03:39 +05:30
|
|
|
version = "2.1.1"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-22 03:03:39 +05:30
|
|
|
checksum = "0da34f8e659ea1b077bb4637948b815cd3768ad5a188fdcd74ff4d84240cd824"
|
2021-10-31 15:11:13 +05:30
|
|
|
dependencies = [
|
|
|
|
"actix-rt",
|
|
|
|
"actix-service",
|
|
|
|
"actix-utils",
|
|
|
|
"futures-core",
|
2022-02-17 20:26:45 +05:30
|
|
|
"futures-util",
|
2021-10-31 15:11:13 +05:30
|
|
|
"mio",
|
|
|
|
"num_cpus",
|
2022-02-17 20:26:45 +05:30
|
|
|
"socket2",
|
2021-10-31 15:11:13 +05:30
|
|
|
"tokio",
|
2022-08-22 03:03:39 +05:30
|
|
|
"tracing",
|
2021-10-31 15:11:13 +05:30
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "actix-service"
|
2022-02-17 20:26:45 +05:30
|
|
|
version = "2.0.2"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-02-17 20:26:45 +05:30
|
|
|
checksum = "3b894941f818cfdc7ccc4b9e60fa7e53b5042a2e8567270f9147d5591893373a"
|
2021-10-31 15:11:13 +05:30
|
|
|
dependencies = [
|
|
|
|
"futures-core",
|
|
|
|
"paste",
|
|
|
|
"pin-project-lite",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "actix-utils"
|
|
|
|
version = "3.0.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "e491cbaac2e7fc788dfff99ff48ef317e23b3cf63dbaf7aaab6418f40f92aa94"
|
|
|
|
dependencies = [
|
|
|
|
"local-waker",
|
|
|
|
"pin-project-lite",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "actix-web"
|
2022-08-21 17:57:45 +05:30
|
|
|
version = "4.1.0"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-21 17:57:45 +05:30
|
|
|
checksum = "a27e8fe9ba4ae613c21f677c2cfaf0696c3744030c6f485b34634e502d6bb379"
|
2021-10-31 15:11:13 +05:30
|
|
|
dependencies = [
|
2022-08-21 17:57:45 +05:30
|
|
|
"actix-codec",
|
2021-10-31 15:11:13 +05:30
|
|
|
"actix-http",
|
|
|
|
"actix-macros",
|
|
|
|
"actix-router",
|
|
|
|
"actix-rt",
|
|
|
|
"actix-server",
|
|
|
|
"actix-service",
|
|
|
|
"actix-utils",
|
2022-08-21 17:57:45 +05:30
|
|
|
"actix-web-codegen",
|
2021-10-31 15:11:13 +05:30
|
|
|
"ahash",
|
|
|
|
"bytes",
|
2022-08-21 17:57:45 +05:30
|
|
|
"bytestring",
|
2021-10-31 15:11:13 +05:30
|
|
|
"cfg-if",
|
|
|
|
"cookie",
|
|
|
|
"derive_more",
|
|
|
|
"encoding_rs",
|
|
|
|
"futures-core",
|
|
|
|
"futures-util",
|
|
|
|
"itoa",
|
|
|
|
"language-tags",
|
|
|
|
"log",
|
|
|
|
"mime",
|
|
|
|
"once_cell",
|
2022-02-17 20:26:45 +05:30
|
|
|
"pin-project-lite",
|
2021-10-31 15:11:13 +05:30
|
|
|
"regex",
|
2022-08-22 03:03:39 +05:30
|
|
|
"serde 1.0.144",
|
2021-10-31 15:11:13 +05:30
|
|
|
"serde_json",
|
|
|
|
"serde_urlencoded",
|
|
|
|
"smallvec",
|
|
|
|
"socket2",
|
2022-08-22 03:03:39 +05:30
|
|
|
"time 0.3.13",
|
2021-10-31 15:11:13 +05:30
|
|
|
"url",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "actix-web-codegen"
|
2022-08-21 17:57:45 +05:30
|
|
|
version = "4.0.1"
|
2022-02-17 20:26:45 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-21 17:57:45 +05:30
|
|
|
checksum = "5f270541caec49c15673b0af0e9a00143421ad4f118d2df7edcb68b627632f56"
|
2021-10-31 15:11:13 +05:30
|
|
|
dependencies = [
|
|
|
|
"actix-router",
|
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
|
|
|
"syn",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
2022-08-21 17:57:45 +05:30
|
|
|
name = "actix-web-codegen-const-routes"
|
|
|
|
version = "0.1.0"
|
|
|
|
source = "git+https://github.com/realaravinth/actix-web-codegen-const-routes#1cc9b8dbaaef4b3634dabbf537f313200dd91bd9"
|
2021-10-31 15:11:13 +05:30
|
|
|
dependencies = [
|
|
|
|
"actix-router",
|
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
|
|
|
"syn",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "adler"
|
|
|
|
version = "1.0.2"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "ahash"
|
|
|
|
version = "0.7.6"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47"
|
|
|
|
dependencies = [
|
|
|
|
"getrandom",
|
|
|
|
"once_cell",
|
|
|
|
"version_check",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "aho-corasick"
|
|
|
|
version = "0.7.18"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "1e37cfd5e7657ada45f742d6e99ca5788580b5c529dc78faf11ece6dc702656f"
|
|
|
|
dependencies = [
|
|
|
|
"memchr",
|
|
|
|
]
|
|
|
|
|
2022-02-17 20:26:45 +05:30
|
|
|
[[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",
|
|
|
|
]
|
|
|
|
|
2022-08-22 03:03:39 +05:30
|
|
|
[[package]]
|
|
|
|
name = "android_system_properties"
|
|
|
|
version = "0.1.4"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "d7ed72e1635e121ca3e79420540282af22da58be50de153d36f81ddc6b83aa9e"
|
|
|
|
dependencies = [
|
|
|
|
"libc",
|
|
|
|
]
|
|
|
|
|
2021-10-31 15:11:13 +05:30
|
|
|
[[package]]
|
|
|
|
name = "arrayvec"
|
|
|
|
version = "0.5.2"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b"
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "ascii"
|
|
|
|
version = "0.9.3"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "eab1c04a571841102f5345a8fc0f6bb3d31c315dec879b5c6e42e40ce7ffa34e"
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "atty"
|
|
|
|
version = "0.2.14"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
|
|
|
|
dependencies = [
|
|
|
|
"hermit-abi",
|
|
|
|
"libc",
|
|
|
|
"winapi",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "autocfg"
|
2022-02-17 20:26:45 +05:30
|
|
|
version = "1.1.0"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-02-17 20:26:45 +05:30
|
|
|
checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
|
2021-10-31 15:11:13 +05:30
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "base64"
|
|
|
|
version = "0.13.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd"
|
|
|
|
|
2021-11-02 15:30:25 +05:30
|
|
|
[[package]]
|
|
|
|
name = "bincode"
|
|
|
|
version = "1.3.3"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
|
|
|
|
dependencies = [
|
2022-08-22 03:03:39 +05:30
|
|
|
"serde 1.0.144",
|
2021-11-02 15:30:25 +05:30
|
|
|
]
|
|
|
|
|
2021-10-31 15:11:13 +05:30
|
|
|
[[package]]
|
|
|
|
name = "bitflags"
|
|
|
|
version = "1.3.2"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "block-buffer"
|
2022-02-17 20:26:45 +05:30
|
|
|
version = "0.10.2"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-02-17 20:26:45 +05:30
|
|
|
checksum = "0bf7fe51849ea569fd452f37822f606a5cabb684dc918707a0193fd4664ff324"
|
2021-10-31 15:11:13 +05:30
|
|
|
dependencies = [
|
|
|
|
"generic-array",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
2022-02-17 20:26:45 +05:30
|
|
|
name = "brotli"
|
2022-08-22 03:03:39 +05:30
|
|
|
version = "3.3.4"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-22 03:03:39 +05:30
|
|
|
checksum = "a1a0b1dbcc8ae29329621f8d4f0d835787c1c38bb1401979b49d13b0b305ff68"
|
2021-10-31 15:11:13 +05:30
|
|
|
dependencies = [
|
2022-02-17 20:26:45 +05:30
|
|
|
"alloc-no-stdlib",
|
|
|
|
"alloc-stdlib",
|
|
|
|
"brotli-decompressor",
|
2021-10-31 15:11:13 +05:30
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
2022-02-17 20:26:45 +05:30
|
|
|
name = "brotli-decompressor"
|
|
|
|
version = "2.3.2"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-02-17 20:26:45 +05:30
|
|
|
checksum = "59ad2d4653bf5ca36ae797b1f4bb4dbddb60ce49ca4aed8a2ce4829f60425b80"
|
2021-10-31 15:11:13 +05:30
|
|
|
dependencies = [
|
2022-02-17 20:26:45 +05:30
|
|
|
"alloc-no-stdlib",
|
|
|
|
"alloc-stdlib",
|
2021-10-31 15:11:13 +05:30
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "bumpalo"
|
2022-08-22 03:03:39 +05:30
|
|
|
version = "3.11.0"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-22 03:03:39 +05:30
|
|
|
checksum = "c1ad822118d20d2c234f427000d5acc36eabe1e29a348c89b63dd60b13f28e5d"
|
2021-10-31 15:11:13 +05:30
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "byteorder"
|
|
|
|
version = "1.4.3"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "bytes"
|
2022-08-22 03:03:39 +05:30
|
|
|
version = "1.2.1"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-22 03:03:39 +05:30
|
|
|
checksum = "ec8a7b6a70fde80372154c65702f00a0f56f3e1c36abbc6c440484be248856db"
|
2021-10-31 15:11:13 +05:30
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "bytestring"
|
2022-08-22 03:03:39 +05:30
|
|
|
version = "1.1.0"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-22 03:03:39 +05:30
|
|
|
checksum = "86b6a75fd3048808ef06af5cd79712be8111960adaf89d90250974b38fc3928a"
|
2021-10-31 15:11:13 +05:30
|
|
|
dependencies = [
|
|
|
|
"bytes",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "cc"
|
2022-02-17 20:26:45 +05:30
|
|
|
version = "1.0.73"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-02-17 20:26:45 +05:30
|
|
|
checksum = "2fff2a6927b3bb87f9595d67196a70493f627687a71d87a0d692242c33f58c11"
|
2021-10-31 15:11:13 +05:30
|
|
|
dependencies = [
|
|
|
|
"jobserver",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "cfg-if"
|
|
|
|
version = "1.0.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
|
|
|
|
2021-10-31 22:26:42 +05:30
|
|
|
[[package]]
|
|
|
|
name = "chrono"
|
2022-08-22 03:03:39 +05:30
|
|
|
version = "0.4.22"
|
2021-10-31 22:26:42 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-22 03:03:39 +05:30
|
|
|
checksum = "bfd4d1b31faaa3a89d7934dbded3111da0d2ef28e3ebccdb4f0179f5929d1ef1"
|
2021-10-31 22:26:42 +05:30
|
|
|
dependencies = [
|
2022-08-22 03:03:39 +05:30
|
|
|
"iana-time-zone",
|
|
|
|
"js-sys",
|
2021-10-31 22:26:42 +05:30
|
|
|
"num-integer",
|
2022-08-22 03:03:39 +05:30
|
|
|
"num-traits 0.2.15",
|
2021-10-31 22:26:42 +05:30
|
|
|
"time 0.1.44",
|
2022-08-22 03:03:39 +05:30
|
|
|
"wasm-bindgen",
|
2021-10-31 22:26:42 +05:30
|
|
|
"winapi",
|
|
|
|
]
|
|
|
|
|
2021-10-31 15:11:13 +05:30
|
|
|
[[package]]
|
|
|
|
name = "combine"
|
|
|
|
version = "3.8.1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "da3da6baa321ec19e1cc41d31bf599f00c783d0517095cdaf0332e3fe8d20680"
|
|
|
|
dependencies = [
|
|
|
|
"ascii",
|
|
|
|
"byteorder",
|
|
|
|
"either",
|
|
|
|
"memchr",
|
|
|
|
"unreachable",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "config"
|
|
|
|
version = "0.11.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "1b1b9d958c2b1368a663f05538fc1b5975adce1e19f435acceae987aceeeb369"
|
|
|
|
dependencies = [
|
|
|
|
"lazy_static",
|
|
|
|
"nom",
|
|
|
|
"rust-ini",
|
2022-08-22 03:03:39 +05:30
|
|
|
"serde 1.0.144",
|
2021-10-31 15:11:13 +05:30
|
|
|
"serde-hjson",
|
|
|
|
"serde_json",
|
|
|
|
"toml",
|
|
|
|
"yaml-rust",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "convert_case"
|
|
|
|
version = "0.4.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e"
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "cookie"
|
2022-02-17 20:26:45 +05:30
|
|
|
version = "0.16.0"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-02-17 20:26:45 +05:30
|
|
|
checksum = "94d4706de1b0fa5b132270cddffa8585166037822e260a944fe161acd137ca05"
|
2021-10-31 15:11:13 +05:30
|
|
|
dependencies = [
|
|
|
|
"percent-encoding",
|
2022-08-22 03:03:39 +05:30
|
|
|
"time 0.3.13",
|
2021-10-31 15:11:13 +05:30
|
|
|
"version_check",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "core-foundation"
|
2022-02-17 20:26:45 +05:30
|
|
|
version = "0.9.3"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-02-17 20:26:45 +05:30
|
|
|
checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146"
|
2021-10-31 15:11:13 +05:30
|
|
|
dependencies = [
|
|
|
|
"core-foundation-sys",
|
|
|
|
"libc",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "core-foundation-sys"
|
|
|
|
version = "0.8.3"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc"
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "cpufeatures"
|
2022-08-22 03:03:39 +05:30
|
|
|
version = "0.2.3"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-22 03:03:39 +05:30
|
|
|
checksum = "1079fb8528d9f9c888b1e8aa651e6e079ade467323d58f75faf1d30b1808f540"
|
2021-10-31 15:11:13 +05:30
|
|
|
dependencies = [
|
|
|
|
"libc",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "crc32fast"
|
2022-02-17 20:26:45 +05:30
|
|
|
version = "1.3.2"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-02-17 20:26:45 +05:30
|
|
|
checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d"
|
2021-10-31 15:11:13 +05:30
|
|
|
dependencies = [
|
|
|
|
"cfg-if",
|
|
|
|
]
|
|
|
|
|
2021-11-02 15:30:25 +05:30
|
|
|
[[package]]
|
|
|
|
name = "crossbeam-epoch"
|
2022-08-22 03:03:39 +05:30
|
|
|
version = "0.9.10"
|
2021-11-02 15:30:25 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-22 03:03:39 +05:30
|
|
|
checksum = "045ebe27666471bb549370b4b0b3e51b07f56325befa4284db65fc89c02511b1"
|
2021-11-02 15:30:25 +05:30
|
|
|
dependencies = [
|
2022-08-22 03:03:39 +05:30
|
|
|
"autocfg",
|
2021-11-02 15:30:25 +05:30
|
|
|
"cfg-if",
|
|
|
|
"crossbeam-utils",
|
|
|
|
"memoffset",
|
2022-08-22 03:03:39 +05:30
|
|
|
"once_cell",
|
2021-11-02 15:30:25 +05:30
|
|
|
"scopeguard",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "crossbeam-utils"
|
2022-08-22 03:03:39 +05:30
|
|
|
version = "0.8.11"
|
2021-11-02 15:30:25 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-22 03:03:39 +05:30
|
|
|
checksum = "51887d4adc7b564537b15adcfb307936f8075dfcd5f00dde9a9f1d29383682bc"
|
2021-11-02 15:30:25 +05:30
|
|
|
dependencies = [
|
|
|
|
"cfg-if",
|
2022-08-22 03:03:39 +05:30
|
|
|
"once_cell",
|
2021-11-02 15:30:25 +05:30
|
|
|
]
|
|
|
|
|
2022-02-17 20:26:45 +05:30
|
|
|
[[package]]
|
|
|
|
name = "crypto-common"
|
2022-08-22 03:03:39 +05:30
|
|
|
version = "0.1.6"
|
2022-02-17 20:26:45 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-22 03:03:39 +05:30
|
|
|
checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
|
2022-02-17 20:26:45 +05:30
|
|
|
dependencies = [
|
|
|
|
"generic-array",
|
|
|
|
"typenum",
|
|
|
|
]
|
|
|
|
|
2021-10-31 15:11:13 +05:30
|
|
|
[[package]]
|
|
|
|
name = "derive_more"
|
2022-02-17 20:26:45 +05:30
|
|
|
version = "0.99.17"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-02-17 20:26:45 +05:30
|
|
|
checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321"
|
2021-10-31 15:11:13 +05:30
|
|
|
dependencies = [
|
|
|
|
"convert_case",
|
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
2022-02-17 20:26:45 +05:30
|
|
|
"rustc_version",
|
2021-10-31 15:11:13 +05:30
|
|
|
"syn",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "digest"
|
2022-02-17 20:26:45 +05:30
|
|
|
version = "0.10.3"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-02-17 20:26:45 +05:30
|
|
|
checksum = "f2fb860ca6fafa5552fb6d0e816a69c8e49f0908bf524e30a90d97c85892d506"
|
2021-10-31 15:11:13 +05:30
|
|
|
dependencies = [
|
2022-02-17 20:26:45 +05:30
|
|
|
"block-buffer",
|
|
|
|
"crypto-common",
|
2021-10-31 15:11:13 +05:30
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "either"
|
2022-08-22 03:03:39 +05:30
|
|
|
version = "1.8.0"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-22 03:03:39 +05:30
|
|
|
checksum = "90e5c1c8368803113bf0c9584fc495a58b86dc8a29edbf8fe877d21d9507e797"
|
2021-10-31 15:11:13 +05:30
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "encoding_rs"
|
2022-08-22 03:03:39 +05:30
|
|
|
version = "0.8.31"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-22 03:03:39 +05:30
|
|
|
checksum = "9852635589dc9f9ea1b6fe9f05b50ef208c85c834a562f0c6abb1c475736ec2b"
|
2021-10-31 15:11:13 +05:30
|
|
|
dependencies = [
|
|
|
|
"cfg-if",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "env_logger"
|
|
|
|
version = "0.7.1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "44533bbbb3bb3c1fa17d9f2e4e38bbbaf8396ba82193c4cb1b6445d711445d36"
|
|
|
|
dependencies = [
|
|
|
|
"atty",
|
|
|
|
"humantime",
|
|
|
|
"log",
|
|
|
|
"regex",
|
|
|
|
"termcolor",
|
|
|
|
]
|
|
|
|
|
2022-02-17 20:26:45 +05:30
|
|
|
[[package]]
|
|
|
|
name = "fastrand"
|
2022-08-22 03:03:39 +05:30
|
|
|
version = "1.8.0"
|
2022-02-17 20:26:45 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-22 03:03:39 +05:30
|
|
|
checksum = "a7a407cfaa3385c4ae6b23e84623d48c2798d06e3e6a1878f7f59f17b3f86499"
|
2022-02-17 20:26:45 +05:30
|
|
|
dependencies = [
|
|
|
|
"instant",
|
|
|
|
]
|
|
|
|
|
2021-10-31 22:26:42 +05:30
|
|
|
[[package]]
|
|
|
|
name = "filetime"
|
2022-08-22 03:03:39 +05:30
|
|
|
version = "0.2.17"
|
2021-10-31 22:26:42 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-22 03:03:39 +05:30
|
|
|
checksum = "e94a7bbaa59354bc20dd75b67f23e2797b4490e9d6928203fb105c79e448c86c"
|
2021-10-31 22:26:42 +05:30
|
|
|
dependencies = [
|
|
|
|
"cfg-if",
|
|
|
|
"libc",
|
|
|
|
"redox_syscall",
|
2022-08-22 03:03:39 +05:30
|
|
|
"windows-sys",
|
2021-10-31 22:26:42 +05:30
|
|
|
]
|
|
|
|
|
2021-10-31 15:11:13 +05:30
|
|
|
[[package]]
|
|
|
|
name = "firestorm"
|
2022-08-22 03:03:39 +05:30
|
|
|
version = "0.5.1"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-22 03:03:39 +05:30
|
|
|
checksum = "2c5f6c2c942da57e2aaaa84b8a521489486f14e75e7fa91dab70aba913975f98"
|
2021-10-31 15:11:13 +05:30
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "flate2"
|
2022-08-22 03:03:39 +05:30
|
|
|
version = "1.0.24"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-22 03:03:39 +05:30
|
|
|
checksum = "f82b0f4c27ad9f8bfd1f3208d882da2b09c301bc1c828fd3a00d0216d2fbbff6"
|
2021-10-31 15:11:13 +05:30
|
|
|
dependencies = [
|
|
|
|
"crc32fast",
|
|
|
|
"miniz_oxide",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "fnv"
|
|
|
|
version = "1.0.7"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "foreign-types"
|
|
|
|
version = "0.3.2"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
|
|
|
|
dependencies = [
|
|
|
|
"foreign-types-shared",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "foreign-types-shared"
|
|
|
|
version = "0.1.1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "form_urlencoded"
|
|
|
|
version = "1.0.1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "5fc25a87fa4fd2094bffb06925852034d90a17f0d1e05197d4956d3555752191"
|
|
|
|
dependencies = [
|
|
|
|
"matches",
|
|
|
|
"percent-encoding",
|
|
|
|
]
|
|
|
|
|
2021-11-02 15:30:25 +05:30
|
|
|
[[package]]
|
|
|
|
name = "fs2"
|
|
|
|
version = "0.4.3"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "9564fc758e15025b46aa6643b1b77d047d1a56a1aea6e01002ac0c7026876213"
|
|
|
|
dependencies = [
|
|
|
|
"libc",
|
|
|
|
"winapi",
|
|
|
|
]
|
|
|
|
|
2021-11-04 23:51:59 +05:30
|
|
|
[[package]]
|
|
|
|
name = "futures"
|
2022-08-22 03:03:39 +05:30
|
|
|
version = "0.3.23"
|
2021-11-04 23:51:59 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-22 03:03:39 +05:30
|
|
|
checksum = "ab30e97ab6aacfe635fad58f22c2bb06c8b685f7421eb1e064a729e2a5f481fa"
|
2021-11-04 23:51:59 +05:30
|
|
|
dependencies = [
|
|
|
|
"futures-channel",
|
|
|
|
"futures-core",
|
|
|
|
"futures-executor",
|
|
|
|
"futures-io",
|
|
|
|
"futures-sink",
|
|
|
|
"futures-task",
|
|
|
|
"futures-util",
|
|
|
|
]
|
|
|
|
|
2021-10-31 15:11:13 +05:30
|
|
|
[[package]]
|
|
|
|
name = "futures-channel"
|
2022-08-22 03:03:39 +05:30
|
|
|
version = "0.3.23"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-22 03:03:39 +05:30
|
|
|
checksum = "2bfc52cbddcfd745bf1740338492bb0bd83d76c67b445f91c5fb29fae29ecaa1"
|
2021-10-31 15:11:13 +05:30
|
|
|
dependencies = [
|
|
|
|
"futures-core",
|
2021-11-04 23:51:59 +05:30
|
|
|
"futures-sink",
|
2021-10-31 15:11:13 +05:30
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "futures-core"
|
2022-08-22 03:03:39 +05:30
|
|
|
version = "0.3.23"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-22 03:03:39 +05:30
|
|
|
checksum = "d2acedae88d38235936c3922476b10fced7b2b68136f5e3c03c2d5be348a1115"
|
2021-10-31 15:11:13 +05:30
|
|
|
|
2021-11-04 23:51:59 +05:30
|
|
|
[[package]]
|
|
|
|
name = "futures-executor"
|
2022-08-22 03:03:39 +05:30
|
|
|
version = "0.3.23"
|
2021-11-04 23:51:59 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-22 03:03:39 +05:30
|
|
|
checksum = "1d11aa21b5b587a64682c0094c2bdd4df0076c5324961a40cc3abd7f37930528"
|
2021-11-04 23:51:59 +05:30
|
|
|
dependencies = [
|
|
|
|
"futures-core",
|
|
|
|
"futures-task",
|
|
|
|
"futures-util",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "futures-io"
|
2022-08-22 03:03:39 +05:30
|
|
|
version = "0.3.23"
|
2021-11-04 23:51:59 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-22 03:03:39 +05:30
|
|
|
checksum = "93a66fc6d035a26a3ae255a6d2bca35eda63ae4c5512bef54449113f7a1228e5"
|
2021-11-04 23:51:59 +05:30
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "futures-macro"
|
2022-08-22 03:03:39 +05:30
|
|
|
version = "0.3.23"
|
2021-11-04 23:51:59 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-22 03:03:39 +05:30
|
|
|
checksum = "0db9cce532b0eae2ccf2766ab246f114b56b9cf6d445e00c2549fbc100ca045d"
|
2021-11-04 23:51:59 +05:30
|
|
|
dependencies = [
|
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
|
|
|
"syn",
|
|
|
|
]
|
|
|
|
|
2021-10-31 15:11:13 +05:30
|
|
|
[[package]]
|
|
|
|
name = "futures-sink"
|
2022-08-22 03:03:39 +05:30
|
|
|
version = "0.3.23"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-22 03:03:39 +05:30
|
|
|
checksum = "ca0bae1fe9752cf7fd9b0064c674ae63f97b37bc714d745cbde0afb7ec4e6765"
|
2021-10-31 15:11:13 +05:30
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "futures-task"
|
2022-08-22 03:03:39 +05:30
|
|
|
version = "0.3.23"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-22 03:03:39 +05:30
|
|
|
checksum = "842fc63b931f4056a24d59de13fb1272134ce261816e063e634ad0c15cdc5306"
|
2021-10-31 15:11:13 +05:30
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "futures-util"
|
2022-08-22 03:03:39 +05:30
|
|
|
version = "0.3.23"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-22 03:03:39 +05:30
|
|
|
checksum = "f0828a5471e340229c11c77ca80017937ce3c58cb788a17e5f1c2d5c485a9577"
|
2021-10-31 15:11:13 +05:30
|
|
|
dependencies = [
|
2021-11-04 23:51:59 +05:30
|
|
|
"futures-channel",
|
2021-10-31 15:11:13 +05:30
|
|
|
"futures-core",
|
2021-11-04 23:51:59 +05:30
|
|
|
"futures-io",
|
|
|
|
"futures-macro",
|
2021-10-31 15:11:13 +05:30
|
|
|
"futures-sink",
|
|
|
|
"futures-task",
|
2021-11-04 23:51:59 +05:30
|
|
|
"memchr",
|
2021-10-31 15:11:13 +05:30
|
|
|
"pin-project-lite",
|
|
|
|
"pin-utils",
|
2021-11-04 23:51:59 +05:30
|
|
|
"slab",
|
2021-10-31 15:11:13 +05:30
|
|
|
]
|
|
|
|
|
2021-11-02 15:30:25 +05:30
|
|
|
[[package]]
|
|
|
|
name = "fxhash"
|
|
|
|
version = "0.2.1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c"
|
|
|
|
dependencies = [
|
|
|
|
"byteorder",
|
|
|
|
]
|
|
|
|
|
2021-10-31 15:11:13 +05:30
|
|
|
[[package]]
|
|
|
|
name = "generic-array"
|
2022-08-22 03:03:39 +05:30
|
|
|
version = "0.14.6"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-22 03:03:39 +05:30
|
|
|
checksum = "bff49e947297f3312447abdca79f45f4738097cc82b06e72054d2223f601f1b9"
|
2021-10-31 15:11:13 +05:30
|
|
|
dependencies = [
|
|
|
|
"typenum",
|
|
|
|
"version_check",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "getrandom"
|
2022-08-22 03:03:39 +05:30
|
|
|
version = "0.2.7"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-22 03:03:39 +05:30
|
|
|
checksum = "4eb1a864a501629691edf6c15a593b7a51eebaa1e8468e9ddc623de7c9b58ec6"
|
2021-10-31 15:11:13 +05:30
|
|
|
dependencies = [
|
|
|
|
"cfg-if",
|
|
|
|
"libc",
|
2022-08-22 03:03:39 +05:30
|
|
|
"wasi 0.11.0+wasi-snapshot-preview1",
|
2021-10-31 15:11:13 +05:30
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "graphql-introspection-query"
|
|
|
|
version = "0.2.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "7f2a4732cf5140bd6c082434494f785a19cfb566ab07d1382c3671f5812fed6d"
|
|
|
|
dependencies = [
|
2022-08-22 03:03:39 +05:30
|
|
|
"serde 1.0.144",
|
2021-10-31 15:11:13 +05:30
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "graphql-parser"
|
2022-08-22 03:03:39 +05:30
|
|
|
version = "0.4.0"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-22 03:03:39 +05:30
|
|
|
checksum = "d2ebc8013b4426d5b81a4364c419a95ed0b404af2b82e2457de52d9348f0e474"
|
2021-10-31 15:11:13 +05:30
|
|
|
dependencies = [
|
|
|
|
"combine",
|
2022-08-22 03:03:39 +05:30
|
|
|
"thiserror",
|
2021-10-31 15:11:13 +05:30
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "graphql_client"
|
2022-08-22 03:03:39 +05:30
|
|
|
version = "0.11.0"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-22 03:03:39 +05:30
|
|
|
checksum = "7fc16d75d169fddb720d8f1c7aed6413e329e1584079b9734ff07266a193f5bc"
|
2021-10-31 15:11:13 +05:30
|
|
|
dependencies = [
|
|
|
|
"graphql_query_derive",
|
|
|
|
"reqwest",
|
2022-08-22 03:03:39 +05:30
|
|
|
"serde 1.0.144",
|
2021-10-31 15:11:13 +05:30
|
|
|
"serde_json",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "graphql_client_codegen"
|
2022-08-22 03:03:39 +05:30
|
|
|
version = "0.11.0"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-22 03:03:39 +05:30
|
|
|
checksum = "f290ecfa3bea3e8a157899dc8a1d96ee7dd6405c18c8ddd213fc58939d18a0e9"
|
2021-10-31 15:11:13 +05:30
|
|
|
dependencies = [
|
|
|
|
"graphql-introspection-query",
|
|
|
|
"graphql-parser",
|
|
|
|
"heck",
|
|
|
|
"lazy_static",
|
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
2022-08-22 03:03:39 +05:30
|
|
|
"serde 1.0.144",
|
2021-10-31 15:11:13 +05:30
|
|
|
"serde_json",
|
|
|
|
"syn",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "graphql_query_derive"
|
2022-08-22 03:03:39 +05:30
|
|
|
version = "0.11.0"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-22 03:03:39 +05:30
|
|
|
checksum = "a755cc59cda2641ea3037b4f9f7ef40471c329f55c1fa2db6fa0bb7ae6c1f7ce"
|
2021-10-31 15:11:13 +05:30
|
|
|
dependencies = [
|
|
|
|
"graphql_client_codegen",
|
|
|
|
"proc-macro2",
|
|
|
|
"syn",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "h2"
|
2022-08-22 03:03:39 +05:30
|
|
|
version = "0.3.14"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-22 03:03:39 +05:30
|
|
|
checksum = "5ca32592cf21ac7ccab1825cd87f6c9b3d9022c44d086172ed0966bec8af30be"
|
2021-10-31 15:11:13 +05:30
|
|
|
dependencies = [
|
|
|
|
"bytes",
|
|
|
|
"fnv",
|
|
|
|
"futures-core",
|
|
|
|
"futures-sink",
|
|
|
|
"futures-util",
|
|
|
|
"http",
|
|
|
|
"indexmap",
|
|
|
|
"slab",
|
|
|
|
"tokio",
|
2022-08-22 03:03:39 +05:30
|
|
|
"tokio-util",
|
2021-10-31 15:11:13 +05:30
|
|
|
"tracing",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "hashbrown"
|
2022-08-22 03:03:39 +05:30
|
|
|
version = "0.12.3"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-22 03:03:39 +05:30
|
|
|
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
|
2021-10-31 15:11:13 +05:30
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "heck"
|
2022-08-22 03:03:39 +05:30
|
|
|
version = "0.4.0"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-22 03:03:39 +05:30
|
|
|
checksum = "2540771e65fc8cb83cd6e8a237f70c319bd5c29f78ed1084ba5d50eeac86f7f9"
|
2021-10-31 15:11:13 +05:30
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "hermit-abi"
|
|
|
|
version = "0.1.19"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
|
|
|
|
dependencies = [
|
|
|
|
"libc",
|
|
|
|
]
|
|
|
|
|
2021-10-31 22:26:42 +05:30
|
|
|
[[package]]
|
|
|
|
name = "home"
|
|
|
|
version = "0.5.3"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "2456aef2e6b6a9784192ae780c0f15bc57df0e918585282325e8c8ac27737654"
|
|
|
|
dependencies = [
|
|
|
|
"winapi",
|
|
|
|
]
|
|
|
|
|
2021-10-31 15:11:13 +05:30
|
|
|
[[package]]
|
|
|
|
name = "http"
|
2022-08-22 03:03:39 +05:30
|
|
|
version = "0.2.8"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-22 03:03:39 +05:30
|
|
|
checksum = "75f43d41e26995c17e71ee126451dd3941010b0514a81a9d11f3b341debc2399"
|
2021-10-31 15:11:13 +05:30
|
|
|
dependencies = [
|
|
|
|
"bytes",
|
|
|
|
"fnv",
|
|
|
|
"itoa",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "http-body"
|
2022-08-22 03:03:39 +05:30
|
|
|
version = "0.4.5"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-22 03:03:39 +05:30
|
|
|
checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1"
|
2021-10-31 15:11:13 +05:30
|
|
|
dependencies = [
|
|
|
|
"bytes",
|
|
|
|
"http",
|
|
|
|
"pin-project-lite",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "httparse"
|
2022-08-22 03:03:39 +05:30
|
|
|
version = "1.7.1"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-22 03:03:39 +05:30
|
|
|
checksum = "496ce29bb5a52785b44e0f7ca2847ae0bb839c9bd28f69acac9b99d461c0c04c"
|
2021-10-31 15:11:13 +05:30
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "httpdate"
|
2022-02-17 20:26:45 +05:30
|
|
|
version = "1.0.2"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-02-17 20:26:45 +05:30
|
|
|
checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421"
|
2021-10-31 15:11:13 +05:30
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "humantime"
|
|
|
|
version = "1.3.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "df004cfca50ef23c36850aaaa59ad52cc70d0e90243c3c7737a4dd32dc7a3c4f"
|
|
|
|
dependencies = [
|
|
|
|
"quick-error",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "hyper"
|
2022-08-22 03:03:39 +05:30
|
|
|
version = "0.14.20"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-22 03:03:39 +05:30
|
|
|
checksum = "02c929dc5c39e335a03c405292728118860721b10190d98c2a0f0efd5baafbac"
|
2021-10-31 15:11:13 +05:30
|
|
|
dependencies = [
|
|
|
|
"bytes",
|
|
|
|
"futures-channel",
|
|
|
|
"futures-core",
|
|
|
|
"futures-util",
|
|
|
|
"h2",
|
|
|
|
"http",
|
|
|
|
"http-body",
|
|
|
|
"httparse",
|
|
|
|
"httpdate",
|
|
|
|
"itoa",
|
|
|
|
"pin-project-lite",
|
|
|
|
"socket2",
|
|
|
|
"tokio",
|
|
|
|
"tower-service",
|
|
|
|
"tracing",
|
|
|
|
"want",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "hyper-tls"
|
|
|
|
version = "0.5.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905"
|
|
|
|
dependencies = [
|
|
|
|
"bytes",
|
|
|
|
"hyper",
|
|
|
|
"native-tls",
|
|
|
|
"tokio",
|
|
|
|
"tokio-native-tls",
|
|
|
|
]
|
|
|
|
|
2022-08-22 03:03:39 +05:30
|
|
|
[[package]]
|
|
|
|
name = "iana-time-zone"
|
|
|
|
version = "0.1.46"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "ad2bfd338099682614d3ee3fe0cd72e0b6a41ca6a87f6a74a3bd593c91650501"
|
|
|
|
dependencies = [
|
|
|
|
"android_system_properties",
|
|
|
|
"core-foundation-sys",
|
|
|
|
"js-sys",
|
|
|
|
"wasm-bindgen",
|
|
|
|
"winapi",
|
|
|
|
]
|
|
|
|
|
2021-10-31 15:11:13 +05:30
|
|
|
[[package]]
|
|
|
|
name = "idna"
|
|
|
|
version = "0.2.3"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "418a0a6fab821475f634efe3ccc45c013f742efe03d853e8d3355d5cb850ecf8"
|
|
|
|
dependencies = [
|
|
|
|
"matches",
|
|
|
|
"unicode-bidi",
|
|
|
|
"unicode-normalization",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "indexmap"
|
2022-08-22 03:03:39 +05:30
|
|
|
version = "1.9.1"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-22 03:03:39 +05:30
|
|
|
checksum = "10a35a97730320ffe8e2d410b5d3b69279b98d2c14bdb8b70ea89ecf7888d41e"
|
2021-10-31 15:11:13 +05:30
|
|
|
dependencies = [
|
|
|
|
"autocfg",
|
|
|
|
"hashbrown",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "instant"
|
|
|
|
version = "0.1.12"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
|
|
|
|
dependencies = [
|
|
|
|
"cfg-if",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "ipnet"
|
2022-08-22 03:03:39 +05:30
|
|
|
version = "2.5.0"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-22 03:03:39 +05:30
|
|
|
checksum = "879d54834c8c76457ef4293a689b2a8c59b076067ad77b15efafbb05f92a592b"
|
2021-10-31 15:11:13 +05:30
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "itoa"
|
2022-08-22 03:03:39 +05:30
|
|
|
version = "1.0.3"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-22 03:03:39 +05:30
|
|
|
checksum = "6c8af84674fe1f223a982c933a0ee1086ac4d4052aa0fb8060c12c6ad838e754"
|
2021-10-31 15:11:13 +05:30
|
|
|
|
2021-10-31 22:26:42 +05:30
|
|
|
[[package]]
|
|
|
|
name = "itoap"
|
|
|
|
version = "1.0.1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "9028f49264629065d057f340a86acb84867925865f73bbf8d47b4d149a7e88b8"
|
|
|
|
|
2021-10-31 15:11:13 +05:30
|
|
|
[[package]]
|
|
|
|
name = "jobserver"
|
|
|
|
version = "0.1.24"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "af25a77299a7f711a01975c35a6a424eb6862092cc2d6c72c4ed6cbc56dfc1fa"
|
|
|
|
dependencies = [
|
|
|
|
"libc",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "js-sys"
|
2022-08-22 03:03:39 +05:30
|
|
|
version = "0.3.59"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-22 03:03:39 +05:30
|
|
|
checksum = "258451ab10b34f8af53416d1fdab72c22e805f0c92a1136d59470ec0b11138b2"
|
2021-10-31 15:11:13 +05:30
|
|
|
dependencies = [
|
|
|
|
"wasm-bindgen",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "language-tags"
|
|
|
|
version = "0.3.2"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "d4345964bb142484797b161f473a503a434de77149dd8c7427788c6e13379388"
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "lazy_static"
|
|
|
|
version = "1.4.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
|
|
|
|
|
2022-03-18 20:45:01 +05:30
|
|
|
[[package]]
|
|
|
|
name = "lazycell"
|
|
|
|
version = "1.3.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
|
|
|
|
|
2021-10-31 15:11:13 +05:30
|
|
|
[[package]]
|
|
|
|
name = "lexical-core"
|
|
|
|
version = "0.7.6"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "6607c62aa161d23d17a9072cc5da0be67cdfc89d3afb1e8d9c842bebc2525ffe"
|
|
|
|
dependencies = [
|
|
|
|
"arrayvec",
|
|
|
|
"bitflags",
|
|
|
|
"cfg-if",
|
|
|
|
"ryu",
|
|
|
|
"static_assertions",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "libc"
|
2022-08-22 03:03:39 +05:30
|
|
|
version = "0.2.132"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-22 03:03:39 +05:30
|
|
|
checksum = "8371e4e5341c3a96db127eb2465ac681ced4c433e01dd0e938adbef26ba93ba5"
|
2021-10-31 15:11:13 +05:30
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "libmedium"
|
|
|
|
version = "0.1.0"
|
|
|
|
dependencies = [
|
|
|
|
"actix-http",
|
|
|
|
"actix-rt",
|
|
|
|
"actix-web",
|
2022-08-21 17:57:45 +05:30
|
|
|
"actix-web-codegen-const-routes",
|
2021-11-02 15:30:25 +05:30
|
|
|
"bincode",
|
2021-10-31 22:26:42 +05:30
|
|
|
"chrono",
|
2021-10-31 15:11:13 +05:30
|
|
|
"config",
|
|
|
|
"derive_more",
|
2021-11-04 23:51:59 +05:30
|
|
|
"futures",
|
2021-10-31 15:11:13 +05:30
|
|
|
"graphql_client",
|
|
|
|
"lazy_static",
|
|
|
|
"log",
|
|
|
|
"num_cpus",
|
|
|
|
"pretty_env_logger",
|
|
|
|
"reqwest",
|
2021-10-31 22:26:42 +05:30
|
|
|
"sailfish",
|
2022-08-22 03:03:39 +05:30
|
|
|
"serde 1.0.144",
|
2021-10-31 15:11:13 +05:30
|
|
|
"serde_json",
|
2021-11-02 15:30:25 +05:30
|
|
|
"sled",
|
2022-03-18 20:45:01 +05:30
|
|
|
"syntect",
|
2021-10-31 15:11:13 +05:30
|
|
|
"url",
|
|
|
|
]
|
|
|
|
|
2022-03-18 20:45:01 +05:30
|
|
|
[[package]]
|
|
|
|
name = "line-wrap"
|
|
|
|
version = "0.1.1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "f30344350a2a51da54c1d53be93fade8a237e545dbcc4bdbe635413f2117cab9"
|
|
|
|
dependencies = [
|
|
|
|
"safemem",
|
|
|
|
]
|
|
|
|
|
2021-10-31 15:11:13 +05:30
|
|
|
[[package]]
|
|
|
|
name = "linked-hash-map"
|
2022-08-22 03:03:39 +05:30
|
|
|
version = "0.5.6"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-22 03:03:39 +05:30
|
|
|
checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f"
|
2021-10-31 15:11:13 +05:30
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "local-channel"
|
2022-08-22 03:03:39 +05:30
|
|
|
version = "0.1.3"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-22 03:03:39 +05:30
|
|
|
checksum = "7f303ec0e94c6c54447f84f3b0ef7af769858a9c4ef56ef2a986d3dcd4c3fc9c"
|
2021-10-31 15:11:13 +05:30
|
|
|
dependencies = [
|
|
|
|
"futures-core",
|
|
|
|
"futures-sink",
|
|
|
|
"futures-util",
|
|
|
|
"local-waker",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "local-waker"
|
2022-08-22 03:03:39 +05:30
|
|
|
version = "0.1.3"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-22 03:03:39 +05:30
|
|
|
checksum = "e34f76eb3611940e0e7d53a9aaa4e6a3151f69541a282fd0dad5571420c53ff1"
|
2021-10-31 15:11:13 +05:30
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "lock_api"
|
2022-08-22 03:03:39 +05:30
|
|
|
version = "0.4.7"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-22 03:03:39 +05:30
|
|
|
checksum = "327fa5b6a6940e4699ec49a9beae1ea4845c6bab9314e4f84ac68742139d8c53"
|
2021-10-31 15:11:13 +05:30
|
|
|
dependencies = [
|
2022-08-22 03:03:39 +05:30
|
|
|
"autocfg",
|
2021-10-31 15:11:13 +05:30
|
|
|
"scopeguard",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "log"
|
2022-08-22 03:03:39 +05:30
|
|
|
version = "0.4.17"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-22 03:03:39 +05:30
|
|
|
checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
|
2021-10-31 15:11:13 +05:30
|
|
|
dependencies = [
|
|
|
|
"cfg-if",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "matches"
|
|
|
|
version = "0.1.9"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f"
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "memchr"
|
2022-08-22 03:03:39 +05:30
|
|
|
version = "2.5.0"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-22 03:03:39 +05:30
|
|
|
checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
|
2021-10-31 15:11:13 +05:30
|
|
|
|
2021-11-02 15:30:25 +05:30
|
|
|
[[package]]
|
|
|
|
name = "memoffset"
|
2022-02-17 20:26:45 +05:30
|
|
|
version = "0.6.5"
|
2021-11-02 15:30:25 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-02-17 20:26:45 +05:30
|
|
|
checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce"
|
2021-11-02 15:30:25 +05:30
|
|
|
dependencies = [
|
|
|
|
"autocfg",
|
|
|
|
]
|
|
|
|
|
2021-10-31 15:11:13 +05:30
|
|
|
[[package]]
|
|
|
|
name = "mime"
|
|
|
|
version = "0.3.16"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "2a60c7ce501c71e03a9c9c0d35b861413ae925bd979cc7a4e30d060069aaac8d"
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "miniz_oxide"
|
2022-08-22 03:03:39 +05:30
|
|
|
version = "0.5.3"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-22 03:03:39 +05:30
|
|
|
checksum = "6f5c75688da582b8ffc1f1799e9db273f32133c49e048f614d22ec3256773ccc"
|
2021-10-31 15:11:13 +05:30
|
|
|
dependencies = [
|
|
|
|
"adler",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "mio"
|
2022-08-22 03:03:39 +05:30
|
|
|
version = "0.8.4"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-22 03:03:39 +05:30
|
|
|
checksum = "57ee1c23c7c63b0c9250c339ffdc69255f110b298b901b9f6c82547b7b87caaf"
|
2021-10-31 15:11:13 +05:30
|
|
|
dependencies = [
|
|
|
|
"libc",
|
|
|
|
"log",
|
2022-08-22 03:03:39 +05:30
|
|
|
"wasi 0.11.0+wasi-snapshot-preview1",
|
|
|
|
"windows-sys",
|
2021-10-31 15:11:13 +05:30
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "native-tls"
|
2022-08-22 03:03:39 +05:30
|
|
|
version = "0.2.10"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-22 03:03:39 +05:30
|
|
|
checksum = "fd7e2f3618557f980e0b17e8856252eee3c97fa12c54dff0ca290fb6266ca4a9"
|
2021-10-31 15:11:13 +05:30
|
|
|
dependencies = [
|
|
|
|
"lazy_static",
|
|
|
|
"libc",
|
|
|
|
"log",
|
|
|
|
"openssl",
|
|
|
|
"openssl-probe",
|
|
|
|
"openssl-sys",
|
|
|
|
"schannel",
|
|
|
|
"security-framework",
|
|
|
|
"security-framework-sys",
|
|
|
|
"tempfile",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "nom"
|
|
|
|
version = "5.1.2"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "ffb4262d26ed83a1c0a33a38fe2bb15797329c85770da05e6b828ddb782627af"
|
|
|
|
dependencies = [
|
|
|
|
"lexical-core",
|
|
|
|
"memchr",
|
|
|
|
"version_check",
|
|
|
|
]
|
|
|
|
|
2021-10-31 22:26:42 +05:30
|
|
|
[[package]]
|
|
|
|
name = "num-integer"
|
2022-08-22 03:03:39 +05:30
|
|
|
version = "0.1.45"
|
2021-10-31 22:26:42 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-22 03:03:39 +05:30
|
|
|
checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9"
|
2021-10-31 22:26:42 +05:30
|
|
|
dependencies = [
|
|
|
|
"autocfg",
|
2022-08-22 03:03:39 +05:30
|
|
|
"num-traits 0.2.15",
|
2021-10-31 22:26:42 +05:30
|
|
|
]
|
|
|
|
|
2021-10-31 15:11:13 +05:30
|
|
|
[[package]]
|
|
|
|
name = "num-traits"
|
|
|
|
version = "0.1.43"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "92e5113e9fd4cc14ded8e499429f396a20f98c772a47cc8622a736e1ec843c31"
|
|
|
|
dependencies = [
|
2022-08-22 03:03:39 +05:30
|
|
|
"num-traits 0.2.15",
|
2021-10-31 15:11:13 +05:30
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "num-traits"
|
2022-08-22 03:03:39 +05:30
|
|
|
version = "0.2.15"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-22 03:03:39 +05:30
|
|
|
checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd"
|
2021-10-31 15:11:13 +05:30
|
|
|
dependencies = [
|
|
|
|
"autocfg",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "num_cpus"
|
2022-02-17 20:26:45 +05:30
|
|
|
version = "1.13.1"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-02-17 20:26:45 +05:30
|
|
|
checksum = "19e64526ebdee182341572e50e9ad03965aa510cd94427a4549448f285e957a1"
|
2021-10-31 15:11:13 +05:30
|
|
|
dependencies = [
|
|
|
|
"hermit-abi",
|
|
|
|
"libc",
|
|
|
|
]
|
|
|
|
|
2022-02-17 20:26:45 +05:30
|
|
|
[[package]]
|
|
|
|
name = "num_threads"
|
2022-08-22 03:03:39 +05:30
|
|
|
version = "0.1.6"
|
2022-02-17 20:26:45 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-22 03:03:39 +05:30
|
|
|
checksum = "2819ce041d2ee131036f4fc9d6ae7ae125a3a40e97ba64d04fe799ad9dabbb44"
|
2022-02-17 20:26:45 +05:30
|
|
|
dependencies = [
|
|
|
|
"libc",
|
|
|
|
]
|
|
|
|
|
2021-10-31 15:11:13 +05:30
|
|
|
[[package]]
|
|
|
|
name = "once_cell"
|
2022-08-22 03:03:39 +05:30
|
|
|
version = "1.13.1"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-22 03:03:39 +05:30
|
|
|
checksum = "074864da206b4973b84eb91683020dbefd6a8c3f0f38e054d93954e891935e4e"
|
2021-10-31 15:11:13 +05:30
|
|
|
|
2022-03-18 20:45:01 +05:30
|
|
|
[[package]]
|
|
|
|
name = "onig"
|
2022-08-22 03:03:39 +05:30
|
|
|
version = "6.4.0"
|
2022-03-18 20:45:01 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-22 03:03:39 +05:30
|
|
|
checksum = "8c4b31c8722ad9171c6d77d3557db078cab2bd50afcc9d09c8b315c59df8ca4f"
|
2022-03-18 20:45:01 +05:30
|
|
|
dependencies = [
|
|
|
|
"bitflags",
|
|
|
|
"libc",
|
2022-08-22 03:03:39 +05:30
|
|
|
"once_cell",
|
2022-03-18 20:45:01 +05:30
|
|
|
"onig_sys",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "onig_sys"
|
2022-08-22 03:03:39 +05:30
|
|
|
version = "69.8.1"
|
2022-03-18 20:45:01 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-22 03:03:39 +05:30
|
|
|
checksum = "7b829e3d7e9cc74c7e315ee8edb185bf4190da5acde74afd7fc59c35b1f086e7"
|
2022-03-18 20:45:01 +05:30
|
|
|
dependencies = [
|
|
|
|
"cc",
|
|
|
|
"pkg-config",
|
|
|
|
]
|
|
|
|
|
2021-10-31 15:11:13 +05:30
|
|
|
[[package]]
|
|
|
|
name = "openssl"
|
2022-08-22 03:03:39 +05:30
|
|
|
version = "0.10.41"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-22 03:03:39 +05:30
|
|
|
checksum = "618febf65336490dfcf20b73f885f5651a0c89c64c2d4a8c3662585a70bf5bd0"
|
2021-10-31 15:11:13 +05:30
|
|
|
dependencies = [
|
|
|
|
"bitflags",
|
|
|
|
"cfg-if",
|
|
|
|
"foreign-types",
|
|
|
|
"libc",
|
|
|
|
"once_cell",
|
2022-08-22 03:03:39 +05:30
|
|
|
"openssl-macros",
|
2021-10-31 15:11:13 +05:30
|
|
|
"openssl-sys",
|
|
|
|
]
|
|
|
|
|
2022-08-22 03:03:39 +05:30
|
|
|
[[package]]
|
|
|
|
name = "openssl-macros"
|
|
|
|
version = "0.1.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "b501e44f11665960c7e7fcf062c7d96a14ade4aa98116c004b2e37b5be7d736c"
|
|
|
|
dependencies = [
|
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
|
|
|
"syn",
|
|
|
|
]
|
|
|
|
|
2021-10-31 15:11:13 +05:30
|
|
|
[[package]]
|
|
|
|
name = "openssl-probe"
|
2022-02-17 20:26:45 +05:30
|
|
|
version = "0.1.5"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-02-17 20:26:45 +05:30
|
|
|
checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
|
2021-10-31 15:11:13 +05:30
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "openssl-sys"
|
2022-08-22 03:03:39 +05:30
|
|
|
version = "0.9.75"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-22 03:03:39 +05:30
|
|
|
checksum = "e5f9bd0c2710541a3cda73d6f9ac4f1b240de4ae261065d309dbe73d9dceb42f"
|
2021-10-31 15:11:13 +05:30
|
|
|
dependencies = [
|
|
|
|
"autocfg",
|
|
|
|
"cc",
|
|
|
|
"libc",
|
|
|
|
"pkg-config",
|
|
|
|
"vcpkg",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "parking_lot"
|
|
|
|
version = "0.11.2"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99"
|
|
|
|
dependencies = [
|
|
|
|
"instant",
|
|
|
|
"lock_api",
|
2022-02-17 20:26:45 +05:30
|
|
|
"parking_lot_core 0.8.5",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "parking_lot"
|
2022-08-22 03:03:39 +05:30
|
|
|
version = "0.12.1"
|
2022-02-17 20:26:45 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-22 03:03:39 +05:30
|
|
|
checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
|
2022-02-17 20:26:45 +05:30
|
|
|
dependencies = [
|
|
|
|
"lock_api",
|
2022-08-22 03:03:39 +05:30
|
|
|
"parking_lot_core 0.9.3",
|
2021-10-31 15:11:13 +05:30
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "parking_lot_core"
|
|
|
|
version = "0.8.5"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "d76e8e1493bcac0d2766c42737f34458f1c8c50c0d23bcb24ea953affb273216"
|
|
|
|
dependencies = [
|
|
|
|
"cfg-if",
|
|
|
|
"instant",
|
|
|
|
"libc",
|
|
|
|
"redox_syscall",
|
|
|
|
"smallvec",
|
|
|
|
"winapi",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
2022-02-17 20:26:45 +05:30
|
|
|
name = "parking_lot_core"
|
2022-08-22 03:03:39 +05:30
|
|
|
version = "0.9.3"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-22 03:03:39 +05:30
|
|
|
checksum = "09a279cbf25cb0757810394fbc1e359949b59e348145c643a939a525692e6929"
|
2021-10-31 15:11:13 +05:30
|
|
|
dependencies = [
|
2022-02-17 20:26:45 +05:30
|
|
|
"cfg-if",
|
|
|
|
"libc",
|
|
|
|
"redox_syscall",
|
|
|
|
"smallvec",
|
|
|
|
"windows-sys",
|
2021-10-31 15:11:13 +05:30
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
2022-02-17 20:26:45 +05:30
|
|
|
name = "paste"
|
2022-08-22 03:03:39 +05:30
|
|
|
version = "1.0.8"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-22 03:03:39 +05:30
|
|
|
checksum = "9423e2b32f7a043629287a536f21951e8c6a82482d0acb1eeebfc90bc2225b22"
|
2021-10-31 15:11:13 +05:30
|
|
|
|
|
|
|
[[package]]
|
2022-02-17 20:26:45 +05:30
|
|
|
name = "percent-encoding"
|
|
|
|
version = "2.1.0"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-02-17 20:26:45 +05:30
|
|
|
checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e"
|
2021-10-31 15:11:13 +05:30
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "pin-project-lite"
|
2022-08-22 03:03:39 +05:30
|
|
|
version = "0.2.9"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-22 03:03:39 +05:30
|
|
|
checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116"
|
2021-10-31 15:11:13 +05:30
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "pin-utils"
|
|
|
|
version = "0.1.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "pkg-config"
|
2022-08-22 03:03:39 +05:30
|
|
|
version = "0.3.25"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-22 03:03:39 +05:30
|
|
|
checksum = "1df8c4ec4b0627e53bdf214615ad287367e482558cf84b109250b37464dc03ae"
|
2021-10-31 15:11:13 +05:30
|
|
|
|
2022-03-18 20:45:01 +05:30
|
|
|
[[package]]
|
|
|
|
name = "plist"
|
|
|
|
version = "1.3.1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "bd39bc6cdc9355ad1dc5eeedefee696bb35c34caf21768741e81826c0bbd7225"
|
|
|
|
dependencies = [
|
|
|
|
"base64",
|
|
|
|
"indexmap",
|
|
|
|
"line-wrap",
|
2022-08-22 03:03:39 +05:30
|
|
|
"serde 1.0.144",
|
|
|
|
"time 0.3.13",
|
2022-03-18 20:45:01 +05:30
|
|
|
"xml-rs",
|
|
|
|
]
|
|
|
|
|
2021-10-31 15:11:13 +05:30
|
|
|
[[package]]
|
|
|
|
name = "ppv-lite86"
|
2022-02-17 20:26:45 +05:30
|
|
|
version = "0.2.16"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-02-17 20:26:45 +05:30
|
|
|
checksum = "eb9f9e6e233e5c4a35559a617bf40a4ec447db2e84c20b55a6f83167b7e57872"
|
2021-10-31 15:11:13 +05:30
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "pretty_env_logger"
|
|
|
|
version = "0.4.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "926d36b9553851b8b0005f1275891b392ee4d2d833852c417ed025477350fb9d"
|
|
|
|
dependencies = [
|
|
|
|
"env_logger",
|
|
|
|
"log",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "proc-macro2"
|
2022-02-17 20:26:45 +05:30
|
|
|
version = "1.0.36"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-02-17 20:26:45 +05:30
|
|
|
checksum = "c7342d5883fbccae1cc37a2353b09c87c9b0f3afd73f5fb9bba687a1f733b029"
|
2021-10-31 15:11:13 +05:30
|
|
|
dependencies = [
|
|
|
|
"unicode-xid",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "quick-error"
|
|
|
|
version = "1.2.3"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "quote"
|
2022-08-22 03:03:39 +05:30
|
|
|
version = "1.0.19"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-22 03:03:39 +05:30
|
|
|
checksum = "f53dc8cf16a769a6f677e09e7ff2cd4be1ea0f48754aac39520536962011de0d"
|
2021-10-31 15:11:13 +05:30
|
|
|
dependencies = [
|
|
|
|
"proc-macro2",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "rand"
|
2022-02-17 20:26:45 +05:30
|
|
|
version = "0.8.5"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-02-17 20:26:45 +05:30
|
|
|
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
|
2021-10-31 15:11:13 +05:30
|
|
|
dependencies = [
|
|
|
|
"libc",
|
|
|
|
"rand_chacha",
|
|
|
|
"rand_core",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "rand_chacha"
|
|
|
|
version = "0.3.1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
|
|
|
dependencies = [
|
|
|
|
"ppv-lite86",
|
|
|
|
"rand_core",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "rand_core"
|
|
|
|
version = "0.6.3"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "d34f1408f55294453790c48b2f1ebbb1c5b4b7563eb1f418bcfcfdbb06ebb4e7"
|
|
|
|
dependencies = [
|
|
|
|
"getrandom",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "redox_syscall"
|
2022-08-22 03:03:39 +05:30
|
|
|
version = "0.2.16"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-22 03:03:39 +05:30
|
|
|
checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
|
2021-10-31 15:11:13 +05:30
|
|
|
dependencies = [
|
|
|
|
"bitflags",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "regex"
|
2022-08-21 17:57:45 +05:30
|
|
|
version = "1.6.0"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-21 17:57:45 +05:30
|
|
|
checksum = "4c4eb3267174b8c6c2f654116623910a0fef09c4753f8dd83db29c48a0df988b"
|
2021-10-31 15:11:13 +05:30
|
|
|
dependencies = [
|
|
|
|
"aho-corasick",
|
|
|
|
"memchr",
|
|
|
|
"regex-syntax",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "regex-syntax"
|
2022-08-21 17:57:45 +05:30
|
|
|
version = "0.6.27"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-21 17:57:45 +05:30
|
|
|
checksum = "a3f87b73ce11b1619a3c6332f45341e0047173771e8b8b73f87bfeefb7b56244"
|
2021-10-31 15:11:13 +05:30
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "remove_dir_all"
|
|
|
|
version = "0.5.3"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7"
|
|
|
|
dependencies = [
|
|
|
|
"winapi",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "reqwest"
|
2022-08-22 03:03:39 +05:30
|
|
|
version = "0.11.11"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-22 03:03:39 +05:30
|
|
|
checksum = "b75aa69a3f06bbcc66ede33af2af253c6f7a86b1ca0033f60c580a27074fbf92"
|
2021-10-31 15:11:13 +05:30
|
|
|
dependencies = [
|
|
|
|
"base64",
|
|
|
|
"bytes",
|
|
|
|
"encoding_rs",
|
|
|
|
"futures-core",
|
|
|
|
"futures-util",
|
2022-02-17 20:26:45 +05:30
|
|
|
"h2",
|
2021-10-31 15:11:13 +05:30
|
|
|
"http",
|
|
|
|
"http-body",
|
|
|
|
"hyper",
|
|
|
|
"hyper-tls",
|
|
|
|
"ipnet",
|
|
|
|
"js-sys",
|
|
|
|
"lazy_static",
|
|
|
|
"log",
|
|
|
|
"mime",
|
|
|
|
"native-tls",
|
|
|
|
"percent-encoding",
|
|
|
|
"pin-project-lite",
|
2022-08-22 03:03:39 +05:30
|
|
|
"serde 1.0.144",
|
2021-10-31 15:11:13 +05:30
|
|
|
"serde_json",
|
|
|
|
"serde_urlencoded",
|
|
|
|
"tokio",
|
|
|
|
"tokio-native-tls",
|
2022-08-22 03:03:39 +05:30
|
|
|
"tower-service",
|
2021-10-31 15:11:13 +05:30
|
|
|
"url",
|
|
|
|
"wasm-bindgen",
|
|
|
|
"wasm-bindgen-futures",
|
|
|
|
"web-sys",
|
|
|
|
"winreg",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "rust-ini"
|
|
|
|
version = "0.13.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "3e52c148ef37f8c375d49d5a73aa70713125b7f19095948a923f80afdeb22ec2"
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "rustc_version"
|
2022-02-17 20:26:45 +05:30
|
|
|
version = "0.4.0"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-02-17 20:26:45 +05:30
|
|
|
checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
|
2021-10-31 15:11:13 +05:30
|
|
|
dependencies = [
|
2022-02-17 20:26:45 +05:30
|
|
|
"semver",
|
2021-10-31 15:11:13 +05:30
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "ryu"
|
2022-08-22 03:03:39 +05:30
|
|
|
version = "1.0.11"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-22 03:03:39 +05:30
|
|
|
checksum = "4501abdff3ae82a1c1b477a17252eb69cee9e66eb915c1abaa4f44d873df9f09"
|
2021-10-31 15:11:13 +05:30
|
|
|
|
2022-03-18 20:45:01 +05:30
|
|
|
[[package]]
|
|
|
|
name = "safemem"
|
|
|
|
version = "0.3.3"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "ef703b7cb59335eae2eb93ceb664c0eb7ea6bf567079d843e09420219668e072"
|
|
|
|
|
2021-10-31 22:26:42 +05:30
|
|
|
[[package]]
|
|
|
|
name = "sailfish"
|
2022-02-17 20:26:45 +05:30
|
|
|
version = "0.3.4"
|
2021-10-31 22:26:42 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-02-17 20:26:45 +05:30
|
|
|
checksum = "31f030905cfc5f869b6784dc4e5c83a20d1f77c92bae1a0d158baf9404100c3e"
|
2021-10-31 22:26:42 +05:30
|
|
|
dependencies = [
|
|
|
|
"itoap",
|
|
|
|
"ryu",
|
|
|
|
"sailfish-macros",
|
|
|
|
"version_check",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "sailfish-compiler"
|
2022-02-17 20:26:45 +05:30
|
|
|
version = "0.3.4"
|
2021-10-31 22:26:42 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-02-17 20:26:45 +05:30
|
|
|
checksum = "f7a8620f80b37af2e55153ee142bfdb8085f30c454be453e922466d483b0d184"
|
2021-10-31 22:26:42 +05:30
|
|
|
dependencies = [
|
|
|
|
"filetime",
|
|
|
|
"home",
|
|
|
|
"memchr",
|
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
|
|
|
"syn",
|
|
|
|
"yaml-rust",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "sailfish-macros"
|
2022-02-17 20:26:45 +05:30
|
|
|
version = "0.3.4"
|
2021-10-31 22:26:42 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-02-17 20:26:45 +05:30
|
|
|
checksum = "b31ded532bded4637d49297e3247476ebc266efab4b054dc48037fa88846fdeb"
|
2021-10-31 22:26:42 +05:30
|
|
|
dependencies = [
|
|
|
|
"proc-macro2",
|
|
|
|
"sailfish-compiler",
|
|
|
|
]
|
|
|
|
|
2022-03-18 20:45:01 +05:30
|
|
|
[[package]]
|
|
|
|
name = "same-file"
|
|
|
|
version = "1.0.6"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
|
|
dependencies = [
|
|
|
|
"winapi-util",
|
|
|
|
]
|
|
|
|
|
2021-10-31 15:11:13 +05:30
|
|
|
[[package]]
|
|
|
|
name = "schannel"
|
2022-08-22 03:03:39 +05:30
|
|
|
version = "0.1.20"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-22 03:03:39 +05:30
|
|
|
checksum = "88d6731146462ea25d9244b2ed5fd1d716d25c52e4d54aa4fb0f3c4e9854dbe2"
|
2021-10-31 15:11:13 +05:30
|
|
|
dependencies = [
|
|
|
|
"lazy_static",
|
2022-08-22 03:03:39 +05:30
|
|
|
"windows-sys",
|
2021-10-31 15:11:13 +05:30
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "scopeguard"
|
|
|
|
version = "1.1.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "security-framework"
|
2022-08-22 03:03:39 +05:30
|
|
|
version = "2.7.0"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-22 03:03:39 +05:30
|
|
|
checksum = "2bc1bb97804af6631813c55739f771071e0f2ed33ee20b68c86ec505d906356c"
|
2021-10-31 15:11:13 +05:30
|
|
|
dependencies = [
|
|
|
|
"bitflags",
|
|
|
|
"core-foundation",
|
|
|
|
"core-foundation-sys",
|
|
|
|
"libc",
|
|
|
|
"security-framework-sys",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "security-framework-sys"
|
2022-02-17 20:26:45 +05:30
|
|
|
version = "2.6.1"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-02-17 20:26:45 +05:30
|
|
|
checksum = "0160a13a177a45bfb43ce71c01580998474f556ad854dcbca936dd2841a5c556"
|
2021-10-31 15:11:13 +05:30
|
|
|
dependencies = [
|
|
|
|
"core-foundation-sys",
|
|
|
|
"libc",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "semver"
|
2022-08-22 03:03:39 +05:30
|
|
|
version = "1.0.13"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-22 03:03:39 +05:30
|
|
|
checksum = "93f6841e709003d68bb2deee8c343572bf446003ec20a583e76f7b15cebf3711"
|
2021-10-31 15:11:13 +05:30
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "serde"
|
|
|
|
version = "0.8.23"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "9dad3f759919b92c3068c696c15c3d17238234498bbdcc80f2c469606f948ac8"
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "serde"
|
2022-08-22 03:03:39 +05:30
|
|
|
version = "1.0.144"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-22 03:03:39 +05:30
|
|
|
checksum = "0f747710de3dcd43b88c9168773254e809d8ddbdf9653b84e2554ab219f17860"
|
2021-10-31 15:11:13 +05:30
|
|
|
dependencies = [
|
|
|
|
"serde_derive",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "serde-hjson"
|
|
|
|
version = "0.9.1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "6a3a4e0ea8a88553209f6cc6cfe8724ecad22e1acf372793c27d995290fe74f8"
|
|
|
|
dependencies = [
|
|
|
|
"lazy_static",
|
|
|
|
"num-traits 0.1.43",
|
|
|
|
"regex",
|
|
|
|
"serde 0.8.23",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "serde_derive"
|
2022-08-22 03:03:39 +05:30
|
|
|
version = "1.0.144"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-22 03:03:39 +05:30
|
|
|
checksum = "94ed3a816fb1d101812f83e789f888322c34e291f894f19590dc310963e87a00"
|
2021-10-31 15:11:13 +05:30
|
|
|
dependencies = [
|
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
|
|
|
"syn",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "serde_json"
|
2022-08-22 03:03:39 +05:30
|
|
|
version = "1.0.83"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-22 03:03:39 +05:30
|
|
|
checksum = "38dd04e3c8279e75b31ef29dbdceebfe5ad89f4d0937213c53f7d49d01b3d5a7"
|
2021-10-31 15:11:13 +05:30
|
|
|
dependencies = [
|
|
|
|
"itoa",
|
|
|
|
"ryu",
|
2022-08-22 03:03:39 +05:30
|
|
|
"serde 1.0.144",
|
2021-10-31 15:11:13 +05:30
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "serde_urlencoded"
|
2022-02-17 20:26:45 +05:30
|
|
|
version = "0.7.1"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-02-17 20:26:45 +05:30
|
|
|
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
|
2021-10-31 15:11:13 +05:30
|
|
|
dependencies = [
|
|
|
|
"form_urlencoded",
|
|
|
|
"itoa",
|
|
|
|
"ryu",
|
2022-08-22 03:03:39 +05:30
|
|
|
"serde 1.0.144",
|
2021-10-31 15:11:13 +05:30
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
2022-08-21 17:57:45 +05:30
|
|
|
name = "sha1"
|
|
|
|
version = "0.10.1"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-21 17:57:45 +05:30
|
|
|
checksum = "c77f4e7f65455545c2153c1253d25056825e77ee2533f0e41deb65a93a34852f"
|
2021-10-31 15:11:13 +05:30
|
|
|
dependencies = [
|
|
|
|
"cfg-if",
|
|
|
|
"cpufeatures",
|
|
|
|
"digest",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "signal-hook-registry"
|
|
|
|
version = "1.4.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "e51e73328dc4ac0c7ccbda3a494dfa03df1de2f46018127f60c693f2648455b0"
|
|
|
|
dependencies = [
|
|
|
|
"libc",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "slab"
|
2022-08-22 03:03:39 +05:30
|
|
|
version = "0.4.7"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-22 03:03:39 +05:30
|
|
|
checksum = "4614a76b2a8be0058caa9dbbaf66d988527d86d003c11a94fbd335d7661edcef"
|
|
|
|
dependencies = [
|
|
|
|
"autocfg",
|
|
|
|
]
|
2021-10-31 15:11:13 +05:30
|
|
|
|
2021-11-02 15:30:25 +05:30
|
|
|
[[package]]
|
|
|
|
name = "sled"
|
|
|
|
version = "0.34.7"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "7f96b4737c2ce5987354855aed3797279def4ebf734436c6aa4552cf8e169935"
|
|
|
|
dependencies = [
|
|
|
|
"crc32fast",
|
|
|
|
"crossbeam-epoch",
|
|
|
|
"crossbeam-utils",
|
|
|
|
"fs2",
|
|
|
|
"fxhash",
|
|
|
|
"libc",
|
|
|
|
"log",
|
2022-02-17 20:26:45 +05:30
|
|
|
"parking_lot 0.11.2",
|
2021-11-02 15:30:25 +05:30
|
|
|
]
|
|
|
|
|
2021-10-31 15:11:13 +05:30
|
|
|
[[package]]
|
|
|
|
name = "smallvec"
|
2022-08-22 03:03:39 +05:30
|
|
|
version = "1.9.0"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-22 03:03:39 +05:30
|
|
|
checksum = "2fd0db749597d91ff862fd1d55ea87f7855a744a8425a64695b6fca237d1dad1"
|
2021-10-31 15:11:13 +05:30
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "socket2"
|
2022-02-17 20:26:45 +05:30
|
|
|
version = "0.4.4"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-02-17 20:26:45 +05:30
|
|
|
checksum = "66d72b759436ae32898a2af0a14218dbf55efde3feeb170eb623637db85ee1e0"
|
2021-10-31 15:11:13 +05:30
|
|
|
dependencies = [
|
|
|
|
"libc",
|
|
|
|
"winapi",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "static_assertions"
|
|
|
|
version = "1.1.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "syn"
|
2022-08-22 03:03:39 +05:30
|
|
|
version = "1.0.94"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-22 03:03:39 +05:30
|
|
|
checksum = "a07e33e919ebcd69113d5be0e4d70c5707004ff45188910106854f38b960df4a"
|
2021-10-31 15:11:13 +05:30
|
|
|
dependencies = [
|
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
|
|
|
"unicode-xid",
|
|
|
|
]
|
|
|
|
|
2022-03-18 20:45:01 +05:30
|
|
|
[[package]]
|
|
|
|
name = "syntect"
|
|
|
|
version = "4.6.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "8b20815bbe80ee0be06e6957450a841185fcf690fe0178f14d77a05ce2caa031"
|
|
|
|
dependencies = [
|
|
|
|
"bincode",
|
|
|
|
"bitflags",
|
|
|
|
"flate2",
|
|
|
|
"fnv",
|
|
|
|
"lazy_static",
|
|
|
|
"lazycell",
|
|
|
|
"onig",
|
|
|
|
"plist",
|
|
|
|
"regex-syntax",
|
2022-08-22 03:03:39 +05:30
|
|
|
"serde 1.0.144",
|
2022-03-18 20:45:01 +05:30
|
|
|
"serde_derive",
|
|
|
|
"serde_json",
|
|
|
|
"walkdir",
|
|
|
|
"yaml-rust",
|
|
|
|
]
|
|
|
|
|
2021-10-31 15:11:13 +05:30
|
|
|
[[package]]
|
|
|
|
name = "tempfile"
|
2022-02-17 20:26:45 +05:30
|
|
|
version = "3.3.0"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-02-17 20:26:45 +05:30
|
|
|
checksum = "5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4"
|
2021-10-31 15:11:13 +05:30
|
|
|
dependencies = [
|
|
|
|
"cfg-if",
|
2022-02-17 20:26:45 +05:30
|
|
|
"fastrand",
|
2021-10-31 15:11:13 +05:30
|
|
|
"libc",
|
|
|
|
"redox_syscall",
|
|
|
|
"remove_dir_all",
|
|
|
|
"winapi",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "termcolor"
|
2022-08-22 03:03:39 +05:30
|
|
|
version = "1.1.3"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-22 03:03:39 +05:30
|
|
|
checksum = "bab24d30b911b2376f3a13cc2cd443142f0c81dda04c118693e35b3835757755"
|
2021-10-31 15:11:13 +05:30
|
|
|
dependencies = [
|
|
|
|
"winapi-util",
|
|
|
|
]
|
|
|
|
|
2022-08-22 03:03:39 +05:30
|
|
|
[[package]]
|
|
|
|
name = "thiserror"
|
|
|
|
version = "1.0.32"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "f5f6586b7f764adc0231f4c79be7b920e766bb2f3e51b3661cdb263828f19994"
|
|
|
|
dependencies = [
|
|
|
|
"thiserror-impl",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "thiserror-impl"
|
|
|
|
version = "1.0.32"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "12bafc5b54507e0149cdf1b145a5d80ab80a90bcd9275df43d4fff68460f6c21"
|
|
|
|
dependencies = [
|
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
|
|
|
"syn",
|
|
|
|
]
|
|
|
|
|
2021-10-31 22:26:42 +05:30
|
|
|
[[package]]
|
|
|
|
name = "time"
|
|
|
|
version = "0.1.44"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "6db9e6914ab8b1ae1c260a4ae7a49b6c5611b40328a735b21862567685e73255"
|
|
|
|
dependencies = [
|
|
|
|
"libc",
|
2022-08-22 03:03:39 +05:30
|
|
|
"wasi 0.10.0+wasi-snapshot-preview1",
|
2021-10-31 22:26:42 +05:30
|
|
|
"winapi",
|
|
|
|
]
|
|
|
|
|
2021-10-31 15:11:13 +05:30
|
|
|
[[package]]
|
|
|
|
name = "time"
|
2022-08-22 03:03:39 +05:30
|
|
|
version = "0.3.13"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-22 03:03:39 +05:30
|
|
|
checksum = "db76ff9fa4b1458b3c7f077f3ff9887394058460d21e634355b273aaf11eea45"
|
2021-10-31 15:11:13 +05:30
|
|
|
dependencies = [
|
|
|
|
"itoa",
|
|
|
|
"libc",
|
2022-02-17 20:26:45 +05:30
|
|
|
"num_threads",
|
|
|
|
"time-macros",
|
2021-10-31 15:11:13 +05:30
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "time-macros"
|
2022-08-22 03:03:39 +05:30
|
|
|
version = "0.2.4"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-22 03:03:39 +05:30
|
|
|
checksum = "42657b1a6f4d817cda8e7a0ace261fe0cc946cf3a80314390b22cc61ae080792"
|
2021-10-31 15:11:13 +05:30
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "tinyvec"
|
2022-08-22 03:03:39 +05:30
|
|
|
version = "1.6.0"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-22 03:03:39 +05:30
|
|
|
checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
|
2021-10-31 15:11:13 +05:30
|
|
|
dependencies = [
|
|
|
|
"tinyvec_macros",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "tinyvec_macros"
|
|
|
|
version = "0.1.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "tokio"
|
2022-08-22 03:03:39 +05:30
|
|
|
version = "1.20.1"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-22 03:03:39 +05:30
|
|
|
checksum = "7a8325f63a7d4774dd041e363b2409ed1c5cbbd0f867795e661df066b2b0a581"
|
2021-10-31 15:11:13 +05:30
|
|
|
dependencies = [
|
2022-08-22 03:03:39 +05:30
|
|
|
"autocfg",
|
2021-10-31 15:11:13 +05:30
|
|
|
"bytes",
|
|
|
|
"libc",
|
|
|
|
"memchr",
|
|
|
|
"mio",
|
|
|
|
"once_cell",
|
2022-08-22 03:03:39 +05:30
|
|
|
"parking_lot 0.12.1",
|
2021-10-31 15:11:13 +05:30
|
|
|
"pin-project-lite",
|
|
|
|
"signal-hook-registry",
|
2022-02-17 20:26:45 +05:30
|
|
|
"socket2",
|
2021-10-31 15:11:13 +05:30
|
|
|
"winapi",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "tokio-native-tls"
|
|
|
|
version = "0.3.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "f7d995660bd2b7f8c1568414c1126076c13fbb725c40112dc0120b78eb9b717b"
|
|
|
|
dependencies = [
|
|
|
|
"native-tls",
|
|
|
|
"tokio",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "tokio-util"
|
2022-08-22 03:03:39 +05:30
|
|
|
version = "0.7.3"
|
2022-02-17 20:26:45 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-22 03:03:39 +05:30
|
|
|
checksum = "cc463cd8deddc3770d20f9852143d50bf6094e640b485cb2e189a2099085ff45"
|
2022-02-17 20:26:45 +05:30
|
|
|
dependencies = [
|
|
|
|
"bytes",
|
|
|
|
"futures-core",
|
|
|
|
"futures-sink",
|
|
|
|
"pin-project-lite",
|
|
|
|
"tokio",
|
2022-08-22 03:03:39 +05:30
|
|
|
"tracing",
|
2022-02-17 20:26:45 +05:30
|
|
|
]
|
|
|
|
|
2021-10-31 15:11:13 +05:30
|
|
|
[[package]]
|
|
|
|
name = "toml"
|
2022-08-22 03:03:39 +05:30
|
|
|
version = "0.5.9"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-22 03:03:39 +05:30
|
|
|
checksum = "8d82e1a7758622a465f8cee077614c73484dac5b836c02ff6a40d5d1010324d7"
|
2021-10-31 15:11:13 +05:30
|
|
|
dependencies = [
|
2022-08-22 03:03:39 +05:30
|
|
|
"serde 1.0.144",
|
2021-10-31 15:11:13 +05:30
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "tower-service"
|
2022-08-22 03:03:39 +05:30
|
|
|
version = "0.3.2"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-22 03:03:39 +05:30
|
|
|
checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52"
|
2021-10-31 15:11:13 +05:30
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "tracing"
|
2022-08-22 03:03:39 +05:30
|
|
|
version = "0.1.36"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-22 03:03:39 +05:30
|
|
|
checksum = "2fce9567bd60a67d08a16488756721ba392f24f29006402881e43b19aac64307"
|
2021-10-31 15:11:13 +05:30
|
|
|
dependencies = [
|
|
|
|
"cfg-if",
|
2022-08-21 17:57:45 +05:30
|
|
|
"log",
|
2021-10-31 15:11:13 +05:30
|
|
|
"pin-project-lite",
|
|
|
|
"tracing-core",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "tracing-core"
|
2022-08-22 03:03:39 +05:30
|
|
|
version = "0.1.29"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-22 03:03:39 +05:30
|
|
|
checksum = "5aeea4303076558a00714b823f9ad67d58a3bbda1df83d8827d21193156e22f7"
|
2021-10-31 15:11:13 +05:30
|
|
|
dependencies = [
|
2022-08-22 03:03:39 +05:30
|
|
|
"once_cell",
|
2021-10-31 15:11:13 +05:30
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "try-lock"
|
|
|
|
version = "0.2.3"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642"
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "typenum"
|
2022-02-17 20:26:45 +05:30
|
|
|
version = "1.15.0"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-02-17 20:26:45 +05:30
|
|
|
checksum = "dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987"
|
2021-10-31 15:11:13 +05:30
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "unicode-bidi"
|
2022-08-22 03:03:39 +05:30
|
|
|
version = "0.3.8"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-22 03:03:39 +05:30
|
|
|
checksum = "099b7128301d285f79ddd55b9a83d5e6b9e97c92e0ea0daebee7263e932de992"
|
2021-10-31 15:11:13 +05:30
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "unicode-normalization"
|
2022-08-22 03:03:39 +05:30
|
|
|
version = "0.1.21"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-22 03:03:39 +05:30
|
|
|
checksum = "854cbdc4f7bc6ae19c820d44abdc3277ac3e1b2b93db20a636825d9322fb60e6"
|
2021-10-31 15:11:13 +05:30
|
|
|
dependencies = [
|
|
|
|
"tinyvec",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "unicode-xid"
|
2022-08-22 03:03:39 +05:30
|
|
|
version = "0.2.3"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-22 03:03:39 +05:30
|
|
|
checksum = "957e51f3646910546462e67d5f7599b9e4fb8acdd304b087a6494730f9eebf04"
|
2021-10-31 15:11:13 +05:30
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "unreachable"
|
|
|
|
version = "1.0.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "382810877fe448991dfc7f0dd6e3ae5d58088fd0ea5e35189655f84e6814fa56"
|
|
|
|
dependencies = [
|
|
|
|
"void",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "url"
|
|
|
|
version = "2.2.2"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "a507c383b2d33b5fc35d1861e77e6b383d158b2da5e14fe51b83dfedf6fd578c"
|
|
|
|
dependencies = [
|
|
|
|
"form_urlencoded",
|
|
|
|
"idna",
|
|
|
|
"matches",
|
|
|
|
"percent-encoding",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "vcpkg"
|
|
|
|
version = "0.2.15"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "version_check"
|
2022-02-17 20:26:45 +05:30
|
|
|
version = "0.9.4"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-02-17 20:26:45 +05:30
|
|
|
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
|
2021-10-31 15:11:13 +05:30
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "void"
|
|
|
|
version = "1.0.2"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d"
|
|
|
|
|
2022-03-18 20:45:01 +05:30
|
|
|
[[package]]
|
|
|
|
name = "walkdir"
|
|
|
|
version = "2.3.2"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "808cf2735cd4b6866113f648b791c6adc5714537bc222d9347bb203386ffda56"
|
|
|
|
dependencies = [
|
|
|
|
"same-file",
|
|
|
|
"winapi",
|
|
|
|
"winapi-util",
|
|
|
|
]
|
|
|
|
|
2021-10-31 15:11:13 +05:30
|
|
|
[[package]]
|
|
|
|
name = "want"
|
|
|
|
version = "0.3.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0"
|
|
|
|
dependencies = [
|
|
|
|
"log",
|
|
|
|
"try-lock",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "wasi"
|
2021-10-31 22:26:42 +05:30
|
|
|
version = "0.10.0+wasi-snapshot-preview1"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-10-31 22:26:42 +05:30
|
|
|
checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f"
|
2021-10-31 15:11:13 +05:30
|
|
|
|
2022-08-22 03:03:39 +05:30
|
|
|
[[package]]
|
|
|
|
name = "wasi"
|
|
|
|
version = "0.11.0+wasi-snapshot-preview1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
|
|
|
|
2021-10-31 15:11:13 +05:30
|
|
|
[[package]]
|
|
|
|
name = "wasm-bindgen"
|
2022-08-22 03:03:39 +05:30
|
|
|
version = "0.2.82"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-22 03:03:39 +05:30
|
|
|
checksum = "fc7652e3f6c4706c8d9cd54832c4a4ccb9b5336e2c3bd154d5cccfbf1c1f5f7d"
|
2021-10-31 15:11:13 +05:30
|
|
|
dependencies = [
|
|
|
|
"cfg-if",
|
|
|
|
"wasm-bindgen-macro",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "wasm-bindgen-backend"
|
2022-08-22 03:03:39 +05:30
|
|
|
version = "0.2.82"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-22 03:03:39 +05:30
|
|
|
checksum = "662cd44805586bd52971b9586b1df85cdbbd9112e4ef4d8f41559c334dc6ac3f"
|
2021-10-31 15:11:13 +05:30
|
|
|
dependencies = [
|
|
|
|
"bumpalo",
|
|
|
|
"log",
|
2022-08-22 03:03:39 +05:30
|
|
|
"once_cell",
|
2021-10-31 15:11:13 +05:30
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
|
|
|
"syn",
|
|
|
|
"wasm-bindgen-shared",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "wasm-bindgen-futures"
|
2022-08-22 03:03:39 +05:30
|
|
|
version = "0.4.32"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-22 03:03:39 +05:30
|
|
|
checksum = "fa76fb221a1f8acddf5b54ace85912606980ad661ac7a503b4570ffd3a624dad"
|
2021-10-31 15:11:13 +05:30
|
|
|
dependencies = [
|
|
|
|
"cfg-if",
|
|
|
|
"js-sys",
|
|
|
|
"wasm-bindgen",
|
|
|
|
"web-sys",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "wasm-bindgen-macro"
|
2022-08-22 03:03:39 +05:30
|
|
|
version = "0.2.82"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-22 03:03:39 +05:30
|
|
|
checksum = "b260f13d3012071dfb1512849c033b1925038373aea48ced3012c09df952c602"
|
2021-10-31 15:11:13 +05:30
|
|
|
dependencies = [
|
|
|
|
"quote",
|
|
|
|
"wasm-bindgen-macro-support",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "wasm-bindgen-macro-support"
|
2022-08-22 03:03:39 +05:30
|
|
|
version = "0.2.82"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-22 03:03:39 +05:30
|
|
|
checksum = "5be8e654bdd9b79216c2929ab90721aa82faf65c48cdf08bdc4e7f51357b80da"
|
2021-10-31 15:11:13 +05:30
|
|
|
dependencies = [
|
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
|
|
|
"syn",
|
|
|
|
"wasm-bindgen-backend",
|
|
|
|
"wasm-bindgen-shared",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "wasm-bindgen-shared"
|
2022-08-22 03:03:39 +05:30
|
|
|
version = "0.2.82"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-22 03:03:39 +05:30
|
|
|
checksum = "6598dd0bd3c7d51095ff6531a5b23e02acdc81804e30d8f07afb77b7215a140a"
|
2021-10-31 15:11:13 +05:30
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "web-sys"
|
2022-08-22 03:03:39 +05:30
|
|
|
version = "0.3.59"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-22 03:03:39 +05:30
|
|
|
checksum = "ed055ab27f941423197eb86b2035720b1a3ce40504df082cac2ecc6ed73335a1"
|
2021-10-31 15:11:13 +05:30
|
|
|
dependencies = [
|
|
|
|
"js-sys",
|
|
|
|
"wasm-bindgen",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "winapi"
|
|
|
|
version = "0.3.9"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
|
|
|
|
dependencies = [
|
|
|
|
"winapi-i686-pc-windows-gnu",
|
|
|
|
"winapi-x86_64-pc-windows-gnu",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "winapi-i686-pc-windows-gnu"
|
|
|
|
version = "0.4.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "winapi-util"
|
|
|
|
version = "0.1.5"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
|
|
|
|
dependencies = [
|
|
|
|
"winapi",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "winapi-x86_64-pc-windows-gnu"
|
|
|
|
version = "0.4.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
|
|
|
2022-02-17 20:26:45 +05:30
|
|
|
[[package]]
|
|
|
|
name = "windows-sys"
|
2022-08-22 03:03:39 +05:30
|
|
|
version = "0.36.1"
|
2022-02-17 20:26:45 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-22 03:03:39 +05:30
|
|
|
checksum = "ea04155a16a59f9eab786fe12a4a450e75cdb175f9e0d80da1e17db09f55b8d2"
|
2022-02-17 20:26:45 +05:30
|
|
|
dependencies = [
|
|
|
|
"windows_aarch64_msvc",
|
|
|
|
"windows_i686_gnu",
|
|
|
|
"windows_i686_msvc",
|
|
|
|
"windows_x86_64_gnu",
|
|
|
|
"windows_x86_64_msvc",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "windows_aarch64_msvc"
|
2022-08-22 03:03:39 +05:30
|
|
|
version = "0.36.1"
|
2022-02-17 20:26:45 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-22 03:03:39 +05:30
|
|
|
checksum = "9bb8c3fd39ade2d67e9874ac4f3db21f0d710bee00fe7cab16949ec184eeaa47"
|
2022-02-17 20:26:45 +05:30
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "windows_i686_gnu"
|
2022-08-22 03:03:39 +05:30
|
|
|
version = "0.36.1"
|
2022-02-17 20:26:45 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-22 03:03:39 +05:30
|
|
|
checksum = "180e6ccf01daf4c426b846dfc66db1fc518f074baa793aa7d9b9aaeffad6a3b6"
|
2022-02-17 20:26:45 +05:30
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "windows_i686_msvc"
|
2022-08-22 03:03:39 +05:30
|
|
|
version = "0.36.1"
|
2022-02-17 20:26:45 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-22 03:03:39 +05:30
|
|
|
checksum = "e2e7917148b2812d1eeafaeb22a97e4813dfa60a3f8f78ebe204bcc88f12f024"
|
2022-02-17 20:26:45 +05:30
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "windows_x86_64_gnu"
|
2022-08-22 03:03:39 +05:30
|
|
|
version = "0.36.1"
|
2022-02-17 20:26:45 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-22 03:03:39 +05:30
|
|
|
checksum = "4dcd171b8776c41b97521e5da127a2d86ad280114807d0b2ab1e462bc764d9e1"
|
2022-02-17 20:26:45 +05:30
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "windows_x86_64_msvc"
|
2022-08-22 03:03:39 +05:30
|
|
|
version = "0.36.1"
|
2022-02-17 20:26:45 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-22 03:03:39 +05:30
|
|
|
checksum = "c811ca4a8c853ef420abd8592ba53ddbbac90410fab6903b3e79972a631f7680"
|
2022-02-17 20:26:45 +05:30
|
|
|
|
2021-10-31 15:11:13 +05:30
|
|
|
[[package]]
|
|
|
|
name = "winreg"
|
2022-08-22 03:03:39 +05:30
|
|
|
version = "0.10.1"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-22 03:03:39 +05:30
|
|
|
checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d"
|
2021-10-31 15:11:13 +05:30
|
|
|
dependencies = [
|
|
|
|
"winapi",
|
|
|
|
]
|
|
|
|
|
2022-03-18 20:45:01 +05:30
|
|
|
[[package]]
|
|
|
|
name = "xml-rs"
|
|
|
|
version = "0.8.4"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "d2d7d3948613f75c98fd9328cfdcc45acc4d360655289d0a7d4ec931392200a3"
|
|
|
|
|
2021-10-31 15:11:13 +05:30
|
|
|
[[package]]
|
|
|
|
name = "yaml-rust"
|
|
|
|
version = "0.4.5"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85"
|
|
|
|
dependencies = [
|
|
|
|
"linked-hash-map",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "zstd"
|
2022-08-21 17:57:45 +05:30
|
|
|
version = "0.11.2+zstd.1.5.2"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-21 17:57:45 +05:30
|
|
|
checksum = "20cc960326ece64f010d2d2107537f26dc589a6573a316bd5b1dba685fa5fde4"
|
2021-10-31 15:11:13 +05:30
|
|
|
dependencies = [
|
|
|
|
"zstd-safe",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "zstd-safe"
|
2022-08-21 17:57:45 +05:30
|
|
|
version = "5.0.2+zstd.1.5.2"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-21 17:57:45 +05:30
|
|
|
checksum = "1d2a5585e04f9eea4b2a3d1eca508c4dee9592a89ef6f450c11719da0726f4db"
|
2021-10-31 15:11:13 +05:30
|
|
|
dependencies = [
|
|
|
|
"libc",
|
|
|
|
"zstd-sys",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "zstd-sys"
|
2022-08-21 17:57:45 +05:30
|
|
|
version = "2.0.1+zstd.1.5.2"
|
2021-10-31 15:11:13 +05:30
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-21 17:57:45 +05:30
|
|
|
checksum = "9fd07cbbc53846d9145dbffdf6dd09a7a0aa52be46741825f5c97bdd4f73f12b"
|
2021-10-31 15:11:13 +05:30
|
|
|
dependencies = [
|
|
|
|
"cc",
|
|
|
|
"libc",
|
|
|
|
]
|