librepages/Cargo.lock

1625 lines
39 KiB
Plaintext
Raw Normal View History

2021-10-29 20:22:14 +05:30
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
[[package]]
name = "actix-codec"
2022-03-29 16:56:06 +05:30
version = "0.5.0"
2021-10-29 20:22:14 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-29 16:56:06 +05:30
checksum = "57a7559404a7f3573127aab53c08ce37a6c6a315c374a31070f3c91cd1b4a7fe"
2021-10-29 20:22:14 +05:30
dependencies = [
"bitflags",
"bytes",
"futures-core",
"futures-sink",
"log",
2022-03-29 16:56:06 +05:30
"memchr",
2021-10-29 20:22:14 +05:30
"pin-project-lite",
"tokio",
2022-04-19 02:32:35 +05:30
"tokio-util",
2021-10-29 20:22:14 +05:30
]
[[package]]
name = "actix-http"
2022-09-07 10:29:35 +05:30
version = "3.2.1"
2021-10-29 20:22:14 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-07 10:29:35 +05:30
checksum = "6f9ffb6db08c1c3a1f4aef540f1a63193adc73c4fbd40b75a95fc8c5258f6e51"
2021-10-29 20:22:14 +05:30
dependencies = [
"actix-codec",
"actix-rt",
"actix-service",
"actix-utils",
2022-04-19 02:32:35 +05:30
"ahash",
2021-10-29 20:22:14 +05:30
"base64",
"bitflags",
2022-03-29 16:56:06 +05:30
"brotli",
2021-10-29 20:22:14 +05:30
"bytes",
"bytestring",
"derive_more",
"encoding_rs",
"flate2",
"futures-core",
"h2",
"http",
"httparse",
"httpdate",
"itoa",
2021-10-29 20:22:14 +05:30
"language-tags",
"local-channel",
"mime",
"percent-encoding",
"pin-project-lite",
"rand",
2022-09-07 10:29:35 +05:30
"sha1",
2021-10-29 20:22:14 +05:30
"smallvec",
2022-09-07 10:29:35 +05:30
"tracing",
2021-10-29 20:22:14 +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-03-29 16:56:06 +05:30
version = "0.5.0"
2021-10-29 20:22:14 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-29 16:56:06 +05:30
checksum = "eb60846b52c118f2f04a56cc90880a274271c489b2498623d58176f8ca21fa80"
2021-10-29 20:22:14 +05:30
dependencies = [
"bytestring",
"firestorm",
"http",
"log",
"regex",
2022-03-29 18:13:26 +05:30
"serde",
2021-10-29 20:22:14 +05:30
]
[[package]]
name = "actix-rt"
2022-03-29 16:56:06 +05:30
version = "2.7.0"
2021-10-29 20:22:14 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-29 16:56:06 +05:30
checksum = "7ea16c295198e958ef31930a6ef37d0fb64e9ca3b6116e6b93a8bdae96ee1000"
2021-10-29 20:22:14 +05:30
dependencies = [
"actix-macros",
"futures-core",
"tokio",
]
[[package]]
name = "actix-server"
2022-03-29 16:56:06 +05:30
version = "2.1.1"
2021-10-29 20:22:14 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-29 16:56:06 +05:30
checksum = "0da34f8e659ea1b077bb4637948b815cd3768ad5a188fdcd74ff4d84240cd824"
2021-10-29 20:22:14 +05:30
dependencies = [
"actix-rt",
"actix-service",
"actix-utils",
"futures-core",
2022-03-29 16:56:06 +05:30
"futures-util",
"mio",
2021-10-29 20:22:14 +05:30
"num_cpus",
2022-03-29 16:56:06 +05:30
"socket2",
2021-10-29 20:22:14 +05:30
"tokio",
2022-03-29 16:56:06 +05:30
"tracing",
2021-10-29 20:22:14 +05:30
]
[[package]]
name = "actix-service"
version = "2.0.2"
2021-10-29 20:22:14 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3b894941f818cfdc7ccc4b9e60fa7e53b5042a2e8567270f9147d5591893373a"
2021-10-29 20:22:14 +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-09-07 10:29:35 +05:30
version = "4.1.0"
2021-10-29 20:22:14 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-07 10:29:35 +05:30
checksum = "a27e8fe9ba4ae613c21f677c2cfaf0696c3744030c6f485b34634e502d6bb379"
2021-10-29 20:22:14 +05:30
dependencies = [
"actix-codec",
"actix-http",
"actix-macros",
"actix-router",
"actix-rt",
"actix-server",
"actix-service",
"actix-utils",
2022-09-07 10:29:35 +05:30
"actix-web-codegen 4.0.1",
2022-04-19 02:32:35 +05:30
"ahash",
2021-10-29 20:22:14 +05:30
"bytes",
2022-03-29 16:56:06 +05:30
"bytestring",
2021-10-29 20:22:14 +05:30
"cfg-if",
"cookie",
"derive_more",
"encoding_rs",
"futures-core",
"futures-util",
"itoa",
2021-10-29 20:22:14 +05:30
"language-tags",
"log",
"mime",
"once_cell",
2022-03-29 16:56:06 +05:30
"pin-project-lite",
2021-10-29 20:22:14 +05:30
"regex",
2022-03-29 18:13:26 +05:30
"serde",
2021-10-29 20:22:14 +05:30
"serde_json",
"serde_urlencoded",
"smallvec",
"socket2",
2022-03-29 16:56:06 +05:30
"time",
2021-10-29 20:22:14 +05:30
"url",
]
[[package]]
name = "actix-web-codegen"
version = "4.0.0"
2022-09-07 10:29:35 +05:30
source = "git+https://github.com/realaravinth/actix-web#8a399b6e7ea6ffdf241d07a9e907b1afff7e0fe6"
2021-10-29 20:22:14 +05:30
dependencies = [
"actix-router",
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "actix-web-codegen"
2022-09-07 10:29:35 +05:30
version = "4.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5f270541caec49c15673b0af0e9a00143421ad4f118d2df7edcb68b627632f56"
2021-10-29 20:22:14 +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"
2022-09-07 10:29:35 +05:30
version = "0.7.19"
2021-10-29 20:22:14 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-07 10:29:35 +05:30
checksum = "b4f55bd91a0978cbfd91c457a164bab8b4001c833b7f323132c0a4e1922dd44e"
2021-10-29 20:22:14 +05:30
dependencies = [
"memchr",
]
2022-03-29 16:56:06 +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",
]
2021-10-29 20:22:14 +05:30
[[package]]
2022-03-29 18:13:26 +05:30
name = "async-trait"
2022-09-07 10:29:35 +05:30
version = "0.1.57"
2021-10-29 20:22:14 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-07 10:29:35 +05:30
checksum = "76464446b8bc32758d7e88ee1a804d9914cd9b1cb264c029899680b0be29826f"
2022-03-29 18:13:26 +05:30
dependencies = [
"proc-macro2",
"quote",
"syn",
]
2021-10-29 20:22:14 +05:30
[[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"
version = "1.1.0"
2021-10-29 20:22:14 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
2021-10-29 20:22:14 +05:30
[[package]]
name = "base64"
version = "0.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd"
[[package]]
name = "bitflags"
version = "1.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
2022-03-29 18:13:26 +05:30
[[package]]
name = "block-buffer"
2022-09-07 10:29:35 +05:30
version = "0.10.3"
2022-03-29 18:13:26 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-07 10:29:35 +05:30
checksum = "69cce20737498f97b993470a6e536b8523f0af7892a4f928cceb1ac5e52ebe7e"
2022-03-29 18:13:26 +05:30
dependencies = [
2022-09-07 10:29:35 +05:30
"generic-array",
2021-10-29 20:22:14 +05:30
]
[[package]]
2022-03-29 16:56:06 +05:30
name = "brotli"
2022-04-19 02:32:35 +05:30
version = "3.3.4"
2021-10-29 20:22:14 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-19 02:32:35 +05:30
checksum = "a1a0b1dbcc8ae29329621f8d4f0d835787c1c38bb1401979b49d13b0b305ff68"
2021-10-29 20:22:14 +05:30
dependencies = [
2022-03-29 16:56:06 +05:30
"alloc-no-stdlib",
"alloc-stdlib",
"brotli-decompressor",
2021-10-29 20:22:14 +05:30
]
[[package]]
2022-03-29 16:56:06 +05:30
name = "brotli-decompressor"
version = "2.3.2"
2021-10-29 20:22:14 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-29 16:56:06 +05:30
checksum = "59ad2d4653bf5ca36ae797b1f4bb4dbddb60ce49ca4aed8a2ce4829f60425b80"
2021-10-29 20:22:14 +05:30
dependencies = [
2022-03-29 16:56:06 +05:30
"alloc-no-stdlib",
"alloc-stdlib",
2021-10-29 20:22:14 +05:30
]
[[package]]
name = "bytes"
2022-09-07 10:29:35 +05:30
version = "1.2.1"
2021-10-29 20:22:14 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-07 10:29:35 +05:30
checksum = "ec8a7b6a70fde80372154c65702f00a0f56f3e1c36abbc6c440484be248856db"
2021-10-29 20:22:14 +05:30
[[package]]
name = "bytestring"
2022-09-07 10:29:35 +05:30
version = "1.1.0"
2021-10-29 20:22:14 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-07 10:29:35 +05:30
checksum = "86b6a75fd3048808ef06af5cd79712be8111960adaf89d90250974b38fc3928a"
2021-10-29 20:22:14 +05:30
dependencies = [
"bytes",
]
[[package]]
name = "cc"
version = "1.0.73"
2021-10-29 20:22:14 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2fff2a6927b3bb87f9595d67196a70493f627687a71d87a0d692242c33f58c11"
2021-10-29 20:22:14 +05:30
dependencies = [
"jobserver",
]
[[package]]
name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
[[package]]
name = "config"
2022-09-07 10:29:35 +05:30
version = "0.13.2"
2021-10-29 20:22:14 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-07 10:29:35 +05:30
checksum = "11f1667b8320afa80d69d8bbe40830df2c8a06003d86f73d8e003b2c48df416d"
2021-10-29 20:22:14 +05:30
dependencies = [
2022-03-29 18:13:26 +05:30
"async-trait",
"json5",
2021-10-29 20:22:14 +05:30
"lazy_static",
"nom",
2022-03-29 18:13:26 +05:30
"pathdiff",
"ron",
2021-10-29 20:22:14 +05:30
"rust-ini",
2022-03-29 18:13:26 +05:30
"serde",
2021-10-29 20:22:14 +05:30
"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-03-29 16:56:06 +05:30
version = "0.16.0"
2021-10-29 20:22:14 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-29 16:56:06 +05:30
checksum = "94d4706de1b0fa5b132270cddffa8585166037822e260a944fe161acd137ca05"
2021-10-29 20:22:14 +05:30
dependencies = [
"percent-encoding",
2022-03-29 16:56:06 +05:30
"time",
2021-10-29 20:22:14 +05:30
"version_check",
]
[[package]]
name = "cpufeatures"
2022-09-07 10:29:35 +05:30
version = "0.2.5"
2021-10-29 20:22:14 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-07 10:29:35 +05:30
checksum = "28d997bd5e24a5928dd43e46dc529867e207907fe0b239c3477d924f7f2ca320"
2021-10-29 20:22:14 +05:30
dependencies = [
"libc",
]
[[package]]
name = "crc32fast"
version = "1.3.2"
2021-10-29 20:22:14 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d"
2021-10-29 20:22:14 +05:30
dependencies = [
"cfg-if",
]
2022-03-29 16:56:06 +05:30
[[package]]
name = "crypto-common"
2022-09-07 10:29:35 +05:30
version = "0.1.6"
2022-03-29 16:56:06 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-07 10:29:35 +05:30
checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
2022-03-29 16:56:06 +05:30
dependencies = [
2022-09-07 10:29:35 +05:30
"generic-array",
2022-03-29 16:56:06 +05:30
"typenum",
]
2021-10-29 20:22:14 +05:30
[[package]]
name = "derive_more"
version = "0.99.17"
2021-10-29 20:22:14 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321"
2021-10-29 20:22:14 +05:30
dependencies = [
"convert_case",
"proc-macro2",
"quote",
2022-03-29 16:56:06 +05:30
"rustc_version",
2021-10-29 20:22:14 +05:30
"syn",
]
[[package]]
name = "digest"
2022-03-29 16:56:06 +05:30
version = "0.10.3"
2021-10-29 20:22:14 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-29 16:56:06 +05:30
checksum = "f2fb860ca6fafa5552fb6d0e816a69c8e49f0908bf524e30a90d97c85892d506"
2021-10-29 20:22:14 +05:30
dependencies = [
2022-09-07 10:29:35 +05:30
"block-buffer",
2022-03-29 16:56:06 +05:30
"crypto-common",
2021-10-29 20:22:14 +05:30
]
2022-03-29 18:13:26 +05:30
[[package]]
name = "dlv-list"
2022-04-19 02:32:35 +05:30
version = "0.3.0"
2022-03-29 18:13:26 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-19 02:32:35 +05:30
checksum = "0688c2a7f92e427f44895cd63841bff7b29f8d7a1648b9e7e07a4a365b2e1257"
2022-03-29 18:13:26 +05:30
2021-10-29 20:22:14 +05:30
[[package]]
name = "encoding_rs"
2022-04-19 02:32:35 +05:30
version = "0.8.31"
2021-10-29 20:22:14 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-19 02:32:35 +05:30
checksum = "9852635589dc9f9ea1b6fe9f05b50ef208c85c834a562f0c6abb1c475736ec2b"
2021-10-29 20:22:14 +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",
]
[[package]]
name = "firestorm"
2022-09-07 10:29:35 +05:30
version = "0.5.1"
2021-10-29 20:22:14 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-07 10:29:35 +05:30
checksum = "2c5f6c2c942da57e2aaaa84b8a521489486f14e75e7fa91dab70aba913975f98"
2021-10-29 20:22:14 +05:30
[[package]]
name = "flate2"
2022-09-07 10:29:35 +05:30
version = "1.0.24"
2021-10-29 20:22:14 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-07 10:29:35 +05:30
checksum = "f82b0f4c27ad9f8bfd1f3208d882da2b09c301bc1c828fd3a00d0216d2fbbff6"
2021-10-29 20:22:14 +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 = "form_urlencoded"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5fc25a87fa4fd2094bffb06925852034d90a17f0d1e05197d4956d3555752191"
dependencies = [
"matches",
"percent-encoding",
]
[[package]]
name = "futures-core"
2022-09-07 10:29:35 +05:30
version = "0.3.24"
2021-10-29 20:22:14 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-07 10:29:35 +05:30
checksum = "4e5aa3de05362c3fb88de6531e6296e85cde7739cccad4b9dfeeb7f6ebce56bf"
2021-10-29 20:22:14 +05:30
[[package]]
name = "futures-sink"
2022-09-07 10:29:35 +05:30
version = "0.3.24"
2021-10-29 20:22:14 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-07 10:29:35 +05:30
checksum = "21b20ba5a92e727ba30e72834706623d94ac93a725410b6a6b6fbc1b07f7ba56"
2021-10-29 20:22:14 +05:30
[[package]]
name = "futures-task"
2022-09-07 10:29:35 +05:30
version = "0.3.24"
2021-10-29 20:22:14 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-07 10:29:35 +05:30
checksum = "a6508c467c73851293f390476d4491cf4d227dbabcd4170f3bb6044959b294f1"
2021-10-29 20:22:14 +05:30
[[package]]
name = "futures-util"
2022-09-07 10:29:35 +05:30
version = "0.3.24"
2021-10-29 20:22:14 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-07 10:29:35 +05:30
checksum = "44fb6cb1be61cc1d2e43b262516aafcf63b241cffdb1d3fa115f91d9c7b09c90"
2021-10-29 20:22:14 +05:30
dependencies = [
"futures-core",
"futures-task",
"pin-project-lite",
"pin-utils",
]
2022-03-29 18:13:26 +05:30
[[package]]
name = "generic-array"
2022-09-07 10:29:35 +05:30
version = "0.14.6"
2022-03-29 18:13:26 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-07 10:29:35 +05:30
checksum = "bff49e947297f3312447abdca79f45f4738097cc82b06e72054d2223f601f1b9"
2021-10-29 20:22:14 +05:30
dependencies = [
"typenum",
"version_check",
]
[[package]]
name = "getrandom"
2022-09-07 10:29:35 +05:30
version = "0.2.7"
2021-10-29 20:22:14 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-07 10:29:35 +05:30
checksum = "4eb1a864a501629691edf6c15a593b7a51eebaa1e8468e9ddc623de7c9b58ec6"
2021-10-29 20:22:14 +05:30
dependencies = [
"cfg-if",
"libc",
2022-09-07 10:29:35 +05:30
"wasi",
2021-10-29 20:22:14 +05:30
]
[[package]]
name = "git2"
2022-09-07 10:29:35 +05:30
version = "0.14.4"
2021-10-29 20:22:14 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-07 10:29:35 +05:30
checksum = "d0155506aab710a86160ddb504a480d2964d7ab5b9e62419be69e0032bc5931c"
2021-10-29 20:22:14 +05:30
dependencies = [
"bitflags",
"libc",
"libgit2-sys",
"log",
"openssl-probe",
"openssl-sys",
"url",
]
[[package]]
name = "h2"
2022-09-07 10:29:35 +05:30
version = "0.3.14"
2021-10-29 20:22:14 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-07 10:29:35 +05:30
checksum = "5ca32592cf21ac7ccab1825cd87f6c9b3d9022c44d086172ed0966bec8af30be"
2021-10-29 20:22:14 +05:30
dependencies = [
"bytes",
"fnv",
"futures-core",
"futures-sink",
"futures-util",
"http",
"indexmap",
"slab",
"tokio",
2022-04-19 02:32:35 +05:30
"tokio-util",
2021-10-29 20:22:14 +05:30
"tracing",
]
2022-03-29 18:13:26 +05:30
[[package]]
name = "hashbrown"
2022-09-07 10:29:35 +05:30
version = "0.12.3"
2021-10-29 20:22:14 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-07 10:29:35 +05:30
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
2022-04-19 02:32:35 +05:30
dependencies = [
"ahash",
]
2021-10-29 20:22:14 +05:30
[[package]]
name = "hermit-abi"
version = "0.1.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
dependencies = [
"libc",
]
[[package]]
name = "http"
2022-09-07 10:29:35 +05:30
version = "0.2.8"
2021-10-29 20:22:14 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-07 10:29:35 +05:30
checksum = "75f43d41e26995c17e71ee126451dd3941010b0514a81a9d11f3b341debc2399"
2021-10-29 20:22:14 +05:30
dependencies = [
"bytes",
"fnv",
"itoa",
2021-10-29 20:22:14 +05:30
]
[[package]]
name = "httparse"
2022-09-07 10:29:35 +05:30
version = "1.8.0"
2021-10-29 20:22:14 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-07 10:29:35 +05:30
checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904"
2021-10-29 20:22:14 +05:30
[[package]]
name = "httpdate"
version = "1.0.2"
2021-10-29 20:22:14 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421"
2021-10-29 20:22:14 +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 = "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-09-07 10:29:35 +05:30
version = "1.9.1"
2021-10-29 20:22:14 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-07 10:29:35 +05:30
checksum = "10a35a97730320ffe8e2d410b5d3b69279b98d2c14bdb8b70ea89ecf7888d41e"
2021-10-29 20:22:14 +05:30
dependencies = [
"autocfg",
2022-09-07 10:29:35 +05:30
"hashbrown",
2021-10-29 20:22:14 +05:30
]
2022-03-29 16:56:06 +05:30
[[package]]
name = "itoa"
2022-09-07 10:29:35 +05:30
version = "1.0.3"
2022-03-29 16:56:06 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-07 10:29:35 +05:30
checksum = "6c8af84674fe1f223a982c933a0ee1086ac4d4052aa0fb8060c12c6ad838e754"
2022-03-29 16:56:06 +05:30
2021-10-29 20:22:14 +05:30
[[package]]
name = "jobserver"
version = "0.1.24"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "af25a77299a7f711a01975c35a6a424eb6862092cc2d6c72c4ed6cbc56dfc1fa"
dependencies = [
"libc",
]
2022-03-29 18:13:26 +05:30
[[package]]
name = "json5"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "96b0db21af676c1ce64250b5f40f3ce2cf27e4e47cb91ed91eb6fe9350b430c1"
dependencies = [
"pest",
"pest_derive",
"serde",
]
2021-10-29 20:22:14 +05:30
[[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"
[[package]]
name = "libc"
2022-09-07 10:29:35 +05:30
version = "0.2.132"
2021-10-29 20:22:14 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-07 10:29:35 +05:30
checksum = "8371e4e5341c3a96db127eb2465ac681ced4c433e01dd0e938adbef26ba93ba5"
2021-10-29 20:22:14 +05:30
[[package]]
name = "libgit2-sys"
2022-09-07 10:29:35 +05:30
version = "0.13.4+1.4.2"
2021-10-29 20:22:14 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-07 10:29:35 +05:30
checksum = "d0fa6563431ede25f5cc7f6d803c6afbc1c5d3ad3d4925d12c882bf2b526f5d1"
2021-10-29 20:22:14 +05:30
dependencies = [
"cc",
"libc",
"libssh2-sys",
"libz-sys",
"openssl-sys",
"pkg-config",
]
[[package]]
name = "libssh2-sys"
version = "0.2.23"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b094a36eb4b8b8c8a7b4b8ae43b2944502be3e59cd87687595cf6b0a71b3f4ca"
dependencies = [
"cc",
"libc",
"libz-sys",
"openssl-sys",
"pkg-config",
"vcpkg",
]
[[package]]
name = "libz-sys"
2022-09-07 10:29:35 +05:30
version = "1.1.8"
2021-10-29 20:22:14 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-07 10:29:35 +05:30
checksum = "9702761c3935f8cc2f101793272e202c72b99da8f4224a19ddcf1279a6450bbf"
2021-10-29 20:22:14 +05:30
dependencies = [
"cc",
"libc",
"pkg-config",
"vcpkg",
]
[[package]]
name = "linked-hash-map"
2022-09-07 10:29:35 +05:30
version = "0.5.6"
2021-10-29 20:22:14 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-07 10:29:35 +05:30
checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f"
2021-10-29 20:22:14 +05:30
[[package]]
name = "local-channel"
2022-09-07 10:29:35 +05:30
version = "0.1.3"
2021-10-29 20:22:14 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-07 10:29:35 +05:30
checksum = "7f303ec0e94c6c54447f84f3b0ef7af769858a9c4ef56ef2a986d3dcd4c3fc9c"
2021-10-29 20:22:14 +05:30
dependencies = [
"futures-core",
"futures-sink",
"futures-util",
"local-waker",
]
[[package]]
name = "local-waker"
2022-09-07 10:29:35 +05:30
version = "0.1.3"
2021-10-29 20:22:14 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-07 10:29:35 +05:30
checksum = "e34f76eb3611940e0e7d53a9aaa4e6a3151f69541a282fd0dad5571420c53ff1"
2021-10-29 20:22:14 +05:30
[[package]]
name = "lock_api"
2022-09-07 10:29:35 +05:30
version = "0.4.8"
2021-10-29 20:22:14 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-07 10:29:35 +05:30
checksum = "9f80bf5aacaf25cbfc8210d1cfb718f2bf3b11c4c54e5afe36c236853a8ec390"
2021-10-29 20:22:14 +05:30
dependencies = [
2022-04-19 02:32:35 +05:30
"autocfg",
2021-10-29 20:22:14 +05:30
"scopeguard",
]
[[package]]
name = "log"
2022-09-07 10:29:35 +05:30
version = "0.4.17"
2021-10-29 20:22:14 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-07 10:29:35 +05:30
checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
2021-10-29 20:22:14 +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-09-07 10:29:35 +05:30
version = "2.5.0"
2021-10-29 20:22:14 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-07 10:29:35 +05:30
checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
2021-10-29 20:22:14 +05:30
[[package]]
name = "mime"
version = "0.3.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2a60c7ce501c71e03a9c9c0d35b861413ae925bd979cc7a4e30d060069aaac8d"
2022-09-07 10:29:35 +05:30
[[package]]
name = "mime_guess"
version = "2.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4192263c238a5f0d0c6bfd21f336a313a4ce1c450542449ca191bb657b4642ef"
dependencies = [
"mime",
"unicase",
]
2022-03-29 18:13:26 +05:30
[[package]]
name = "minimal-lexical"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
2021-10-29 20:22:14 +05:30
[[package]]
name = "miniz_oxide"
2022-09-07 10:29:35 +05:30
version = "0.5.4"
2021-10-29 20:22:14 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-07 10:29:35 +05:30
checksum = "96590ba8f175222643a85693f33d26e9c8a015f599c216509b1a6894af675d34"
2021-10-29 20:22:14 +05:30
dependencies = [
"adler",
]
2022-03-29 16:56:06 +05:30
[[package]]
name = "mio"
2022-09-07 10:29:35 +05:30
version = "0.8.4"
2022-03-29 16:56:06 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-07 10:29:35 +05:30
checksum = "57ee1c23c7c63b0c9250c339ffdc69255f110b298b901b9f6c82547b7b87caaf"
2022-03-29 16:56:06 +05:30
dependencies = [
"libc",
"log",
2022-09-07 10:29:35 +05:30
"wasi",
"windows-sys",
2021-10-29 20:22:14 +05:30
]
2022-03-29 18:02:32 +05:30
[[package]]
name = "mktemp"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "975de676448231fcde04b9149d2543077e166b78fc29eae5aa219e7928410da2"
dependencies = [
"uuid",
]
2021-10-29 20:22:14 +05:30
[[package]]
name = "nom"
2022-03-29 18:13:26 +05:30
version = "7.1.1"
2021-10-29 20:22:14 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-29 18:13:26 +05:30
checksum = "a8903e5a29a317527874d0402f867152a3d21c908bb0b933e416c65e301d4c36"
2021-10-29 20:22:14 +05:30
dependencies = [
"memchr",
2022-03-29 18:13:26 +05:30
"minimal-lexical",
2021-10-29 20:22:14 +05:30
]
[[package]]
name = "num_cpus"
version = "1.13.1"
2021-10-29 20:22:14 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "19e64526ebdee182341572e50e9ad03965aa510cd94427a4549448f285e957a1"
2021-10-29 20:22:14 +05:30
dependencies = [
"hermit-abi",
"libc",
]
[[package]]
2022-09-07 10:29:35 +05:30
name = "num_enum"
version = "0.5.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-07 10:29:35 +05:30
checksum = "cf5395665662ef45796a4ff5486c5d41d29e0c09640af4c5f17fd94ee2c119c9"
dependencies = [
2022-09-07 10:29:35 +05:30
"num_enum_derive",
]
2021-10-29 20:22:14 +05:30
[[package]]
2022-09-07 10:29:35 +05:30
name = "num_enum_derive"
version = "0.5.7"
2021-10-29 20:22:14 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-07 10:29:35 +05:30
checksum = "3b0498641e53dd6ac1a4f22547548caa6864cc4933784319cd1775271c5a46ce"
dependencies = [
"proc-macro-crate",
"proc-macro2",
"quote",
"syn",
]
2021-10-29 20:22:14 +05:30
2022-03-29 18:13:26 +05:30
[[package]]
2022-09-07 10:29:35 +05:30
name = "num_threads"
version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2819ce041d2ee131036f4fc9d6ae7ae125a3a40e97ba64d04fe799ad9dabbb44"
dependencies = [
"libc",
]
[[package]]
name = "once_cell"
version = "1.14.0"
2022-03-29 18:13:26 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-07 10:29:35 +05:30
checksum = "2f7254b99e31cad77da24b08ebf628882739a608578bb1bcdfc1f9c21260d7c0"
2022-03-29 18:13:26 +05:30
2021-10-29 20:22:14 +05:30
[[package]]
name = "openssl-probe"
version = "0.1.5"
2021-10-29 20:22:14 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
2021-10-29 20:22:14 +05:30
[[package]]
name = "openssl-sys"
2022-09-07 10:29:35 +05:30
version = "0.9.75"
2021-10-29 20:22:14 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-07 10:29:35 +05:30
checksum = "e5f9bd0c2710541a3cda73d6f9ac4f1b240de4ae261065d309dbe73d9dceb42f"
2021-10-29 20:22:14 +05:30
dependencies = [
"autocfg",
"cc",
"libc",
"pkg-config",
"vcpkg",
]
2022-03-29 18:13:26 +05:30
[[package]]
name = "ordered-multimap"
2022-04-19 02:32:35 +05:30
version = "0.4.3"
2022-03-29 18:13:26 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-19 02:32:35 +05:30
checksum = "ccd746e37177e1711c20dd619a1620f34f5c8b569c53590a72dedd5344d8924a"
2022-03-29 18:13:26 +05:30
dependencies = [
"dlv-list",
2022-09-07 10:29:35 +05:30
"hashbrown",
2022-03-29 18:13:26 +05:30
]
2021-10-29 20:22:14 +05:30
[[package]]
name = "pages"
version = "0.1.0"
dependencies = [
"actix-http",
"actix-rt",
"actix-web",
2022-09-07 10:29:35 +05:30
"actix-web-codegen 4.0.0",
2021-10-29 20:22:14 +05:30
"config",
"derive_more",
"git2",
"lazy_static",
"log",
2022-09-07 10:29:35 +05:30
"mime_guess",
2022-03-29 18:02:32 +05:30
"mktemp",
"num_cpus",
2022-09-07 10:29:35 +05:30
"num_enum",
2021-10-29 20:22:14 +05:30
"pretty_env_logger",
2022-03-29 18:13:26 +05:30
"serde",
2021-10-29 20:22:14 +05:30
"serde_json",
2022-04-26 19:56:59 +05:30
"tokio",
2021-10-29 20:22:14 +05:30
"url",
]
[[package]]
name = "parking_lot"
2022-09-07 10:29:35 +05:30
version = "0.12.1"
2021-10-29 20:22:14 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-07 10:29:35 +05:30
checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
2021-10-29 20:22:14 +05:30
dependencies = [
"lock_api",
"parking_lot_core",
]
[[package]]
name = "parking_lot_core"
2022-09-07 10:29:35 +05:30
version = "0.9.3"
2021-10-29 20:22:14 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-07 10:29:35 +05:30
checksum = "09a279cbf25cb0757810394fbc1e359949b59e348145c643a939a525692e6929"
2021-10-29 20:22:14 +05:30
dependencies = [
"cfg-if",
"libc",
"redox_syscall",
"smallvec",
"windows-sys",
2021-10-29 20:22:14 +05:30
]
[[package]]
name = "paste"
2022-09-07 10:29:35 +05:30
version = "1.0.9"
2021-10-29 20:22:14 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-07 10:29:35 +05:30
checksum = "b1de2e551fb905ac83f73f7aedf2f0cb4a0da7e35efa24a202a936269f1f18e1"
2021-10-29 20:22:14 +05:30
2022-03-29 18:13:26 +05:30
[[package]]
name = "pathdiff"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8835116a5c179084a830efb3adc117ab007512b535bc1a21c991d3b32a6b44dd"
2021-10-29 20:22:14 +05:30
[[package]]
name = "percent-encoding"
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e"
2022-03-29 18:13:26 +05:30
[[package]]
name = "pest"
2022-09-07 10:29:35 +05:30
version = "2.3.0"
2022-03-29 18:13:26 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-07 10:29:35 +05:30
checksum = "4b0560d531d1febc25a3c9398a62a71256c0178f2e3443baedd9ad4bb8c9deb4"
2022-03-29 18:13:26 +05:30
dependencies = [
2022-09-07 10:29:35 +05:30
"thiserror",
2022-03-29 18:13:26 +05:30
"ucd-trie",
]
[[package]]
name = "pest_derive"
2022-09-07 10:29:35 +05:30
version = "2.3.0"
2022-03-29 18:13:26 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-07 10:29:35 +05:30
checksum = "905708f7f674518498c1f8d644481440f476d39ca6ecae83319bba7c6c12da91"
2022-03-29 18:13:26 +05:30
dependencies = [
"pest",
"pest_generator",
]
[[package]]
name = "pest_generator"
2022-09-07 10:29:35 +05:30
version = "2.3.0"
2022-03-29 18:13:26 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-07 10:29:35 +05:30
checksum = "5803d8284a629cc999094ecd630f55e91b561a1d1ba75e233b00ae13b91a69ad"
2022-03-29 18:13:26 +05:30
dependencies = [
"pest",
"pest_meta",
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "pest_meta"
2022-09-07 10:29:35 +05:30
version = "2.3.0"
2022-03-29 18:13:26 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-07 10:29:35 +05:30
checksum = "1538eb784f07615c6d9a8ab061089c6c54a344c5b4301db51990ca1c241e8c04"
2022-03-29 18:13:26 +05:30
dependencies = [
2022-09-07 10:29:35 +05:30
"once_cell",
2022-03-29 18:13:26 +05:30
"pest",
2022-09-07 10:29:35 +05:30
"sha-1",
2022-03-29 18:13:26 +05:30
]
2021-10-29 20:22:14 +05:30
[[package]]
name = "pin-project-lite"
2022-09-07 10:29:35 +05:30
version = "0.2.9"
2021-10-29 20:22:14 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-07 10:29:35 +05:30
checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116"
2021-10-29 20:22:14 +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-04-19 02:32:35 +05:30
version = "0.3.25"
2021-10-29 20:22:14 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-19 02:32:35 +05:30
checksum = "1df8c4ec4b0627e53bdf214615ad287367e482558cf84b109250b37464dc03ae"
2021-10-29 20:22:14 +05:30
[[package]]
name = "ppv-lite86"
version = "0.2.16"
2021-10-29 20:22:14 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eb9f9e6e233e5c4a35559a617bf40a4ec447db2e84c20b55a6f83167b7e57872"
2021-10-29 20:22:14 +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",
]
2022-09-07 10:29:35 +05:30
[[package]]
name = "proc-macro-crate"
version = "1.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eda0fc3b0fb7c975631757e14d9049da17374063edb6ebbcbc54d880d4fe94e9"
dependencies = [
"once_cell",
"thiserror",
"toml",
]
2021-10-29 20:22:14 +05:30
[[package]]
name = "proc-macro2"
2022-09-07 10:29:35 +05:30
version = "1.0.43"
2021-10-29 20:22:14 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-07 10:29:35 +05:30
checksum = "0a2ca2c61bc9f3d74d2886294ab7b9853abd9c1ad903a3ac7815c58989bb7bab"
2021-10-29 20:22:14 +05:30
dependencies = [
2022-09-07 10:29:35 +05:30
"unicode-ident",
2021-10-29 20:22:14 +05:30
]
[[package]]
name = "quick-error"
version = "1.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
[[package]]
name = "quote"
2022-09-07 10:29:35 +05:30
version = "1.0.21"
2021-10-29 20:22:14 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-07 10:29:35 +05:30
checksum = "bbe448f377a7d6961e30f5955f9b8d106c3f5e449d493ee1b125c1d43c2b5179"
2021-10-29 20:22:14 +05:30
dependencies = [
"proc-macro2",
]
[[package]]
name = "rand"
version = "0.8.5"
2021-10-29 20:22:14 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
2021-10-29 20:22:14 +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-09-07 10:29:35 +05:30
version = "0.2.16"
2021-10-29 20:22:14 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-07 10:29:35 +05:30
checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
2021-10-29 20:22:14 +05:30
dependencies = [
"bitflags",
]
[[package]]
name = "regex"
2022-09-07 10:29:35 +05:30
version = "1.6.0"
2021-10-29 20:22:14 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-07 10:29:35 +05:30
checksum = "4c4eb3267174b8c6c2f654116623910a0fef09c4753f8dd83db29c48a0df988b"
2021-10-29 20:22:14 +05:30
dependencies = [
"aho-corasick",
"memchr",
"regex-syntax",
]
[[package]]
name = "regex-syntax"
2022-09-07 10:29:35 +05:30
version = "0.6.27"
2021-10-29 20:22:14 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-07 10:29:35 +05:30
checksum = "a3f87b73ce11b1619a3c6332f45341e0047173771e8b8b73f87bfeefb7b56244"
2021-10-29 20:22:14 +05:30
2022-03-29 18:13:26 +05:30
[[package]]
name = "ron"
2022-09-07 10:29:35 +05:30
version = "0.7.1"
2022-03-29 18:13:26 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-07 10:29:35 +05:30
checksum = "88073939a61e5b7680558e6be56b419e208420c2adb92be54921fa6b72283f1a"
2022-03-29 18:13:26 +05:30
dependencies = [
"base64",
"bitflags",
"serde",
]
2021-10-29 20:22:14 +05:30
[[package]]
name = "rust-ini"
2022-04-19 02:32:35 +05:30
version = "0.18.0"
2021-10-29 20:22:14 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-19 02:32:35 +05:30
checksum = "f6d5f2436026b4f6e79dc829837d467cc7e9a55ee40e750d716713540715a2df"
2022-03-29 18:13:26 +05:30
dependencies = [
"cfg-if",
"ordered-multimap",
]
2021-10-29 20:22:14 +05:30
[[package]]
name = "rustc_version"
version = "0.4.0"
2021-10-29 20:22:14 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
2021-10-29 20:22:14 +05:30
dependencies = [
2022-03-29 16:56:06 +05:30
"semver",
2021-10-29 20:22:14 +05:30
]
[[package]]
name = "ryu"
2022-09-07 10:29:35 +05:30
version = "1.0.11"
2021-10-29 20:22:14 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-07 10:29:35 +05:30
checksum = "4501abdff3ae82a1c1b477a17252eb69cee9e66eb915c1abaa4f44d873df9f09"
2021-10-29 20:22:14 +05:30
[[package]]
name = "scopeguard"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
[[package]]
name = "semver"
2022-09-07 10:29:35 +05:30
version = "1.0.13"
2021-10-29 20:22:14 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-07 10:29:35 +05:30
checksum = "93f6841e709003d68bb2deee8c343572bf446003ec20a583e76f7b15cebf3711"
2021-10-29 20:22:14 +05:30
[[package]]
name = "serde"
2022-09-07 10:29:35 +05:30
version = "1.0.144"
2021-10-29 20:22:14 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-07 10:29:35 +05:30
checksum = "0f747710de3dcd43b88c9168773254e809d8ddbdf9653b84e2554ab219f17860"
2021-10-29 20:22:14 +05:30
dependencies = [
"serde_derive",
]
[[package]]
name = "serde_derive"
2022-09-07 10:29:35 +05:30
version = "1.0.144"
2021-10-29 20:22:14 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-07 10:29:35 +05:30
checksum = "94ed3a816fb1d101812f83e789f888322c34e291f894f19590dc310963e87a00"
2021-10-29 20:22:14 +05:30
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "serde_json"
2022-09-07 10:29:35 +05:30
version = "1.0.85"
2021-10-29 20:22:14 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-07 10:29:35 +05:30
checksum = "e55a28e3aaef9d5ce0506d0a14dbba8054ddc7e499ef522dd8b26859ec9d4a44"
2021-10-29 20:22:14 +05:30
dependencies = [
"itoa",
2021-10-29 20:22:14 +05:30
"ryu",
2022-03-29 18:13:26 +05:30
"serde",
2021-10-29 20:22:14 +05:30
]
[[package]]
name = "serde_urlencoded"
version = "0.7.1"
2021-10-29 20:22:14 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
2021-10-29 20:22:14 +05:30
dependencies = [
"form_urlencoded",
"itoa",
2021-10-29 20:22:14 +05:30
"ryu",
2022-03-29 18:13:26 +05:30
"serde",
]
[[package]]
name = "sha-1"
2022-09-07 10:29:35 +05:30
version = "0.10.0"
2022-03-29 18:13:26 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-07 10:29:35 +05:30
checksum = "028f48d513f9678cda28f6e4064755b3fbb2af6acd672f2c209b62323f7aea0f"
2022-03-29 18:13:26 +05:30
dependencies = [
2022-09-07 10:29:35 +05:30
"cfg-if",
"cpufeatures",
"digest",
2021-10-29 20:22:14 +05:30
]
[[package]]
2022-09-07 10:29:35 +05:30
name = "sha1"
version = "0.10.4"
2021-10-29 20:22:14 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-07 10:29:35 +05:30
checksum = "006769ba83e921b3085caa8334186b00cf92b4cb1a6cf4632fbccc8eff5c7549"
2021-10-29 20:22:14 +05:30
dependencies = [
"cfg-if",
"cpufeatures",
2022-09-07 10:29:35 +05:30
"digest",
2021-10-29 20:22:14 +05:30
]
[[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-09-07 10:29:35 +05:30
version = "0.4.7"
2021-10-29 20:22:14 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-07 10:29:35 +05:30
checksum = "4614a76b2a8be0058caa9dbbaf66d988527d86d003c11a94fbd335d7661edcef"
dependencies = [
"autocfg",
]
2021-10-29 20:22:14 +05:30
[[package]]
name = "smallvec"
2022-09-07 10:29:35 +05:30
version = "1.9.0"
2021-10-29 20:22:14 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-07 10:29:35 +05:30
checksum = "2fd0db749597d91ff862fd1d55ea87f7855a744a8425a64695b6fca237d1dad1"
2021-10-29 20:22:14 +05:30
[[package]]
name = "socket2"
2022-09-07 10:29:35 +05:30
version = "0.4.7"
2021-10-29 20:22:14 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-07 10:29:35 +05:30
checksum = "02e2d2db9033d13a1567121ddd7a095ee144db4e1ca1b1bda3419bc0da294ebd"
2021-10-29 20:22:14 +05:30
dependencies = [
"libc",
"winapi",
]
[[package]]
name = "syn"
2022-09-07 10:29:35 +05:30
version = "1.0.99"
2021-10-29 20:22:14 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-07 10:29:35 +05:30
checksum = "58dbef6ec655055e20b86b15a8cc6d439cca19b667537ac6a1369572d151ab13"
2021-10-29 20:22:14 +05:30
dependencies = [
"proc-macro2",
"quote",
2022-09-07 10:29:35 +05:30
"unicode-ident",
2021-10-29 20:22:14 +05:30
]
[[package]]
name = "termcolor"
version = "1.1.3"
2021-10-29 20:22:14 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bab24d30b911b2376f3a13cc2cd443142f0c81dda04c118693e35b3835757755"
2021-10-29 20:22:14 +05:30
dependencies = [
"winapi-util",
]
2022-09-07 10:29:35 +05:30
[[package]]
name = "thiserror"
version = "1.0.34"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8c1b05ca9d106ba7d2e31a9dab4a64e7be2cce415321966ea3132c49a656e252"
dependencies = [
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
version = "1.0.34"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e8f2591983642de85c921015f3f070c665a197ed69e417af436115e3a1407487"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
2021-10-29 20:22:14 +05:30
[[package]]
name = "time"
2022-09-07 10:29:35 +05:30
version = "0.3.14"
2021-10-29 20:22:14 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-07 10:29:35 +05:30
checksum = "3c3f9a28b618c3a6b9251b6908e9c99e04b9e5c02e6581ccbb67d59c34ef7f9b"
2021-10-29 20:22:14 +05:30
dependencies = [
"itoa",
2021-10-29 20:22:14 +05:30
"libc",
"num_threads",
2022-03-29 16:56:06 +05:30
"time-macros",
2021-10-29 20:22:14 +05:30
]
[[package]]
name = "time-macros"
version = "0.2.4"
2021-10-29 20:22:14 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "42657b1a6f4d817cda8e7a0ace261fe0cc946cf3a80314390b22cc61ae080792"
2021-10-29 20:22:14 +05:30
[[package]]
name = "tinyvec"
2022-09-07 10:29:35 +05:30
version = "1.6.0"
2021-10-29 20:22:14 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-07 10:29:35 +05:30
checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
2021-10-29 20:22:14 +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-09-07 10:29:35 +05:30
version = "1.21.0"
2021-10-29 20:22:14 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-07 10:29:35 +05:30
checksum = "89797afd69d206ccd11fb0ea560a44bbb87731d020670e79416d442919257d42"
2021-10-29 20:22:14 +05:30
dependencies = [
2022-09-07 10:29:35 +05:30
"autocfg",
2021-10-29 20:22:14 +05:30
"bytes",
"libc",
"memchr",
"mio",
2021-10-29 20:22:14 +05:30
"once_cell",
"parking_lot",
"pin-project-lite",
"signal-hook-registry",
"socket2",
2021-10-29 20:22:14 +05:30
"winapi",
]
2022-03-29 16:56:06 +05:30
[[package]]
name = "tokio-util"
2022-09-07 10:29:35 +05:30
version = "0.7.3"
2022-03-29 16:56:06 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-07 10:29:35 +05:30
checksum = "cc463cd8deddc3770d20f9852143d50bf6094e640b485cb2e189a2099085ff45"
2022-03-29 16:56:06 +05:30
dependencies = [
"bytes",
"futures-core",
"futures-sink",
"pin-project-lite",
"tokio",
"tracing",
2022-03-29 16:56:06 +05:30
]
2021-10-29 20:22:14 +05:30
[[package]]
name = "toml"
2022-04-19 02:32:35 +05:30
version = "0.5.9"
2021-10-29 20:22:14 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-19 02:32:35 +05:30
checksum = "8d82e1a7758622a465f8cee077614c73484dac5b836c02ff6a40d5d1010324d7"
2021-10-29 20:22:14 +05:30
dependencies = [
2022-03-29 18:13:26 +05:30
"serde",
2021-10-29 20:22:14 +05:30
]
[[package]]
name = "tracing"
2022-09-07 10:29:35 +05:30
version = "0.1.36"
2021-10-29 20:22:14 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-07 10:29:35 +05:30
checksum = "2fce9567bd60a67d08a16488756721ba392f24f29006402881e43b19aac64307"
2021-10-29 20:22:14 +05:30
dependencies = [
"cfg-if",
2022-03-29 16:56:06 +05:30
"log",
2021-10-29 20:22:14 +05:30
"pin-project-lite",
"tracing-core",
]
[[package]]
name = "tracing-core"
2022-09-07 10:29:35 +05:30
version = "0.1.29"
2021-10-29 20:22:14 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-07 10:29:35 +05:30
checksum = "5aeea4303076558a00714b823f9ad67d58a3bbda1df83d8827d21193156e22f7"
2021-10-29 20:22:14 +05:30
dependencies = [
2022-09-07 10:29:35 +05:30
"once_cell",
2021-10-29 20:22:14 +05:30
]
[[package]]
name = "typenum"
version = "1.15.0"
2021-10-29 20:22:14 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987"
2021-10-29 20:22:14 +05:30
2022-03-29 18:13:26 +05:30
[[package]]
name = "ucd-trie"
2022-09-07 10:29:35 +05:30
version = "0.1.5"
2022-03-29 18:13:26 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-07 10:29:35 +05:30
checksum = "9e79c4d996edb816c91e4308506774452e55e95c3c9de07b6729e17e15a5ef81"
[[package]]
name = "unicase"
version = "2.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6"
dependencies = [
"version_check",
]
2022-03-29 18:13:26 +05:30
2021-10-29 20:22:14 +05:30
[[package]]
name = "unicode-bidi"
2022-09-07 10:29:35 +05:30
version = "0.3.8"
2021-10-29 20:22:14 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-07 10:29:35 +05:30
checksum = "099b7128301d285f79ddd55b9a83d5e6b9e97c92e0ea0daebee7263e932de992"
[[package]]
name = "unicode-ident"
version = "1.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c4f5b37a154999a8f3f98cc23a628d850e154479cd94decf3414696e12e31aaf"
2021-10-29 20:22:14 +05:30
[[package]]
name = "unicode-normalization"
2022-09-07 10:29:35 +05:30
version = "0.1.21"
2021-10-29 20:22:14 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-07 10:29:35 +05:30
checksum = "854cbdc4f7bc6ae19c820d44abdc3277ac3e1b2b93db20a636825d9322fb60e6"
2021-10-29 20:22:14 +05:30
dependencies = [
"tinyvec",
]
[[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",
]
2022-03-29 18:02:32 +05:30
[[package]]
name = "uuid"
version = "0.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bc5cf98d8186244414c848017f0e2676b3fcb46807f6668a97dfe67359a3c4b7"
dependencies = [
"getrandom",
]
2021-10-29 20:22:14 +05:30
[[package]]
name = "vcpkg"
version = "0.2.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
[[package]]
name = "version_check"
version = "0.9.4"
2021-10-29 20:22:14 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
2021-10-29 20:22:14 +05:30
[[package]]
2022-03-29 16:56:06 +05:30
name = "wasi"
version = "0.11.0+wasi-snapshot-preview1"
2021-10-29 20:22:14 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-29 16:56:06 +05:30
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
2021-10-29 20:22:14 +05:30
[[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"
[[package]]
name = "windows-sys"
2022-09-07 10:29:35 +05:30
version = "0.36.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-07 10:29:35 +05:30
checksum = "ea04155a16a59f9eab786fe12a4a450e75cdb175f9e0d80da1e17db09f55b8d2"
dependencies = [
"windows_aarch64_msvc",
"windows_i686_gnu",
"windows_i686_msvc",
"windows_x86_64_gnu",
"windows_x86_64_msvc",
]
[[package]]
name = "windows_aarch64_msvc"
2022-09-07 10:29:35 +05:30
version = "0.36.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-07 10:29:35 +05:30
checksum = "9bb8c3fd39ade2d67e9874ac4f3db21f0d710bee00fe7cab16949ec184eeaa47"
[[package]]
name = "windows_i686_gnu"
2022-09-07 10:29:35 +05:30
version = "0.36.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-07 10:29:35 +05:30
checksum = "180e6ccf01daf4c426b846dfc66db1fc518f074baa793aa7d9b9aaeffad6a3b6"
[[package]]
name = "windows_i686_msvc"
2022-09-07 10:29:35 +05:30
version = "0.36.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-07 10:29:35 +05:30
checksum = "e2e7917148b2812d1eeafaeb22a97e4813dfa60a3f8f78ebe204bcc88f12f024"
[[package]]
name = "windows_x86_64_gnu"
2022-09-07 10:29:35 +05:30
version = "0.36.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-07 10:29:35 +05:30
checksum = "4dcd171b8776c41b97521e5da127a2d86ad280114807d0b2ab1e462bc764d9e1"
[[package]]
name = "windows_x86_64_msvc"
2022-09-07 10:29:35 +05:30
version = "0.36.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-07 10:29:35 +05:30
checksum = "c811ca4a8c853ef420abd8592ba53ddbbac90410fab6903b3e79972a631f7680"
2021-10-29 20:22:14 +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-09-07 10:29:35 +05:30
version = "0.11.2+zstd.1.5.2"
2021-10-29 20:22:14 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-07 10:29:35 +05:30
checksum = "20cc960326ece64f010d2d2107537f26dc589a6573a316bd5b1dba685fa5fde4"
2021-10-29 20:22:14 +05:30
dependencies = [
"zstd-safe",
]
[[package]]
name = "zstd-safe"
2022-09-07 10:29:35 +05:30
version = "5.0.2+zstd.1.5.2"
2021-10-29 20:22:14 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-07 10:29:35 +05:30
checksum = "1d2a5585e04f9eea4b2a3d1eca508c4dee9592a89ef6f450c11719da0726f4db"
2021-10-29 20:22:14 +05:30
dependencies = [
"libc",
"zstd-sys",
]
[[package]]
name = "zstd-sys"
2022-09-07 10:29:35 +05:30
version = "2.0.1+zstd.1.5.2"
2021-10-29 20:22:14 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-07 10:29:35 +05:30
checksum = "9fd07cbbc53846d9145dbffdf6dd09a7a0aa52be46741825f5c97bdd4f73f12b"
2021-10-29 20:22:14 +05:30
dependencies = [
"cc",
"libc",
]