librepages/Cargo.lock

2800 lines
66 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
2022-09-12 01:38:58 +05:30
[[package]]
name = "actix-auth-middleware"
version = "0.2.0"
source = "git+https://github.com/realaravinth/actix-auth-middleware?branch=v4#81fc0adcb54a7601afe479f8408261f18c8f8d89"
dependencies = [
"actix-http",
"actix-identity",
"actix-service",
"actix-web",
"futures",
]
2021-10-29 20:22:14 +05:30
[[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",
]
2022-09-12 01:38:58 +05:30
[[package]]
name = "actix-identity"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "171fe3ed055b2dd50c61967911d253d47e76e1d4308acfbf99fc7affe5ec42aa"
dependencies = [
"actix-service",
"actix-utils",
"actix-web",
"futures-util",
"serde",
"serde_json",
"time",
]
2021-10-29 20:22:14 +05:30
[[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",
"actix-web-codegen",
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.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 = "actix-web-codegen-const-routes"
version = "0.1.0"
source = "git+https://github.com/realaravinth/actix-web-codegen-const-routes?tag=0.1.0#1cc9b8dbaaef4b3634dabbf537f313200dd91bd9"
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"
2022-09-12 01:38:58 +05:30
[[package]]
name = "aead"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0b613b8e1e3cf911a086f53f03bf286f52fd7a7258e4fa606f0ef220d39d8877"
dependencies = [
"generic-array",
]
[[package]]
name = "aes"
version = "0.7.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9e8b47f52ea9bae42228d07ec09eb676433d7c4ed1ebdf0f1d1c29ed446f1ab8"
dependencies = [
"cfg-if",
"cipher",
"cpufeatures",
"opaque-debug",
]
[[package]]
name = "aes-gcm"
version = "0.9.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "df5f85a83a7d8b0442b6aa7b504b8212c1733da07b98aae43d4bc21b2cb3cdf6"
dependencies = [
"aead",
"aes",
"cipher",
"ctr",
"ghash",
"subtle",
]
2021-10-29 20:22:14 +05:30
[[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",
]
2022-09-10 19:29:22 +05:30
[[package]]
name = "ammonia"
version = "3.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4b477377562f3086b7778d241786e9406b883ccfaa03557c0fe0924b9349f13a"
dependencies = [
"html5ever",
"maplit",
"once_cell",
"tendril",
"url",
]
[[package]]
name = "argon2-creds"
version = "0.2.2"
source = "git+https://github.com/realaravinth/argon2-creds?branch=master#9f43fd564448cae609d148a700de91e2aea6474c"
dependencies = [
"ammonia",
"derive_builder",
"derive_more",
"lazy_static",
"rand",
"regex",
"rust-argon2",
"unicode-normalization",
"validator",
]
[[package]]
name = "arrayref"
version = "0.3.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a4c527152e37cf757a3f78aae5a06fbeefdb07ccc535c980a3208ee3060dd544"
[[package]]
name = "arrayvec"
version = "0.7.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8da52d66c7071e2e3fa2a1e5c6d088fec47b593032b254f5e980de8ea54454d6"
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
2022-09-10 19:29:22 +05:30
[[package]]
name = "atoi"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d7c57d12312ff59c811c0643f4d80830505833c9ffaebd193d819392b265be8e"
dependencies = [
"num-traits",
]
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-09-10 19:29:22 +05:30
[[package]]
name = "blake2b_simd"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "72936ee4afc7f8f736d1c38383b56480b5497b4617b4a77bdbf1d2ababc76127"
dependencies = [
"arrayref",
"arrayvec",
"constant_time_eq",
]
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
]
2022-09-10 19:29:22 +05:30
[[package]]
name = "bumpalo"
version = "3.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2e8c087f005730276d1096a652e92a8bacee2e2472bcc9715a74d2bec38b5820"
[[package]]
name = "byteorder"
version = "1.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
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"
2022-09-12 01:38:58 +05:30
[[package]]
name = "cipher"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7ee52072ec15386f770805afd189a01c8841be8696bed250fa2f13c4c0d6dfb7"
dependencies = [
"generic-array",
]
2022-09-10 19:29:22 +05:30
[[package]]
name = "clap"
version = "3.2.20"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "23b71c3ce99b7611011217b366d923f1d0a7e07a92bb2dbf1e84508c673ca3bd"
dependencies = [
"atty",
"bitflags",
"clap_derive",
"clap_lex",
"indexmap",
"once_cell",
"strsim",
"termcolor",
"textwrap",
]
[[package]]
name = "clap_derive"
version = "3.2.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ea0c8bce528c4be4da13ea6fead8965e95b6073585a2f05204bd8f4119f82a65"
dependencies = [
"heck",
"proc-macro-error",
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "clap_lex"
version = "0.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2850f2f5a82cbf437dd5af4d49848fbdfc27c157c3d010345776f952765261c5"
dependencies = [
"os_str_bytes",
]
2021-10-29 20:22:14 +05:30
[[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",
]
2022-09-10 19:29:22 +05:30
[[package]]
name = "constant_time_eq"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc"
2021-10-29 20:22:14 +05:30
[[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 = [
2022-09-12 01:38:58 +05:30
"aes-gcm",
"base64",
"hkdf",
"hmac",
2021-10-29 20:22:14 +05:30
"percent-encoding",
2022-09-12 01:38:58 +05:30
"rand",
"sha2",
"subtle",
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",
]
2022-09-10 19:29:22 +05:30
[[package]]
name = "crc"
version = "3.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "53757d12b596c16c78b83458d732a5d1a17ab3f53f2f7412f6fb57cc8a140ab3"
dependencies = [
"crc-catalog",
]
[[package]]
name = "crc-catalog"
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2d0165d2900ae6778e36e80bbc4da3b5eefccee9ba939761f9c2882a5d9af3ff"
2021-10-29 20:22:14 +05:30
[[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-09-10 19:29:22 +05:30
[[package]]
name = "crossbeam-queue"
version = "0.3.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1cd42583b04998a5363558e5f9291ee5a5ff6b49944332103f251e7479a82aa7"
dependencies = [
"cfg-if",
"crossbeam-utils",
]
[[package]]
name = "crossbeam-utils"
version = "0.8.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "51887d4adc7b564537b15adcfb307936f8075dfcd5f00dde9a9f1d29383682bc"
dependencies = [
"cfg-if",
"once_cell",
]
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",
]
2022-09-12 01:38:58 +05:30
[[package]]
name = "ctr"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "049bb91fb4aaf0e3c7efa6cd5ef877dbbbd15b39dad06d9948de4ec8a75761ea"
dependencies = [
"cipher",
]
2022-09-10 19:29:22 +05:30
[[package]]
name = "darling"
version = "0.14.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4529658bdda7fd6769b8614be250cdcfc3aeb0ee72fe66f9e41e5e5eb73eac02"
dependencies = [
"darling_core",
"darling_macro",
]
[[package]]
name = "darling_core"
version = "0.14.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "649c91bc01e8b1eac09fb91e8dbc7d517684ca6be8ebc75bb9cafc894f9fdb6f"
dependencies = [
"fnv",
"ident_case",
"proc-macro2",
"quote",
"strsim",
"syn",
]
[[package]]
name = "darling_macro"
version = "0.14.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ddfc69c5bfcbd2fc09a0f38451d2daf0e372e367986a83906d1b0dbc88134fb5"
dependencies = [
"darling_core",
"quote",
"syn",
]
[[package]]
name = "derive_builder"
version = "0.11.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d07adf7be193b71cc36b193d0f5fe60b918a3a9db4dad0449f57bcfd519704a3"
dependencies = [
"derive_builder_macro",
]
[[package]]
name = "derive_builder_core"
version = "0.11.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1f91d4cfa921f1c05904dc3c57b4a32c38aed3340cce209f3a6fd1478babafc4"
dependencies = [
"darling",
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "derive_builder_macro"
version = "0.11.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8f0314b72bed045f3a68671b3c86328386762c93f82d98c65c3cb5e5f573dd68"
dependencies = [
"derive_builder_core",
"syn",
]
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",
2022-09-10 19:29:22 +05:30
"subtle",
]
[[package]]
name = "dirs"
version = "4.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ca3aa72a6f96ea37bbc5aa912f6788242832f75369bdfdadcb0e38423f100059"
dependencies = [
"dirs-sys",
]
[[package]]
name = "dirs-sys"
version = "0.3.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1b1d1d91c932ef41c0f2663aa8b0ca0342d444d842c06914aa0a7e352d0bada6"
dependencies = [
"libc",
"redox_users",
"winapi",
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
2022-09-10 19:29:22 +05:30
[[package]]
name = "dotenvy"
version = "0.15.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "da3db6fcad7c1fc4abdd99bf5276a4db30d6a819127903a709ed41e5ff016e84"
dependencies = [
"dirs",
]
[[package]]
name = "either"
version = "1.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "90e5c1c8368803113bf0c9584fc495a58b86dc8a29edbf8fe877d21d9507e797"
dependencies = [
"serde",
]
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",
]
2022-09-10 19:29:22 +05:30
[[package]]
name = "event-listener"
version = "2.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0"
2021-10-29 20:22:14 +05:30
[[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",
]
2022-09-10 19:29:22 +05:30
[[package]]
name = "futf"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "df420e2e84819663797d1ec6544b13c5be84629e7bb00dc960d6917db2987843"
dependencies = [
"mac",
"new_debug_unreachable",
]
2022-09-12 01:38:58 +05:30
[[package]]
name = "futures"
version = "0.3.24"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7f21eda599937fba36daeb58a22e8f5cee2d14c4a17b5b7739c7c8e5e3b8230c"
dependencies = [
"futures-channel",
"futures-core",
"futures-executor",
"futures-io",
"futures-sink",
"futures-task",
"futures-util",
]
2022-09-10 19:29:22 +05:30
[[package]]
name = "futures-channel"
version = "0.3.24"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "30bdd20c28fadd505d0fd6712cdfcb0d4b5648baf45faef7f852afb2399bb050"
dependencies = [
"futures-core",
"futures-sink",
]
2021-10-29 20:22:14 +05:30
[[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
2022-09-12 01:38:58 +05:30
[[package]]
name = "futures-executor"
version = "0.3.24"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9ff63c23854bee61b6e9cd331d523909f238fc7636290b96826e9cfa5faa00ab"
dependencies = [
"futures-core",
"futures-task",
"futures-util",
]
2022-09-10 19:29:22 +05:30
[[package]]
name = "futures-intrusive"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "62007592ac46aa7c2b6416f7deb9a8a8f63a01e0f1d6e1787d5630170db2b63e"
dependencies = [
"futures-core",
"lock_api",
"parking_lot 0.11.2",
]
2022-09-12 01:38:58 +05:30
[[package]]
name = "futures-io"
version = "0.3.24"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bbf4d2a7a308fd4578637c0b17c7e1c7ba127b8f6ba00b29f717e9655d85eb68"
[[package]]
name = "futures-macro"
version = "0.3.24"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "42cd15d1c7456c04dbdf7e88bcd69760d74f3a798d6444e16974b505b0e62f17"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
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 = [
2022-09-12 01:38:58 +05:30
"futures-channel",
2021-10-29 20:22:14 +05:30
"futures-core",
2022-09-12 01:38:58 +05:30
"futures-io",
"futures-macro",
2022-09-10 19:29:22 +05:30
"futures-sink",
2021-10-29 20:22:14 +05:30
"futures-task",
2022-09-12 01:38:58 +05:30
"memchr",
2021-10-29 20:22:14 +05:30
"pin-project-lite",
"pin-utils",
2022-09-12 01:38:58 +05:30
"slab",
2021-10-29 20:22:14 +05:30
]
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
]
2022-09-12 01:38:58 +05:30
[[package]]
name = "ghash"
version = "0.4.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1583cc1656d7839fd3732b80cf4f38850336cdb9b8ded1cd399ca62958de3c99"
dependencies = [
"opaque-debug",
"polyval",
]
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
2022-09-10 19:29:22 +05:30
[[package]]
name = "hashlink"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d452c155cb93fecdfb02a73dd57b5d8e442c2063bd7aac72f1bc5e4263a43086"
dependencies = [
"hashbrown",
]
[[package]]
name = "heck"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2540771e65fc8cb83cd6e8a237f70c319bd5c29f78ed1084ba5d50eeac86f7f9"
dependencies = [
"unicode-segmentation",
]
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",
]
2022-09-10 19:29:22 +05:30
[[package]]
name = "hex"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
[[package]]
name = "hkdf"
version = "0.12.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "791a029f6b9fc27657f6f188ec6e5e43f6911f6f878e0dc5501396e09809d437"
dependencies = [
"hmac",
]
[[package]]
name = "hmac"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
dependencies = [
"digest",
]
[[package]]
name = "html5ever"
version = "0.26.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bea68cab48b8459f17cf1c944c67ddc572d272d9f2b274140f223ecb1da4a3b7"
dependencies = [
"log",
"mac",
"markup5ever",
"proc-macro2",
"quote",
"syn",
]
2021-10-29 20:22:14 +05:30
[[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",
]
2022-09-10 19:29:22 +05:30
[[package]]
name = "ident_case"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
2021-10-29 20:22:14 +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",
]
2022-09-10 19:29:22 +05:30
[[package]]
name = "if_chain"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cb56e1aa765b4b4f3aadfab769793b7087bb03a4ea4920644a6d238e2df5b9ed"
2021-10-29 20:22:14 +05:30
[[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-09-10 19:29:22 +05:30
[[package]]
name = "instant"
version = "0.1.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
dependencies = [
"cfg-if",
]
[[package]]
name = "itertools"
version = "0.10.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a9a9d19fa1e79b6215ff29b9d6880b706147f16e9b1dbb1e4e5947b5b02bc5e3"
dependencies = [
"either",
]
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-09-10 19:29:22 +05:30
[[package]]
name = "js-sys"
version = "0.3.55"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7cc9ffccd38c451a86bf13657df244e9c3f37493cce8e5e21e940963777acc84"
dependencies = [
"wasm-bindgen",
]
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]]
2022-09-10 19:29:22 +05:30
name = "mac"
version = "0.1.1"
2021-10-29 20:22:14 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-10 19:29:22 +05:30
checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4"
2021-10-29 20:22:14 +05:30
[[package]]
2022-09-10 19:29:22 +05:30
name = "maplit"
version = "1.0.2"
2021-10-29 20:22:14 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-10 19:29:22 +05:30
checksum = "3e2e65a1a2e43cfcb47a895c4c8b10d1f4a61097f9f254f183aee60cad9c651d"
2021-10-29 20:22:14 +05:30
[[package]]
2022-09-10 19:29:22 +05:30
name = "markup5ever"
version = "0.11.0"
2021-10-29 20:22:14 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-10 19:29:22 +05:30
checksum = "7a2629bb1404f3d34c2e921f21fd34ba00b206124c81f65c50b43b6aaefeb016"
dependencies = [
"log",
"phf",
"phf_codegen",
"string_cache",
"string_cache_codegen",
"tendril",
]
[[package]]
name = "matches"
version = "0.1.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f"
[[package]]
name = "md-5"
version = "0.10.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "66b48670c893079d3c2ed79114e3644b7004df1c361a4e0ad52e2e6940d07c3d"
dependencies = [
"digest",
]
[[package]]
name = "memchr"
version = "2.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
[[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",
]
2022-09-10 19:29:22 +05:30
[[package]]
name = "new_debug_unreachable"
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e4a24736216ec316047a1fc4252e27dabb04218aa4a3f37c6e7ddbf1f9782b54"
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
]
2022-09-10 19:29:22 +05:30
[[package]]
name = "num-traits"
version = "0.2.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd"
dependencies = [
"autocfg",
]
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
2022-09-12 01:38:58 +05:30
[[package]]
name = "opaque-debug"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5"
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
]
2022-09-10 19:29:22 +05:30
[[package]]
name = "os_str_bytes"
version = "6.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9ff7415e9ae3fff1225851df9e0d9e4e5479f947619774677a63572e55e80eff"
2021-10-29 20:22:14 +05:30
[[package]]
name = "pages"
version = "0.1.0"
dependencies = [
2022-09-12 01:38:58 +05:30
"actix-auth-middleware",
2021-10-29 20:22:14 +05:30
"actix-http",
2022-09-12 01:38:58 +05:30
"actix-identity",
2021-10-29 20:22:14 +05:30
"actix-rt",
"actix-web",
"actix-web-codegen-const-routes",
2022-09-10 19:29:22 +05:30
"argon2-creds",
"clap",
2021-10-29 20:22:14 +05:30
"config",
"derive_more",
2022-09-12 01:38:58 +05:30
"futures",
2021-10-29 20:22:14 +05:30
"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-09-12 00:23:57 +05:30
"rand",
2022-03-29 18:13:26 +05:30
"serde",
2021-10-29 20:22:14 +05:30
"serde_json",
2022-09-10 19:29:22 +05:30
"sqlx",
2022-04-26 19:56:59 +05:30
"tokio",
2021-10-29 20:22:14 +05:30
"url",
2022-09-12 01:38:58 +05:30
"urlencoding",
2021-10-29 20:22:14 +05:30
]
2022-09-10 19:29:22 +05:30
[[package]]
name = "parking_lot"
version = "0.11.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99"
dependencies = [
"instant",
"lock_api",
"parking_lot_core 0.8.5",
]
2021-10-29 20:22:14 +05:30
[[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",
2022-09-10 19:29:22 +05:30
"parking_lot_core 0.9.3",
]
[[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",
2021-10-29 20:22:14 +05:30
]
[[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
]
2022-09-10 19:29:22 +05:30
[[package]]
name = "phf"
version = "0.10.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fabbf1ead8a5bcbc20f5f8b939ee3f5b0f6f281b6ad3468b84656b658b455259"
dependencies = [
"phf_shared",
]
[[package]]
name = "phf_codegen"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4fb1c3a8bc4dd4e5cfce29b44ffc14bedd2ee294559a294e2a4d4c9e9a6a13cd"
dependencies = [
"phf_generator",
"phf_shared",
]
[[package]]
name = "phf_generator"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5d5285893bb5eb82e6aaf5d59ee909a06a16737a8970984dd7746ba9283498d6"
dependencies = [
"phf_shared",
"rand",
]
[[package]]
name = "phf_shared"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096"
dependencies = [
"siphasher",
]
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
2022-09-12 01:38:58 +05:30
[[package]]
name = "polyval"
version = "0.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8419d2b623c7c0896ff2d5d96e2cb4ede590fed28fcc34934f4c33c036e620a1"
dependencies = [
"cfg-if",
"cpufeatures",
"opaque-debug",
"universal-hash",
]
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
2022-09-10 19:29:22 +05:30
[[package]]
name = "precomputed-hash"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c"
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",
]
2022-09-10 19:29:22 +05:30
[[package]]
name = "proc-macro-error"
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
dependencies = [
"proc-macro-error-attr",
"proc-macro2",
"quote",
"syn",
"version_check",
]
[[package]]
name = "proc-macro-error-attr"
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
dependencies = [
"proc-macro2",
"quote",
"version_check",
]
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",
]
2022-09-10 19:29:22 +05:30
[[package]]
name = "redox_users"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b"
dependencies = [
"getrandom",
"redox_syscall",
"thiserror",
]
2021-10-29 20:22:14 +05:30
[[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-09-10 19:29:22 +05:30
[[package]]
name = "ring"
version = "0.16.20"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc"
dependencies = [
"cc",
"libc",
"once_cell",
"spin",
"untrusted",
"web-sys",
"winapi",
]
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",
]
2022-09-10 19:29:22 +05:30
[[package]]
name = "rust-argon2"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b50162d19404029c1ceca6f6980fe40d45c8b369f6f44446fa14bb39573b5bb9"
dependencies = [
"base64",
"blake2b_simd",
"constant_time_eq",
"crossbeam-utils",
]
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
]
2022-09-10 19:29:22 +05:30
[[package]]
name = "rustls"
version = "0.20.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5aab8ee6c7097ed6057f43c187a62418d0c05a4bd5f18b3571db50ee0f9ce033"
dependencies = [
"log",
"ring",
"sct",
"webpki",
]
[[package]]
name = "rustls-pemfile"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0864aeff53f8c05aa08d86e5ef839d3dfcf07aeba2db32f12db0ef716e87bd55"
dependencies = [
"base64",
]
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"
2022-09-10 19:29:22 +05:30
[[package]]
name = "sct"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d53dcdb7c9f8158937a7981b48accfd39a43af418591a5d008c7b22b5e1b7ca4"
dependencies = [
"ring",
"untrusted",
]
2021-10-29 20:22:14 +05:30
[[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
]
2022-09-10 19:29:22 +05:30
[[package]]
name = "sha2"
version = "0.10.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cf9db03534dff993187064c4e0c05a5708d2a9728ace9a8959b77bedf415dac5"
dependencies = [
"cfg-if",
"cpufeatures",
"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",
]
2022-09-10 19:29:22 +05:30
[[package]]
name = "siphasher"
version = "0.3.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7bd3e3206899af3f8b12af284fafc038cc1dc2b41d1b89dd17297221c5d225de"
2021-10-29 20:22:14 +05:30
[[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",
]
2022-09-10 19:29:22 +05:30
[[package]]
name = "spin"
version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"
[[package]]
name = "sqlformat"
version = "0.1.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b4b7922be017ee70900be125523f38bdd644f4f06a1b16e8fa5a8ee8c34bffd4"
dependencies = [
"itertools",
"nom",
"unicode_categories",
]
[[package]]
name = "sqlx"
version = "0.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "788841def501aabde58d3666fcea11351ec3962e6ea75dbcd05c84a71d68bcd1"
dependencies = [
"sqlx-core",
"sqlx-macros",
]
[[package]]
name = "sqlx-core"
version = "0.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8c21d3b5e7cadfe9ba7cdc1295f72cc556c750b4419c27c219c0693198901f8e"
dependencies = [
"ahash",
"atoi",
"base64",
"bitflags",
"byteorder",
"bytes",
"crc",
"crossbeam-queue",
"dirs",
"dotenvy",
"either",
"event-listener",
"futures-channel",
"futures-core",
"futures-intrusive",
"futures-util",
"hashlink",
"hex",
"hkdf",
"hmac",
"indexmap",
"itoa",
"libc",
"log",
"md-5",
"memchr",
"once_cell",
"paste",
"percent-encoding",
"rand",
"rustls",
"rustls-pemfile",
"serde",
"serde_json",
"sha-1",
"sha2",
"smallvec",
"sqlformat",
"sqlx-rt",
"stringprep",
"thiserror",
"time",
"tokio-stream",
"url",
"webpki-roots",
"whoami",
]
[[package]]
name = "sqlx-macros"
version = "0.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4adfd2df3557bddd3b91377fc7893e8fa899e9b4061737cbade4e1bb85f1b45c"
dependencies = [
"dotenvy",
"either",
"heck",
"hex",
"once_cell",
"proc-macro2",
"quote",
"serde",
"serde_json",
"sha2",
"sqlx-core",
"sqlx-rt",
"syn",
"url",
]
[[package]]
name = "sqlx-rt"
version = "0.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7be52fc7c96c136cedea840ed54f7d446ff31ad670c9dea95ebcb998530971a3"
dependencies = [
"once_cell",
"tokio",
"tokio-rustls",
]
[[package]]
name = "string_cache"
version = "0.8.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "213494b7a2b503146286049378ce02b482200519accc31872ee8be91fa820a08"
dependencies = [
"new_debug_unreachable",
"once_cell",
"parking_lot 0.12.1",
"phf_shared",
"precomputed-hash",
"serde",
]
[[package]]
name = "string_cache_codegen"
version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6bb30289b722be4ff74a408c3cc27edeaad656e06cb1fe8fa9231fa59c728988"
dependencies = [
"phf_generator",
"phf_shared",
"proc-macro2",
"quote",
]
[[package]]
name = "stringprep"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8ee348cb74b87454fff4b551cbf727025810a004f88aeacae7f85b87f4e9a1c1"
dependencies = [
"unicode-bidi",
"unicode-normalization",
]
[[package]]
name = "strsim"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
[[package]]
name = "subtle"
version = "2.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601"
2021-10-29 20:22:14 +05:30
[[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
]
2022-09-10 19:29:22 +05:30
[[package]]
name = "tendril"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d24a120c5fc464a3458240ee02c299ebcb9d67b5249c8848b09d639dca8d7bb0"
dependencies = [
"futf",
"mac",
"utf-8",
]
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-10 19:29:22 +05:30
[[package]]
name = "textwrap"
version = "0.15.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b1141d4d61095b28419e22cb0bbf02755f5e54e0526f97f1e3d1d160e60885fb"
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",
2022-09-10 19:29:22 +05:30
"num_cpus",
2021-10-29 20:22:14 +05:30
"once_cell",
2022-09-10 19:29:22 +05:30
"parking_lot 0.12.1",
2021-10-29 20:22:14 +05:30
"pin-project-lite",
"signal-hook-registry",
"socket2",
2021-10-29 20:22:14 +05:30
"winapi",
]
2022-09-10 19:29:22 +05:30
[[package]]
name = "tokio-rustls"
version = "0.23.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c43ee83903113e03984cb9e5cebe6c04a5116269e900e3ddba8f068a62adda59"
dependencies = [
"rustls",
"tokio",
"webpki",
]
[[package]]
name = "tokio-stream"
version = "0.1.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "df54d54117d6fdc4e4fea40fe1e4e566b3505700e148a6827e59b34b0d2600d9"
dependencies = [
"futures-core",
"pin-project-lite",
"tokio",
]
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",
]
2022-09-10 19:29:22 +05:30
[[package]]
name = "unicode-segmentation"
version = "1.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7e8820f5d777f6224dc4be3632222971ac30164d4a258d595640799554ebfd99"
[[package]]
name = "unicode_categories"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "39ec24b3121d976906ece63c9daad25b85969647682eee313cb5779fdd69e14e"
2022-09-12 01:38:58 +05:30
[[package]]
name = "universal-hash"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9f214e8f697e925001e66ec2c6e37a4ef93f0f78c2eed7814394e10c62025b05"
dependencies = [
"generic-array",
"subtle",
]
2022-09-10 19:29:22 +05:30
[[package]]
name = "untrusted"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
2021-10-29 20:22:14 +05:30
[[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-09-12 01:38:58 +05:30
[[package]]
name = "urlencoding"
version = "2.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e8db7427f936968176eaa7cdf81b7f98b980b18495ec28f1b5791ac3bfe3eea9"
2022-09-10 19:29:22 +05:30
[[package]]
name = "utf-8"
version = "0.7.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
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",
]
2022-09-10 19:29:22 +05:30
[[package]]
name = "validator"
version = "0.15.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f07b0a1390e01c0fc35ebb26b28ced33c9a3808f7f9fbe94d3cc01e233bfeed5"
dependencies = [
"idna",
"lazy_static",
"regex",
"serde",
"serde_derive",
"serde_json",
"url",
"validator_derive",
]
[[package]]
name = "validator_derive"
version = "0.15.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ea7ed5e8cf2b6bdd64a6c4ce851da25388a89327b17b88424ceced6bd5017923"
dependencies = [
"if_chain",
"lazy_static",
"proc-macro-error",
"proc-macro2",
"quote",
"regex",
"syn",
"validator_types",
]
[[package]]
name = "validator_types"
version = "0.15.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d2ddf34293296847abfc1493b15c6e2f5d3cd19f57ad7d22673bf4c6278da329"
dependencies = [
"proc-macro2",
"syn",
]
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
2022-09-10 19:29:22 +05:30
[[package]]
name = "wasm-bindgen"
version = "0.2.78"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "632f73e236b219150ea279196e54e610f5dbafa5d61786303d4da54f84e47fce"
dependencies = [
"cfg-if",
"wasm-bindgen-macro",
]
[[package]]
name = "wasm-bindgen-backend"
version = "0.2.78"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a317bf8f9fba2476b4b2c85ef4c4af8ff39c3c7f0cdfeed4f82c34a880aa837b"
dependencies = [
"bumpalo",
"lazy_static",
"log",
"proc-macro2",
"quote",
"syn",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-macro"
version = "0.2.78"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d56146e7c495528bf6587663bea13a8eb588d39b36b679d83972e1a2dbbdacf9"
dependencies = [
"quote",
"wasm-bindgen-macro-support",
]
[[package]]
name = "wasm-bindgen-macro-support"
version = "0.2.78"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7803e0eea25835f8abdc585cd3021b3deb11543c6fe226dcd30b228857c5c5ab"
dependencies = [
"proc-macro2",
"quote",
"syn",
"wasm-bindgen-backend",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-shared"
version = "0.2.78"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0237232789cf037d5480773fe568aac745bfe2afbc11a863e97901780a6b47cc"
[[package]]
name = "web-sys"
version = "0.3.55"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "38eb105f1c59d9eaa6b5cdc92b859d85b926e82cb2e0945cd0c9259faa6fe9fb"
dependencies = [
"js-sys",
"wasm-bindgen",
]
[[package]]
name = "webpki"
version = "0.22.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f095d78192e208183081cc07bc5515ef55216397af48b873e5edcd72637fa1bd"
dependencies = [
"ring",
"untrusted",
]
[[package]]
name = "webpki-roots"
version = "0.22.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f1c760f0d366a6c24a02ed7816e23e691f5d92291f94d15e836006fd11b04daf"
dependencies = [
"webpki",
]
[[package]]
name = "whoami"
version = "1.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5fd9fa466115c4a3fadac4119e0f6182f0ef5c5356cddb0b0b5de09b87369f15"
dependencies = [
"bumpalo",
"wasm-bindgen",
"web-sys",
]
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",
]