pict-rs-proxy/Cargo.lock

2416 lines
57 KiB
Plaintext
Raw Normal View History

# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
2021-06-19 19:42:42 +00:00
version = 3
2021-02-10 20:37:44 +00:00
[[package]]
name = "actix-codec"
2022-02-26 18:28:23 +00:00
version = "0.5.0"
2021-02-10 20:37:44 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-26 18:28:23 +00:00
checksum = "57a7559404a7f3573127aab53c08ce37a6c6a315c374a31070f3c91cd1b4a7fe"
2021-02-10 20:37:44 +00:00
dependencies = [
"bitflags",
2021-03-10 02:14:42 +00:00
"bytes",
2021-02-10 20:37:44 +00:00
"futures-core",
"futures-sink",
"log",
2021-11-25 02:32:44 +00:00
"memchr",
2021-03-10 02:14:42 +00:00
"pin-project-lite",
"tokio",
2022-09-28 23:34:07 +00:00
"tokio-util",
]
[[package]]
name = "actix-http"
2022-09-28 23:34:07 +00:00
version = "3.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "0c83abf9903e1f0ad9973cc4f7b9767fd5a03a583f51a5b7a339e07987cd2724"
dependencies = [
2021-03-10 02:14:42 +00:00
"actix-codec",
"actix-rt",
"actix-service",
"actix-utils",
2021-02-10 20:37:44 +00:00
"ahash",
2021-04-02 19:17:42 +00:00
"base64",
2021-02-10 20:37:44 +00:00
"bitflags",
2021-03-10 02:14:42 +00:00
"bytes",
2021-02-10 20:37:44 +00:00
"bytestring",
"derive_more",
"encoding_rs",
"futures-core",
2021-03-10 02:14:42 +00:00
"h2",
"http",
"httparse",
2021-10-21 16:17:47 +00:00
"httpdate",
2022-02-11 17:20:51 +00:00
"itoa",
"language-tags",
2021-04-02 19:17:42 +00:00
"local-channel",
"mime",
"percent-encoding",
2021-04-02 19:17:42 +00:00
"pin-project-lite",
"rand",
2022-07-02 15:56:37 +00:00
"sha1",
2021-02-10 20:37:44 +00:00
"smallvec",
2022-07-02 15:56:37 +00:00
"tracing",
]
2021-02-10 20:37:44 +00:00
[[package]]
name = "actix-macros"
2021-10-21 16:17:47 +00:00
version = "0.2.3"
2021-02-10 20:37:44 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-21 16:17:47 +00:00
checksum = "465a6172cf69b960917811022d8f29bc0b7fa1398bc4f78b3c466673db1213b6"
2021-02-10 20:37:44 +00:00
dependencies = [
"quote",
"syn",
]
[[package]]
name = "actix-router"
2022-09-28 23:34:07 +00:00
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "d66ff4d247d2b160861fa2866457e85706833527840e4133f8f49aa423a38799"
dependencies = [
"bytestring",
"http",
"regex",
"serde",
2022-09-28 23:34:07 +00:00
"tracing",
]
[[package]]
name = "actix-rt"
2022-03-23 14:46:30 +00:00
version = "2.7.0"
2021-02-10 20:37:44 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-23 14:46:30 +00:00
checksum = "7ea16c295198e958ef31930a6ef37d0fb64e9ca3b6116e6b93a8bdae96ee1000"
2021-02-10 20:37:44 +00:00
dependencies = [
2021-03-10 02:14:42 +00:00
"actix-macros",
2021-02-10 20:37:44 +00:00
"futures-core",
2021-03-10 02:14:42 +00:00
"tokio",
]
[[package]]
name = "actix-server"
2022-03-23 14:46:30 +00:00
version = "2.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-23 14:46:30 +00:00
checksum = "0da34f8e659ea1b077bb4637948b815cd3768ad5a188fdcd74ff4d84240cd824"
dependencies = [
2021-03-10 02:14:42 +00:00
"actix-rt",
"actix-service",
"actix-utils",
2021-02-10 20:37:44 +00:00
"futures-core",
2021-11-25 02:32:44 +00:00
"futures-util",
2022-02-26 18:28:23 +00:00
"mio",
"num_cpus",
2021-11-25 02:32:44 +00:00
"socket2",
2021-03-10 02:14:42 +00:00
"tokio",
2022-03-23 14:46:30 +00:00
"tracing",
]
[[package]]
2021-02-10 20:37:44 +00:00
name = "actix-service"
version = "2.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3b894941f818cfdc7ccc4b9e60fa7e53b5042a2e8567270f9147d5591893373a"
dependencies = [
2021-02-10 20:37:44 +00:00
"futures-core",
2021-06-19 19:42:42 +00:00
"paste",
2021-03-10 02:14:42 +00:00
"pin-project-lite",
]
[[package]]
name = "actix-tls"
2022-02-26 18:28:23 +00:00
version = "3.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-26 18:28:23 +00:00
checksum = "9fde0cf292f7cdc7f070803cb9a0d45c018441321a78b1042ffbbb81ec333297"
dependencies = [
2021-03-10 02:14:42 +00:00
"actix-codec",
"actix-rt",
"actix-service",
"actix-utils",
2021-02-10 20:37:44 +00:00
"futures-core",
"http",
"log",
2021-11-25 02:32:44 +00:00
"pin-project-lite",
2022-09-28 23:34:07 +00:00
"tokio-util",
]
2021-02-10 20:37:44 +00:00
[[package]]
name = "actix-utils"
2021-06-19 19:42:42 +00:00
version = "3.0.0"
2021-02-10 20:37:44 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-19 19:42:42 +00:00
checksum = "e491cbaac2e7fc788dfff99ff48ef317e23b3cf63dbaf7aaab6418f40f92aa94"
2021-02-10 20:37:44 +00:00
dependencies = [
2021-04-02 19:17:42 +00:00
"local-waker",
2021-03-10 02:14:42 +00:00
"pin-project-lite",
2021-02-10 20:37:44 +00:00
]
[[package]]
name = "actix-web"
2022-09-28 23:34:07 +00:00
version = "4.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "d48f7b6534e06c7bfc72ee91db7917d4af6afe23e7d223b51e68fffbb21e96b9"
dependencies = [
2021-03-10 02:14:42 +00:00
"actix-codec",
"actix-http",
"actix-router",
2021-03-10 02:14:42 +00:00
"actix-rt",
"actix-server",
2021-03-10 02:14:42 +00:00
"actix-service",
"actix-utils",
2021-02-10 20:37:44 +00:00
"ahash",
2021-03-10 02:14:42 +00:00
"bytes",
2022-02-26 18:28:23 +00:00
"bytestring",
2021-06-26 17:27:54 +00:00
"cfg-if",
"derive_more",
"encoding_rs",
"futures-core",
"futures-util",
2022-09-28 23:34:07 +00:00
"http",
2022-02-11 17:20:51 +00:00
"itoa",
2021-04-02 19:17:42 +00:00
"language-tags",
"log",
"mime",
2021-04-02 19:17:42 +00:00
"once_cell",
2021-12-03 20:42:30 +00:00
"pin-project-lite",
"regex",
"serde",
"serde_json",
"serde_urlencoded",
2021-02-10 20:37:44 +00:00
"smallvec",
"socket2",
"time",
"url",
]
[[package]]
name = "adler"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
2021-02-10 20:37:44 +00:00
[[package]]
name = "ahash"
2021-10-21 16:17:47 +00:00
version = "0.7.6"
2021-02-10 20:37:44 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-21 16:17:47 +00:00
checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47"
2021-02-10 20:37:44 +00:00
dependencies = [
2021-04-02 19:17:42 +00:00
"getrandom",
2021-02-10 20:37:44 +00:00
"once_cell",
"version_check",
]
[[package]]
name = "aho-corasick"
2022-09-28 23:34:07 +00:00
version = "0.7.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "b4f55bd91a0978cbfd91c457a164bab8b4001c833b7f323132c0a4e1922dd44e"
dependencies = [
"memchr",
]
2021-09-19 18:21:23 +00:00
[[package]]
name = "ansi_term"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2"
dependencies = [
"winapi",
]
[[package]]
name = "anyhow"
2022-09-28 23:34:07 +00:00
version = "1.0.65"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "98161a4e3e2184da77bb14f02184cdd111e83bbbcc9979dfee3c44b9a85f5602"
[[package]]
name = "arc-swap"
version = "1.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "983cd8b9d4b02a6dc6ffa557262eb5858a27a0038ffffe21a0f133eaa819a164"
2022-07-02 15:56:37 +00:00
[[package]]
name = "arrayvec"
version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b"
2021-09-19 18:21:23 +00:00
[[package]]
name = "async-stream"
2022-03-23 14:46:30 +00:00
version = "0.3.3"
2021-09-19 18:21:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-23 14:46:30 +00:00
checksum = "dad5c83079eae9969be7fadefe640a1c566901f05ff91ab221de4b6f68d9507e"
2021-09-19 18:21:23 +00:00
dependencies = [
"async-stream-impl",
"futures-core",
]
[[package]]
name = "async-stream-impl"
2022-03-23 14:46:30 +00:00
version = "0.3.3"
2021-09-19 18:21:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-23 14:46:30 +00:00
checksum = "10f203db73a71dfa2fb6dd22763990fa26f3d2625a6da2da900d23b87d26be27"
2021-09-19 18:21:23 +00:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "async-trait"
2022-09-28 23:34:07 +00:00
version = "0.1.57"
2021-09-19 18:21:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "76464446b8bc32758d7e88ee1a804d9914cd9b1cb264c029899680b0be29826f"
2021-09-19 18:21:23 +00:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "atty"
version = "0.2.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
dependencies = [
"hermit-abi",
"libc",
2021-03-10 02:14:42 +00:00
"winapi",
]
[[package]]
name = "autocfg"
2022-02-11 17:20:51 +00:00
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-11 17:20:51 +00:00
checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
[[package]]
name = "awc"
2022-09-28 23:34:07 +00:00
version = "3.0.1"
2021-02-10 20:37:44 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "80ca7ff88063086d2e2c70b9f3b29b2fcd999bac68ac21731e66781970d68519"
2021-02-10 20:37:44 +00:00
dependencies = [
2021-03-10 02:14:42 +00:00
"actix-codec",
"actix-http",
"actix-rt",
"actix-service",
2021-11-25 02:32:44 +00:00
"actix-tls",
"actix-utils",
"ahash",
2021-04-02 19:17:42 +00:00
"base64",
2021-03-10 02:14:42 +00:00
"bytes",
2021-06-26 17:27:54 +00:00
"cfg-if",
2021-02-10 20:37:44 +00:00
"derive_more",
"futures-core",
2021-11-25 02:32:44 +00:00
"futures-util",
"h2",
"http",
2022-02-11 17:20:51 +00:00
"itoa",
2021-02-10 20:37:44 +00:00
"log",
"mime",
"percent-encoding",
2021-03-10 02:14:42 +00:00
"pin-project-lite",
2021-04-02 19:17:42 +00:00
"rand",
"serde",
"serde_json",
"serde_urlencoded",
2021-11-25 02:32:44 +00:00
"tokio",
]
[[package]]
name = "axum"
2022-09-28 23:34:07 +00:00
version = "0.5.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "c9e3356844c4d6a6d6467b8da2cffb4a2820be256f50a3a386c9d152bab31043"
dependencies = [
"async-trait",
"axum-core",
"bitflags",
"bytes",
"futures-util",
"http",
"http-body",
"hyper",
"itoa",
"matchit",
"memchr",
"mime",
"percent-encoding",
"pin-project-lite",
"serde",
"sync_wrapper",
"tokio",
"tower",
"tower-http",
"tower-layer",
"tower-service",
]
[[package]]
name = "axum-core"
2022-09-28 23:34:07 +00:00
version = "0.2.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "d9f0c0a60006f2a293d82d571f635042a72edf927539b7685bd62d361963839b"
dependencies = [
"async-trait",
"bytes",
"futures-util",
"http",
"http-body",
"mime",
2022-09-28 23:34:07 +00:00
"tower-layer",
"tower-service",
]
2020-11-01 20:27:00 +00:00
[[package]]
name = "base64"
version = "0.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd"
[[package]]
name = "bitflags"
2021-08-31 21:37:04 +00:00
version = "1.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-31 21:37:04 +00:00
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
2022-07-02 15:56:37 +00:00
[[package]]
name = "bitvec"
version = "0.19.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "55f93d0ef3363c364d5976646a38f04cf67cfe1d4c8d160cdea02cab2c116b33"
dependencies = [
"funty",
"radium",
"tap",
"wyz",
]
[[package]]
name = "block-buffer"
2022-09-28 23:34:07 +00:00
version = "0.10.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "69cce20737498f97b993470a6e536b8523f0af7892a4f928cceb1ac5e52ebe7e"
dependencies = [
"generic-array",
]
[[package]]
name = "bumpalo"
2022-09-28 23:34:07 +00:00
version = "3.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "c1ad822118d20d2c234f427000d5acc36eabe1e29a348c89b63dd60b13f28e5d"
[[package]]
name = "bytecount"
2022-06-06 21:03:09 +00:00
version = "0.6.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-06 21:03:09 +00:00
checksum = "2c676a478f63e9fa2dd5368a42f28bba0d6c560b775f38583c8bbaa7fcd67c9c"
[[package]]
name = "byteorder"
version = "1.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
2021-02-10 20:37:44 +00:00
[[package]]
name = "bytes"
2022-09-28 23:34:07 +00:00
version = "1.2.1"
2021-02-10 20:37:44 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "ec8a7b6a70fde80372154c65702f00a0f56f3e1c36abbc6c440484be248856db"
2021-02-10 20:37:44 +00:00
[[package]]
name = "bytestring"
2022-07-02 15:56:37 +00:00
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-02 15:56:37 +00:00
checksum = "86b6a75fd3048808ef06af5cd79712be8111960adaf89d90250974b38fc3928a"
dependencies = [
2021-03-10 02:14:42 +00:00
"bytes",
]
2020-11-01 20:27:00 +00:00
[[package]]
name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
[[package]]
name = "clap"
2022-09-28 23:34:07 +00:00
version = "4.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "31c9484ccdc4cb8e7b117cbd0eb150c7c0f04464854e4679aeb50ef03b32d003"
dependencies = [
"atty",
"bitflags",
"clap_derive",
"clap_lex",
2022-07-02 15:56:37 +00:00
"once_cell",
"strsim",
"termcolor",
]
[[package]]
name = "clap_derive"
2022-09-28 23:34:07 +00:00
version = "4.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "ca689d7434ce44517a12a89456b2be4d1ea1cafcd8f581978c03d45f5a5c12a7"
dependencies = [
2022-09-28 23:34:07 +00:00
"heck",
"proc-macro-error",
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "clap_lex"
2022-09-28 23:34:07 +00:00
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "0d4198f73e42b4936b35b5bb248d81d2b595ecb170da0bac7655c54eedfa8da8"
dependencies = [
"os_str_bytes",
]
[[package]]
name = "console-api"
2022-09-28 23:34:07 +00:00
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "e57ff02e8ad8e06ab9731d5dc72dc23bef9200778eae1a89d555d8c42e5d4a86"
dependencies = [
2022-09-28 23:34:07 +00:00
"prost",
"prost-types",
"tonic",
"tracing-core",
]
[[package]]
name = "console-subscriber"
2022-09-28 23:34:07 +00:00
version = "0.1.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "22a3a81dfaf6b66bce5d159eddae701e3a002f194d378cbf7be5f053c281d9be"
dependencies = [
"console-api",
2022-01-24 04:55:43 +00:00
"crossbeam-channel",
2022-02-26 18:28:23 +00:00
"crossbeam-utils",
"futures",
"hdrhistogram",
"humantime",
2022-09-28 23:34:07 +00:00
"prost-types",
"serde",
"serde_json",
"thread_local",
"tokio",
"tokio-stream",
2022-09-28 23:34:07 +00:00
"tonic",
"tracing",
"tracing-core",
"tracing-subscriber",
]
2021-04-02 19:17:42 +00:00
[[package]]
name = "convert_case"
version = "0.4.0"
2020-09-10 14:27:31 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-02 19:17:42 +00:00
checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e"
2020-09-10 14:27:31 +00:00
[[package]]
2021-06-19 19:42:42 +00:00
name = "cpufeatures"
2022-09-28 23:34:07 +00:00
version = "0.2.5"
2020-09-10 14:27:31 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "28d997bd5e24a5928dd43e46dc529867e207907fe0b239c3477d924f7f2ca320"
2021-06-19 19:42:42 +00:00
dependencies = [
"libc",
]
2020-09-10 14:27:31 +00:00
[[package]]
name = "crc32fast"
2022-02-11 17:20:51 +00:00
version = "1.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-11 17:20:51 +00:00
checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d"
dependencies = [
"cfg-if",
]
2021-09-19 18:21:23 +00:00
[[package]]
name = "crossbeam-channel"
2022-09-28 23:34:07 +00:00
version = "0.5.6"
2021-09-19 18:21:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "c2dd04ddaf88237dc3b8d8f9a3c1004b506b54b3313403944054d23c0870c521"
2021-09-19 18:21:23 +00:00
dependencies = [
"cfg-if",
"crossbeam-utils",
]
[[package]]
name = "crossbeam-utils"
2022-09-28 23:34:07 +00:00
version = "0.8.11"
2021-09-19 18:21:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "51887d4adc7b564537b15adcfb307936f8075dfcd5f00dde9a9f1d29383682bc"
2021-09-19 18:21:23 +00:00
dependencies = [
"cfg-if",
2022-07-02 15:56:37 +00:00
"once_cell",
2021-09-19 18:21:23 +00:00
]
2021-12-28 16:55:20 +00:00
[[package]]
name = "crypto-common"
2022-09-28 23:34:07 +00:00
version = "0.1.6"
2021-12-28 16:55:20 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
2021-12-28 16:55:20 +00:00
dependencies = [
"generic-array",
2022-02-26 18:28:23 +00:00
"typenum",
2021-12-28 16:55:20 +00:00
]
2022-07-02 15:56:37 +00:00
[[package]]
name = "css-minify"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "692b185e3b7c9af96b3195f3021f53a931d896968ed2ad3fb1cdb6558b30c9ab"
dependencies = [
"derive_more",
"indexmap",
"nom 6.1.2",
]
2022-09-28 23:34:07 +00:00
[[package]]
name = "dashmap"
version = "5.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "907076dfda823b0b36d2a1bb5f90c96660a5bbcd7729e10727f07858f22c4edc"
dependencies = [
"cfg-if",
"hashbrown",
"lock_api",
"once_cell",
"parking_lot_core",
]
[[package]]
name = "derive_more"
2021-12-03 20:42:30 +00:00
version = "0.99.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-03 20:42:30 +00:00
checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321"
dependencies = [
2021-04-02 19:17:42 +00:00
"convert_case",
"proc-macro2",
"quote",
2021-10-21 16:17:47 +00:00
"rustc_version",
"syn",
]
[[package]]
name = "digest"
2022-09-28 23:34:07 +00:00
version = "0.10.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "adfbc57365a37acbd2ebf2b64d7e69bb766e2fea813521ed536f5d0520dcf86c"
dependencies = [
2021-12-28 16:55:20 +00:00
"block-buffer",
"crypto-common",
]
[[package]]
name = "dotenv"
2020-09-10 14:27:31 +00:00
version = "0.15.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-10 14:27:31 +00:00
checksum = "77c90badedccf4105eca100756a0b1289e191f6fcbdadd3cee1d2f614f97da8f"
[[package]]
name = "either"
2022-09-28 23:34:07 +00:00
version = "1.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "90e5c1c8368803113bf0c9584fc495a58b86dc8a29edbf8fe877d21d9507e797"
[[package]]
name = "encoding_rs"
2022-04-07 18:13:08 +00:00
version = "0.8.31"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-07 18:13:08 +00:00
checksum = "9852635589dc9f9ea1b6fe9f05b50ef208c85c834a562f0c6abb1c475736ec2b"
dependencies = [
2021-03-10 02:14:42 +00:00
"cfg-if",
]
2022-01-18 17:36:30 +00:00
[[package]]
name = "fastrand"
2022-09-28 23:34:07 +00:00
version = "1.8.0"
2022-01-18 17:36:30 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "a7a407cfaa3385c4ae6b23e84623d48c2798d06e3e6a1878f7f59f17b3f86499"
2022-01-18 17:36:30 +00:00
dependencies = [
"instant",
]
[[package]]
name = "fixedbitset"
2022-09-28 23:34:07 +00:00
version = "0.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80"
[[package]]
name = "flate2"
2022-06-06 21:03:09 +00:00
version = "1.0.24"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-06 21:03:09 +00:00
checksum = "f82b0f4c27ad9f8bfd1f3208d882da2b09c301bc1c828fd3a00d0216d2fbbff6"
dependencies = [
"crc32fast",
"miniz_oxide",
]
[[package]]
name = "fnv"
version = "1.0.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
2020-12-01 17:57:19 +00:00
[[package]]
name = "form_urlencoded"
2022-09-28 23:34:07 +00:00
version = "1.1.0"
2020-12-01 17:57:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "a9c384f161156f5260c24a097c56119f9be8c798586aecc13afbcbe7b7e26bf8"
2020-12-01 17:57:19 +00:00
dependencies = [
"percent-encoding",
]
2022-07-02 15:56:37 +00:00
[[package]]
name = "funty"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fed34cd105917e91daa4da6b3728c47b068749d6a62c59811f06ed2ac71d9da7"
2021-09-19 18:21:23 +00:00
[[package]]
name = "futures"
2022-09-28 23:34:07 +00:00
version = "0.3.24"
2021-09-19 18:21:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "7f21eda599937fba36daeb58a22e8f5cee2d14c4a17b5b7739c7c8e5e3b8230c"
2021-09-19 18:21:23 +00:00
dependencies = [
"futures-channel",
"futures-core",
"futures-executor",
2021-09-19 18:21:23 +00:00
"futures-io",
"futures-sink",
"futures-task",
"futures-util",
]
[[package]]
name = "futures-channel"
2022-09-28 23:34:07 +00:00
version = "0.3.24"
2021-09-19 18:21:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "30bdd20c28fadd505d0fd6712cdfcb0d4b5648baf45faef7f852afb2399bb050"
2021-09-19 18:21:23 +00:00
dependencies = [
"futures-core",
"futures-sink",
]
[[package]]
name = "futures-core"
2022-09-28 23:34:07 +00:00
version = "0.3.24"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "4e5aa3de05362c3fb88de6531e6296e85cde7739cccad4b9dfeeb7f6ebce56bf"
2021-09-19 18:21:23 +00:00
[[package]]
name = "futures-executor"
2022-09-28 23:34:07 +00:00
version = "0.3.24"
2021-09-19 18:21:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "9ff63c23854bee61b6e9cd331d523909f238fc7636290b96826e9cfa5faa00ab"
2021-09-19 18:21:23 +00:00
dependencies = [
"futures-core",
"futures-task",
"futures-util",
]
[[package]]
name = "futures-io"
2022-09-28 23:34:07 +00:00
version = "0.3.24"
2021-09-19 18:21:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "bbf4d2a7a308fd4578637c0b17c7e1c7ba127b8f6ba00b29f717e9655d85eb68"
2021-09-19 18:21:23 +00:00
[[package]]
name = "futures-macro"
2022-09-28 23:34:07 +00:00
version = "0.3.24"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "42cd15d1c7456c04dbdf7e88bcd69760d74f3a798d6444e16974b505b0e62f17"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "futures-sink"
2022-09-28 23:34:07 +00:00
version = "0.3.24"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "21b20ba5a92e727ba30e72834706623d94ac93a725410b6a6b6fbc1b07f7ba56"
[[package]]
name = "futures-task"
2022-09-28 23:34:07 +00:00
version = "0.3.24"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "a6508c467c73851293f390476d4491cf4d227dbabcd4170f3bb6044959b294f1"
[[package]]
name = "futures-util"
2022-09-28 23:34:07 +00:00
version = "0.3.24"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "44fb6cb1be61cc1d2e43b262516aafcf63b241cffdb1d3fa115f91d9c7b09c90"
dependencies = [
2021-09-19 18:21:23 +00:00
"futures-channel",
"futures-core",
2021-09-19 18:21:23 +00:00
"futures-io",
"futures-macro",
"futures-sink",
"futures-task",
2021-09-19 18:21:23 +00:00
"memchr",
2021-03-10 02:14:42 +00:00
"pin-project-lite",
"pin-utils",
2021-09-19 18:21:23 +00:00
"slab",
]
[[package]]
name = "generic-array"
2022-09-28 23:34:07 +00:00
version = "0.14.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "bff49e947297f3312447abdca79f45f4738097cc82b06e72054d2223f601f1b9"
dependencies = [
"typenum",
2020-09-10 14:27:31 +00:00
"version_check",
]
2021-02-10 20:37:44 +00:00
[[package]]
name = "getrandom"
2022-07-02 15:56:37 +00:00
version = "0.2.7"
2021-02-10 20:37:44 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-02 15:56:37 +00:00
checksum = "4eb1a864a501629691edf6c15a593b7a51eebaa1e8468e9ddc623de7c9b58ec6"
2021-02-10 20:37:44 +00:00
dependencies = [
2021-03-10 02:14:42 +00:00
"cfg-if",
"libc",
2022-07-02 15:56:37 +00:00
"wasi",
]
[[package]]
name = "h2"
2022-09-28 23:34:07 +00:00
version = "0.3.14"
2021-02-10 20:37:44 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "5ca32592cf21ac7ccab1825cd87f6c9b3d9022c44d086172ed0966bec8af30be"
2021-02-10 20:37:44 +00:00
dependencies = [
2021-03-10 02:14:42 +00:00
"bytes",
2021-02-10 20:37:44 +00:00
"fnv",
"futures-core",
"futures-sink",
"futures-util",
"http",
"indexmap",
"slab",
2021-03-10 02:14:42 +00:00
"tokio",
2022-09-28 23:34:07 +00:00
"tokio-util",
2020-09-10 14:27:31 +00:00
"tracing",
]
2020-09-10 14:27:31 +00:00
[[package]]
name = "hashbrown"
2022-09-28 23:34:07 +00:00
version = "0.12.3"
2020-09-10 14:27:31 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
2020-09-10 14:27:31 +00:00
[[package]]
name = "hdrhistogram"
2022-09-28 23:34:07 +00:00
version = "7.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "7f19b9f54f7c7f55e31401bb647626ce0cf0f67b0004982ce815b3ee72a02aa8"
dependencies = [
"base64",
"byteorder",
"flate2",
2022-07-02 15:56:37 +00:00
"nom 7.1.1",
"num-traits",
]
[[package]]
name = "heck"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2540771e65fc8cb83cd6e8a237f70c319bd5c29f78ed1084ba5d50eeac86f7f9"
[[package]]
name = "hermit-abi"
2021-06-26 17:27:54 +00:00
version = "0.1.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-26 17:27:54 +00:00
checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
dependencies = [
"libc",
]
[[package]]
name = "http"
2022-07-02 15:56:37 +00:00
version = "0.2.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-02 15:56:37 +00:00
checksum = "75f43d41e26995c17e71ee126451dd3941010b0514a81a9d11f3b341debc2399"
dependencies = [
2021-03-10 02:14:42 +00:00
"bytes",
"fnv",
2022-02-11 17:20:51 +00:00
"itoa",
]
2021-09-19 18:21:23 +00:00
[[package]]
name = "http-body"
2022-06-06 21:03:09 +00:00
version = "0.4.5"
2021-09-19 18:21:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-06 21:03:09 +00:00
checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1"
2021-09-19 18:21:23 +00:00
dependencies = [
"bytes",
"http",
"pin-project-lite",
]
[[package]]
name = "http-range-header"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0bfe8eed0a9285ef776bb792479ea3834e8b94e13d615c2f66d03dd50a435a29"
[[package]]
name = "httparse"
2022-09-28 23:34:07 +00:00
version = "1.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904"
[[package]]
2021-09-19 18:21:23 +00:00
name = "httpdate"
2021-11-25 02:32:44 +00:00
version = "1.0.2"
2021-09-19 18:21:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-11-25 02:32:44 +00:00
checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421"
2021-09-19 18:21:23 +00:00
[[package]]
name = "humantime"
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
2021-09-19 18:21:23 +00:00
[[package]]
name = "hyper"
2022-09-28 23:34:07 +00:00
version = "0.14.20"
2021-09-19 18:21:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "02c929dc5c39e335a03c405292728118860721b10190d98c2a0f0efd5baafbac"
2021-09-19 18:21:23 +00:00
dependencies = [
"bytes",
"futures-channel",
"futures-core",
"futures-util",
"h2",
"http",
"http-body",
"httparse",
"httpdate",
2022-02-11 17:20:51 +00:00
"itoa",
2021-09-19 18:21:23 +00:00
"pin-project-lite",
"socket2",
"tokio",
"tower-service",
"tracing",
"want",
]
[[package]]
name = "hyper-timeout"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-19 18:21:23 +00:00
checksum = "bbb958482e8c7be4bc3cf272a766a2b0bf1a6755e7a6ae777f017a31d11b13b1"
dependencies = [
"hyper",
"pin-project-lite",
"tokio",
"tokio-io-timeout",
]
[[package]]
name = "idna"
2022-09-28 23:34:07 +00:00
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6"
dependencies = [
"unicode-bidi",
"unicode-normalization",
]
[[package]]
name = "indexmap"
2022-07-02 15:56:37 +00:00
version = "1.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-02 15:56:37 +00:00
checksum = "10a35a97730320ffe8e2d410b5d3b69279b98d2c14bdb8b70ea89ecf7888d41e"
dependencies = [
"autocfg",
2020-09-10 14:27:31 +00:00
"hashbrown",
]
2020-09-10 14:27:31 +00:00
[[package]]
name = "instant"
2021-10-21 16:17:47 +00:00
version = "0.1.12"
2020-09-10 14:27:31 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-21 16:17:47 +00:00
checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
2020-10-03 00:46:54 +00:00
dependencies = [
2021-03-10 02:14:42 +00:00
"cfg-if",
]
[[package]]
name = "itertools"
2022-09-28 23:34:07 +00:00
version = "0.10.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
dependencies = [
"either",
]
[[package]]
name = "itoa"
2022-09-28 23:34:07 +00:00
version = "1.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "6c8af84674fe1f223a982c933a0ee1086ac4d4052aa0fb8060c12c6ad838e754"
2021-09-19 18:21:23 +00:00
[[package]]
name = "js-sys"
2022-09-28 23:34:07 +00:00
version = "0.3.60"
2021-09-19 18:21:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "49409df3e3bf0856b916e2ceaca09ee28e6871cf7d9ce97a692cacfdb2a25a47"
2021-09-19 18:21:23 +00:00
dependencies = [
"wasm-bindgen",
]
[[package]]
name = "language-tags"
2021-06-19 19:42:42 +00:00
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-19 19:42:42 +00:00
checksum = "d4345964bb142484797b161f473a503a434de77149dd8c7427788c6e13379388"
[[package]]
name = "lazy_static"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
2022-07-02 15:56:37 +00:00
[[package]]
name = "lexical-core"
version = "0.7.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6607c62aa161d23d17a9072cc5da0be67cdfc89d3afb1e8d9c842bebc2525ffe"
dependencies = [
"arrayvec",
"bitflags",
"cfg-if",
"ryu",
"static_assertions",
]
[[package]]
name = "libc"
2022-09-28 23:34:07 +00:00
version = "0.2.133"
2021-04-02 19:17:42 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "c0f80d65747a3e43d1596c7c5492d95d5edddaabd45a7fcdb02b95f644164966"
2021-04-02 19:17:42 +00:00
[[package]]
name = "local-channel"
2022-06-06 21:03:09 +00:00
version = "0.1.3"
2021-04-02 19:17:42 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-06 21:03:09 +00:00
checksum = "7f303ec0e94c6c54447f84f3b0ef7af769858a9c4ef56ef2a986d3dcd4c3fc9c"
2021-04-02 19:17:42 +00:00
dependencies = [
"futures-core",
"futures-sink",
"futures-util",
"local-waker",
]
[[package]]
name = "local-waker"
2022-06-06 21:03:09 +00:00
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-06 21:03:09 +00:00
checksum = "e34f76eb3611940e0e7d53a9aaa4e6a3151f69541a282fd0dad5571420c53ff1"
[[package]]
name = "lock_api"
2022-09-28 23:34:07 +00:00
version = "0.4.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df"
dependencies = [
2022-04-04 01:29:20 +00:00
"autocfg",
"scopeguard",
]
[[package]]
name = "log"
version = "0.4.17"
2020-06-19 19:13:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
2020-06-19 19:13:49 +00:00
dependencies = [
2021-03-10 02:14:42 +00:00
"cfg-if",
2020-06-19 19:13:49 +00:00
]
2021-09-19 18:21:23 +00:00
[[package]]
name = "matchers"
2021-10-25 01:48:19 +00:00
version = "0.1.0"
2021-09-19 18:21:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-25 01:48:19 +00:00
checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558"
2021-09-19 18:21:23 +00:00
dependencies = [
"regex-automata",
]
[[package]]
name = "matchit"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "73cbba799671b762df5a175adf59ce145165747bb891505c43d09aefbbf38beb"
[[package]]
name = "md5"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "490cc448043f947bae3cbee9c203358d62dbee0db12107a74be5c30ccfd09771"
[[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"
2021-01-05 17:03:18 +00:00
[[package]]
name = "minify-html"
2022-09-28 23:34:07 +00:00
version = "0.10.1"
2021-01-05 17:03:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "d14fbf5c1cb61efaf3086895eb0bc3400ff9c064b93d847a8e860321db803a27"
2022-07-02 15:56:37 +00:00
dependencies = [
"aho-corasick",
"css-minify",
"lazy_static",
"memchr",
"minify-js",
]
[[package]]
name = "minify-js"
2022-09-28 23:34:07 +00:00
version = "0.2.4"
2022-07-02 15:56:37 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "35e057de7e5b920675f6c9de1a7d1b6862685f4e57953ee083ce01233e4b5cac"
2021-01-05 17:03:18 +00:00
dependencies = [
"aho-corasick",
"lazy_static",
"memchr",
]
[[package]]
name = "minimal-lexical"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
[[package]]
name = "miniz_oxide"
2022-09-28 23:34:07 +00:00
version = "0.5.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "96590ba8f175222643a85693f33d26e9c8a015f599c216509b1a6894af675d34"
dependencies = [
"adler",
]
2021-12-13 17:33:44 +00:00
[[package]]
name = "mio"
2022-07-02 15:56:37 +00:00
version = "0.8.4"
2021-12-13 17:33:44 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-02 15:56:37 +00:00
checksum = "57ee1c23c7c63b0c9250c339ffdc69255f110b298b901b9f6c82547b7b87caaf"
2021-12-13 17:33:44 +00:00
dependencies = [
"libc",
"log",
2022-07-02 15:56:37 +00:00
"wasi",
2022-06-06 21:03:09 +00:00
"windows-sys",
]
2021-09-19 18:21:23 +00:00
[[package]]
name = "multimap"
version = "0.8.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e5ce46fe64a9d73be07dcbe690a38ce1b293be448fd8ce1e6c1b8062c9f72c6a"
2022-07-02 15:56:37 +00:00
[[package]]
name = "nom"
version = "6.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e7413f999671bd4745a7b624bd370a569fb6bc574b23c83a3c5ed2e453f3d5e2"
dependencies = [
"bitvec",
"funty",
"lexical-core",
"memchr",
"version_check",
]
[[package]]
name = "nom"
2022-03-23 14:46:30 +00:00
version = "7.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-23 14:46:30 +00:00
checksum = "a8903e5a29a317527874d0402f867152a3d21c908bb0b933e416c65e301d4c36"
dependencies = [
"memchr",
"minimal-lexical",
]
2020-12-01 17:57:19 +00:00
[[package]]
name = "nom_locate"
2022-02-11 17:20:51 +00:00
version = "4.0.0"
2020-12-01 17:57:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-11 17:20:51 +00:00
checksum = "37794436ca3029a3089e0b95d42da1f0b565ad271e4d3bb4bad0c7bb70b10605"
2020-12-01 17:57:19 +00:00
dependencies = [
"bytecount",
"memchr",
2022-07-02 15:56:37 +00:00
"nom 7.1.1",
2020-12-01 17:57:19 +00:00
]
[[package]]
name = "num-bigint"
2021-11-25 02:32:44 +00:00
version = "0.4.3"
2020-12-01 17:57:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-11-25 02:32:44 +00:00
checksum = "f93ab6289c7b344a8a9f60f88d80aa20032336fe78da341afc91c8a2341fc75f"
2020-12-01 17:57:19 +00:00
dependencies = [
"autocfg",
"num-integer",
"num-traits",
]
[[package]]
name = "num-integer"
version = "0.1.45"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9"
dependencies = [
"autocfg",
"num-traits",
]
[[package]]
name = "num-rational"
2022-07-02 15:56:37 +00:00
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-02 15:56:37 +00:00
checksum = "0638a1c9d0a3c0914158145bc76cff373a75a627e6ecbfb71cbe6f453a5a19b0"
dependencies = [
"autocfg",
"num-integer",
"num-traits",
]
[[package]]
name = "num-traits"
2022-06-06 21:03:09 +00:00
version = "0.2.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-06 21:03:09 +00:00
checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd"
dependencies = [
"autocfg",
]
[[package]]
name = "num_cpus"
2021-12-28 16:55:20 +00:00
version = "1.13.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-28 16:55:20 +00:00
checksum = "19e64526ebdee182341572e50e9ad03965aa510cd94427a4549448f285e957a1"
dependencies = [
"hermit-abi",
"libc",
]
2022-01-24 04:55:43 +00:00
[[package]]
name = "num_threads"
2022-06-06 21:03:09 +00:00
version = "0.1.6"
2022-01-24 04:55:43 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-06 21:03:09 +00:00
checksum = "2819ce041d2ee131036f4fc9d6ae7ae125a3a40e97ba64d04fe799ad9dabbb44"
2022-01-24 04:55:43 +00:00
dependencies = [
"libc",
]
[[package]]
name = "once_cell"
2022-09-28 23:34:07 +00:00
version = "1.15.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "e82dad04139b71a90c080c8463fe0dc7902db5192d939bd0950f074d014339e1"
2021-09-19 18:21:23 +00:00
[[package]]
name = "opentelemetry"
2022-09-28 23:34:07 +00:00
version = "0.18.0"
2021-09-19 18:21:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "69d6c3d7288a106c0a363e4b0e8d308058d56902adefb16f4936f417ffef086e"
2021-09-19 18:21:23 +00:00
dependencies = [
2022-09-28 23:34:07 +00:00
"opentelemetry_api",
"opentelemetry_sdk",
2021-09-19 18:21:23 +00:00
]
[[package]]
name = "opentelemetry-otlp"
2022-09-28 23:34:07 +00:00
version = "0.11.0"
2021-09-19 18:21:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "d1c928609d087790fc936a1067bdc310ae702bdf3b090c3f281b713622c8bbde"
2021-09-19 18:21:23 +00:00
dependencies = [
"async-trait",
"futures",
2022-02-04 17:42:22 +00:00
"futures-util",
2021-09-19 18:21:23 +00:00
"http",
"opentelemetry",
2022-09-28 23:34:07 +00:00
"opentelemetry-proto",
"prost",
2021-09-19 18:21:23 +00:00
"thiserror",
"tokio",
2022-09-28 23:34:07 +00:00
"tonic",
]
[[package]]
name = "opentelemetry-proto"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d61a2f56df5574508dd86aaca016c917489e589ece4141df1b5e349af8d66c28"
dependencies = [
"futures",
"futures-util",
"opentelemetry",
"prost",
"tonic",
2022-02-04 17:42:22 +00:00
"tonic-build",
2021-09-19 18:21:23 +00:00
]
2022-09-28 23:34:07 +00:00
[[package]]
name = "opentelemetry_api"
version = "0.18.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c24f96e21e7acc813c7a8394ee94978929db2bcc46cf6b5014fc612bf7760c22"
dependencies = [
"fnv",
"futures-channel",
"futures-util",
"indexmap",
"js-sys",
"once_cell",
"pin-project-lite",
"thiserror",
]
[[package]]
name = "opentelemetry_sdk"
version = "0.18.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1ca41c4933371b61c2a2f214bf16931499af4ec90543604ec828f7a625c09113"
dependencies = [
"async-trait",
"crossbeam-channel",
"dashmap",
"fnv",
"futures-channel",
"futures-executor",
"futures-util",
"once_cell",
"opentelemetry_api",
"percent-encoding",
"rand",
"thiserror",
"tokio",
"tokio-stream",
]
[[package]]
name = "os_str_bytes"
2022-09-28 23:34:07 +00:00
version = "6.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "9ff7415e9ae3fff1225851df9e0d9e4e5479f947619774677a63572e55e80eff"
[[package]]
name = "parking_lot"
2022-06-06 21:03:09 +00:00
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-06 21:03:09 +00:00
checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
dependencies = [
"lock_api",
"parking_lot_core",
]
[[package]]
name = "parking_lot_core"
version = "0.9.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "09a279cbf25cb0757810394fbc1e359949b59e348145c643a939a525692e6929"
dependencies = [
2021-03-10 02:14:42 +00:00
"cfg-if",
"libc",
"redox_syscall",
"smallvec",
2022-02-26 18:28:23 +00:00
"windows-sys",
]
2021-06-19 19:42:42 +00:00
[[package]]
name = "paste"
2022-09-28 23:34:07 +00:00
version = "1.0.9"
2021-06-19 19:42:42 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "b1de2e551fb905ac83f73f7aedf2f0cb4a0da7e35efa24a202a936269f1f18e1"
2021-06-19 19:42:42 +00:00
[[package]]
name = "percent-encoding"
2022-09-28 23:34:07 +00:00
version = "2.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e"
[[package]]
name = "petgraph"
2022-06-06 21:03:09 +00:00
version = "0.6.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-06 21:03:09 +00:00
checksum = "e6d5014253a1331579ce62aa67443b4a658c5e7dd03d4bc6d302b94474888143"
dependencies = [
2022-02-04 17:42:22 +00:00
"fixedbitset",
2021-09-19 18:21:23 +00:00
"indexmap",
]
[[package]]
name = "pict-rs-proxy"
2022-09-28 23:34:07 +00:00
version = "0.4.0-beta.1"
dependencies = [
2021-03-10 02:14:42 +00:00
"actix-rt",
"actix-web",
"anyhow",
2021-03-10 02:14:42 +00:00
"awc",
"clap",
"console-subscriber",
"dotenv",
"mime",
2021-01-05 17:03:18 +00:00
"minify-html",
"once_cell",
2021-09-19 18:21:23 +00:00
"opentelemetry",
"opentelemetry-otlp",
"ructe",
"serde",
"serde_qs",
2020-06-14 16:16:12 +00:00
"thiserror",
2021-09-19 18:21:23 +00:00
"tracing",
"tracing-actix-web",
"tracing-awc",
"tracing-error",
"tracing-futures",
"tracing-log",
"tracing-opentelemetry",
"tracing-subscriber",
"url",
]
2020-11-01 20:27:00 +00:00
[[package]]
name = "pin-project"
2022-09-28 23:34:07 +00:00
version = "1.0.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "ad29a609b6bcd67fee905812e544992d216af9d755757c05ed2d0e15a74c6ecc"
dependencies = [
2021-03-10 02:14:42 +00:00
"pin-project-internal",
]
[[package]]
name = "pin-project-internal"
2022-09-28 23:34:07 +00:00
version = "1.0.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "069bdb1e05adc7a8990dce9cc75370895fbe4e3d58b9b73bf1aee56359344a55"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "pin-project-lite"
version = "0.2.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116"
2020-12-01 17:57:19 +00:00
[[package]]
name = "pin-utils"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
[[package]]
name = "ppv-lite86"
2022-01-18 17:36:30 +00:00
version = "0.2.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-18 17:36:30 +00:00
checksum = "eb9f9e6e233e5c4a35559a617bf40a4ec447db2e84c20b55a6f83167b7e57872"
2022-09-28 23:34:07 +00:00
[[package]]
name = "prettyplease"
version = "0.1.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a49e86d2c26a24059894a3afa13fd17d063419b05dfb83f06d9c3566060c3f5a"
dependencies = [
"proc-macro2",
"syn",
]
[[package]]
name = "proc-macro-error"
2020-09-10 14:27:31 +00:00
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-10 14:27:31 +00:00
checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
dependencies = [
"proc-macro-error-attr",
"proc-macro2",
"quote",
"syn",
"version_check",
]
[[package]]
name = "proc-macro-error-attr"
2020-09-10 14:27:31 +00:00
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-10 14:27:31 +00:00
checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
dependencies = [
"proc-macro2",
"quote",
"version_check",
]
[[package]]
name = "proc-macro2"
2022-09-28 23:34:07 +00:00
version = "1.0.45"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "3edcd08cf4fea98d1ae6c9ddd3b8ccb1acac7c3693d62625969a7daa04a2ae36"
dependencies = [
2022-06-06 21:03:09 +00:00
"unicode-ident",
]
[[package]]
name = "prost"
2022-09-28 23:34:07 +00:00
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "399c3c31cdec40583bb68f0b18403400d01ec4289c383aa047560439952c4dd7"
dependencies = [
"bytes",
2022-09-28 23:34:07 +00:00
"prost-derive",
]
[[package]]
name = "prost-build"
2022-09-28 23:34:07 +00:00
version = "0.11.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "7f835c582e6bd972ba8347313300219fed5bfa52caf175298d860b61ff6069bb"
dependencies = [
"bytes",
2022-09-28 23:34:07 +00:00
"heck",
"itertools",
"lazy_static",
"log",
"multimap",
2022-02-04 17:42:22 +00:00
"petgraph",
2022-09-28 23:34:07 +00:00
"prost",
"prost-types",
"regex",
2021-09-19 18:21:23 +00:00
"tempfile",
"which",
]
[[package]]
name = "prost-derive"
2022-09-28 23:34:07 +00:00
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "7345d5f0e08c0536d7ac7229952590239e77abf0a0100a1b1d890add6ea96364"
dependencies = [
"anyhow",
"itertools",
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "prost-types"
2022-09-28 23:34:07 +00:00
version = "0.11.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "4dfaa718ad76a44b3415e6c4d53b17c8f99160dcb3a99b10470fce8ad43f6e3e"
dependencies = [
"bytes",
2022-09-28 23:34:07 +00:00
"prost",
2021-09-19 18:21:23 +00:00
]
[[package]]
name = "quote"
2022-09-28 23:34:07 +00:00
version = "1.0.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "bbe448f377a7d6961e30f5955f9b8d106c3f5e449d493ee1b125c1d43c2b5179"
dependencies = [
"proc-macro2",
]
2022-07-02 15:56:37 +00:00
[[package]]
name = "radium"
version = "0.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "941ba9d78d8e2f7ce474c015eea4d9c6d25b6a3327f9832ee29a4de27f91bbb8"
2021-02-10 20:37:44 +00:00
[[package]]
name = "rand"
2022-02-26 18:28:23 +00:00
version = "0.8.5"
2021-02-10 20:37:44 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-26 18:28:23 +00:00
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
2021-02-10 20:37:44 +00:00
dependencies = [
"libc",
2021-04-02 19:17:42 +00:00
"rand_chacha",
"rand_core",
2021-02-10 20:37:44 +00:00
]
[[package]]
name = "rand_chacha"
2021-06-19 19:42:42 +00:00
version = "0.3.1"
2021-02-10 20:37:44 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-19 19:42:42 +00:00
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
2021-02-10 20:37:44 +00:00
dependencies = [
"ppv-lite86",
2021-04-02 19:17:42 +00:00
"rand_core",
2021-02-10 20:37:44 +00:00
]
[[package]]
name = "rand_core"
2022-09-28 23:34:07 +00:00
version = "0.6.4"
2021-02-10 20:37:44 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
2021-02-10 20:37:44 +00:00
dependencies = [
2021-04-02 19:17:42 +00:00
"getrandom",
2021-02-10 20:37:44 +00:00
]
[[package]]
name = "redox_syscall"
2022-09-28 23:34:07 +00:00
version = "0.2.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
2021-03-10 02:14:42 +00:00
dependencies = [
"bitflags",
]
[[package]]
name = "regex"
2022-09-28 23:34:07 +00:00
version = "1.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "4c4eb3267174b8c6c2f654116623910a0fef09c4753f8dd83db29c48a0df988b"
dependencies = [
"aho-corasick",
"memchr",
"regex-syntax",
]
2021-09-19 18:21:23 +00:00
[[package]]
name = "regex-automata"
version = "0.1.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
dependencies = [
"regex-syntax",
]
[[package]]
name = "regex-syntax"
2022-09-28 23:34:07 +00:00
version = "0.6.27"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "a3f87b73ce11b1619a3c6332f45341e0047173771e8b8b73f87bfeefb7b56244"
2021-09-19 18:21:23 +00:00
[[package]]
name = "remove_dir_all"
version = "0.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7"
dependencies = [
"winapi",
]
[[package]]
name = "rsass"
2022-09-28 23:34:07 +00:00
version = "0.26.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "665387d3be91521de331a04cc7118c8c129ffe43c5f4e8a61e78990850046b5a"
dependencies = [
2022-09-28 23:34:07 +00:00
"arc-swap",
2022-02-11 17:20:51 +00:00
"fastrand",
"lazy_static",
2022-07-02 15:56:37 +00:00
"nom 7.1.1",
2020-12-01 17:57:19 +00:00
"nom_locate",
"num-bigint",
"num-integer",
"num-rational",
"num-traits",
2022-09-28 23:34:07 +00:00
"tracing",
]
[[package]]
name = "ructe"
2022-09-28 23:34:07 +00:00
version = "0.15.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "85517cd381cf0c34694881d8aaf173107c6af7670e66cec18d7a1a8bfce3b758"
dependencies = [
2021-04-02 19:17:42 +00:00
"base64",
"bytecount",
"itertools",
"md5",
"mime",
2022-07-02 15:56:37 +00:00
"nom 7.1.1",
"rsass",
]
2021-08-31 21:37:04 +00:00
[[package]]
name = "rustc_version"
2021-12-03 20:42:30 +00:00
version = "0.4.0"
2021-08-31 21:37:04 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-03 20:42:30 +00:00
checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
2021-08-31 21:37:04 +00:00
dependencies = [
2021-10-21 16:17:47 +00:00
"semver",
]
[[package]]
name = "ryu"
2022-09-28 23:34:07 +00:00
version = "1.0.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "4501abdff3ae82a1c1b477a17252eb69cee9e66eb915c1abaa4f44d873df9f09"
[[package]]
name = "scopeguard"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
2021-08-31 21:37:04 +00:00
[[package]]
name = "semver"
2022-09-28 23:34:07 +00:00
version = "1.0.14"
2021-08-31 21:37:04 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "e25dfac463d778e353db5be2449d1cce89bd6fd23c9f1ea21310ce6e5a1b29c4"
2021-08-31 21:37:04 +00:00
[[package]]
name = "serde"
2022-09-28 23:34:07 +00:00
version = "1.0.145"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "728eb6351430bccb993660dfffc5a72f91ccc1295abaa8ce19b27ebe4f75568b"
dependencies = [
"serde_derive",
]
[[package]]
name = "serde_derive"
2022-09-28 23:34:07 +00:00
version = "1.0.145"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "81fa1584d3d1bcacd84c277a0dfe21f5b0f6accf4a23d04d4c6d61f1af522b4c"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "serde_json"
2022-09-28 23:34:07 +00:00
version = "1.0.85"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "e55a28e3aaef9d5ce0506d0a14dbba8054ddc7e499ef522dd8b26859ec9d4a44"
dependencies = [
2022-02-11 17:20:51 +00:00
"itoa",
"ryu",
"serde",
]
[[package]]
name = "serde_qs"
2022-09-28 23:34:07 +00:00
version = "0.10.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "8cac3f1e2ca2fe333923a1ae72caca910b98ed0630bb35ef6f8c8517d6e81afa"
dependencies = [
"actix-web",
"futures",
"percent-encoding",
"serde",
"thiserror",
]
[[package]]
name = "serde_urlencoded"
2022-01-18 17:36:30 +00:00
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-18 17:36:30 +00:00
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
dependencies = [
2020-12-01 17:57:19 +00:00
"form_urlencoded",
2022-02-11 17:20:51 +00:00
"itoa",
2020-12-01 17:57:19 +00:00
"ryu",
"serde",
]
[[package]]
2022-07-02 15:56:37 +00:00
name = "sha1"
2022-09-28 23:34:07 +00:00
version = "0.10.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "f04293dc80c3993519f2d7f6f511707ee7094fe0c6d3406feb330cdb3540eba3"
dependencies = [
2021-03-10 02:14:42 +00:00
"cfg-if",
2021-06-19 19:42:42 +00:00
"cpufeatures",
"digest",
]
2021-09-19 18:21:23 +00:00
[[package]]
name = "sharded-slab"
2021-10-21 16:17:47 +00:00
version = "0.1.4"
2021-09-19 18:21:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-21 16:17:47 +00:00
checksum = "900fba806f70c630b0a382d0d825e17a0f19fcd059a2ade1ff237bcddf446b31"
2021-09-19 18:21:23 +00:00
dependencies = [
"lazy_static",
]
[[package]]
name = "signal-hook-registry"
2021-06-19 19:42:42 +00:00
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-19 19:42:42 +00:00
checksum = "e51e73328dc4ac0c7ccbda3a494dfa03df1de2f46018127f60c693f2648455b0"
dependencies = [
"libc",
]
[[package]]
name = "slab"
2022-09-28 23:34:07 +00:00
version = "0.4.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "4614a76b2a8be0058caa9dbbaf66d988527d86d003c11a94fbd335d7661edcef"
dependencies = [
"autocfg",
]
[[package]]
name = "smallvec"
2022-07-02 15:56:37 +00:00
version = "1.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-02 15:56:37 +00:00
checksum = "2fd0db749597d91ff862fd1d55ea87f7855a744a8425a64695b6fca237d1dad1"
[[package]]
name = "socket2"
2022-09-28 23:34:07 +00:00
version = "0.4.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "02e2d2db9033d13a1567121ddd7a095ee144db4e1ca1b1bda3419bc0da294ebd"
dependencies = [
"libc",
2021-03-10 02:14:42 +00:00
"winapi",
]
2022-07-02 15:56:37 +00:00
[[package]]
name = "static_assertions"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
[[package]]
name = "strsim"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
[[package]]
name = "syn"
2022-09-28 23:34:07 +00:00
version = "1.0.101"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "e90cde112c4b9690b8cbe810cba9ddd8bc1d7472e2cae317b69e9438c1cba7d2"
dependencies = [
"proc-macro2",
"quote",
2022-06-06 21:03:09 +00:00
"unicode-ident",
]
[[package]]
name = "sync_wrapper"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "20518fe4a4c9acf048008599e464deb21beeae3d3578418951a189c235a7a9a8"
2022-07-02 15:56:37 +00:00
[[package]]
name = "tap"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
[[package]]
2021-09-19 18:21:23 +00:00
name = "tempfile"
2022-01-18 17:36:30 +00:00
version = "3.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-18 17:36:30 +00:00
checksum = "5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4"
dependencies = [
2021-09-19 18:21:23 +00:00
"cfg-if",
2022-01-18 17:36:30 +00:00
"fastrand",
2021-09-19 18:21:23 +00:00
"libc",
"redox_syscall",
"remove_dir_all",
"winapi",
]
[[package]]
name = "termcolor"
version = "1.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bab24d30b911b2376f3a13cc2cd443142f0c81dda04c118693e35b3835757755"
dependencies = [
"winapi-util",
]
[[package]]
name = "thiserror"
2022-09-28 23:34:07 +00:00
version = "1.0.37"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "10deb33631e3c9018b9baf9dcbbc4f737320d2b576bac10f6aefa048fa407e3e"
dependencies = [
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
2022-09-28 23:34:07 +00:00
version = "1.0.37"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "982d17546b47146b28f7c22e3d08465f6b8903d0ea13c1660d9d84a6e7adcdbb"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
2021-09-19 18:21:23 +00:00
[[package]]
name = "thread_local"
2022-01-24 04:55:43 +00:00
version = "1.1.4"
2021-09-19 18:21:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-24 04:55:43 +00:00
checksum = "5516c27b78311c50bf42c071425c560ac799b11c30b31f87e3081965fe5e0180"
2021-09-19 18:21:23 +00:00
dependencies = [
"once_cell",
]
[[package]]
name = "time"
2022-09-28 23:34:07 +00:00
version = "0.3.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "3c3f9a28b618c3a6b9251b6908e9c99e04b9e5c02e6581ccbb67d59c34ef7f9b"
dependencies = [
2022-02-11 17:20:51 +00:00
"itoa",
"libc",
2022-01-24 04:55:43 +00:00
"num_threads",
]
[[package]]
name = "tinyvec"
version = "1.6.0"
2020-10-03 00:46:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
2020-10-03 00:46:54 +00:00
dependencies = [
"tinyvec_macros",
]
[[package]]
name = "tinyvec_macros"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
[[package]]
name = "tokio"
2022-09-28 23:34:07 +00:00
version = "1.21.2"
2021-02-10 20:37:44 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "a9e03c497dc955702ba729190dc4aac6f2a0ce97f913e5b1b5912fc5039d9099"
2021-02-10 20:37:44 +00:00
dependencies = [
2022-09-28 23:34:07 +00:00
"autocfg",
2021-03-10 02:14:42 +00:00
"bytes",
2021-02-10 20:37:44 +00:00
"libc",
"memchr",
2022-02-26 18:28:23 +00:00
"mio",
2021-02-10 20:37:44 +00:00
"parking_lot",
2021-03-10 02:14:42 +00:00
"pin-project-lite",
2021-02-10 20:37:44 +00:00
"signal-hook-registry",
2022-02-26 18:28:23 +00:00
"socket2",
2021-09-19 18:21:23 +00:00
"tokio-macros",
"tracing",
2021-03-10 02:14:42 +00:00
"winapi",
2021-02-10 20:37:44 +00:00
]
2021-09-19 18:21:23 +00:00
[[package]]
name = "tokio-io-timeout"
2022-01-18 17:36:30 +00:00
version = "1.2.0"
2021-09-19 18:21:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-18 17:36:30 +00:00
checksum = "30b74022ada614a1b4834de765f9bb43877f910cc8ce4be40e89042c9223a8bf"
2021-09-19 18:21:23 +00:00
dependencies = [
"pin-project-lite",
"tokio",
]
[[package]]
name = "tokio-macros"
2022-06-06 21:03:09 +00:00
version = "1.8.0"
2021-09-19 18:21:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-06 21:03:09 +00:00
checksum = "9724f9a975fb987ef7a3cd9be0350edcbe130698af5b8f7a631e23d42d052484"
2021-09-19 18:21:23 +00:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "tokio-stream"
2022-09-28 23:34:07 +00:00
version = "0.1.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "f6edf2d6bc038a43d31353570e27270603f4648d18f5ed10c0e179abe43255af"
dependencies = [
"futures-core",
2021-03-10 02:14:42 +00:00
"pin-project-lite",
"tokio",
]
2022-02-26 18:28:23 +00:00
[[package]]
name = "tokio-util"
2022-09-28 23:34:07 +00:00
version = "0.7.4"
2022-02-26 18:28:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "0bb2e075f03b3d66d8d8785356224ba688d2906a371015e225beeb65ca92c740"
2022-02-26 18:28:23 +00:00
dependencies = [
"bytes",
"futures-core",
"futures-sink",
"pin-project-lite",
"tokio",
2022-04-04 01:29:20 +00:00
"tracing",
2022-02-26 18:28:23 +00:00
]
[[package]]
name = "tonic"
2022-09-28 23:34:07 +00:00
version = "0.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "55b9af819e54b8f33d453655bef9b9acc171568fb49523078d0cc4e7484200ec"
dependencies = [
"async-stream",
"async-trait",
"axum",
"base64",
"bytes",
"futures-core",
"futures-util",
"h2",
"http",
"http-body",
"hyper",
"hyper-timeout",
"percent-encoding",
"pin-project",
2022-09-28 23:34:07 +00:00
"prost",
"prost-derive",
"tokio",
"tokio-stream",
2022-09-28 23:34:07 +00:00
"tokio-util",
"tower",
"tower-layer",
"tower-service",
"tracing",
"tracing-futures",
]
[[package]]
name = "tonic-build"
2022-09-28 23:34:07 +00:00
version = "0.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "48c6fd7c2581e36d63388a9e04c350c21beb7a8b059580b2e93993c526899ddc"
dependencies = [
2022-09-28 23:34:07 +00:00
"prettyplease",
"proc-macro2",
2022-02-04 17:42:22 +00:00
"prost-build",
2021-09-19 18:21:23 +00:00
"quote",
"syn",
]
[[package]]
name = "tower"
2022-07-02 15:56:37 +00:00
version = "0.4.13"
2021-09-19 18:21:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-02 15:56:37 +00:00
checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c"
2021-09-19 18:21:23 +00:00
dependencies = [
"futures-core",
"futures-util",
"indexmap",
"pin-project",
2021-10-21 16:17:47 +00:00
"pin-project-lite",
2021-09-19 18:21:23 +00:00
"rand",
"slab",
"tokio",
2022-09-28 23:34:07 +00:00
"tokio-util",
2021-09-19 18:21:23 +00:00
"tower-layer",
"tower-service",
"tracing",
]
[[package]]
name = "tower-http"
2022-06-06 21:03:09 +00:00
version = "0.3.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-06 21:03:09 +00:00
checksum = "3c530c8675c1dbf98facee631536fa116b5fb6382d7dd6dc1b118d970eafe3ba"
dependencies = [
"bitflags",
"bytes",
"futures-core",
"futures-util",
"http",
"http-body",
"http-range-header",
"pin-project-lite",
"tower",
"tower-layer",
"tower-service",
]
2021-09-19 18:21:23 +00:00
[[package]]
name = "tower-layer"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "343bc9466d3fe6b0f960ef45960509f84480bf4fd96f92901afe7ff3df9d3a62"
[[package]]
name = "tower-service"
2022-07-02 15:56:37 +00:00
version = "0.3.2"
2021-09-19 18:21:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-02 15:56:37 +00:00
checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52"
2021-09-19 18:21:23 +00:00
2020-09-10 14:27:31 +00:00
[[package]]
name = "tracing"
2022-09-28 23:34:07 +00:00
version = "0.1.36"
2020-09-10 14:27:31 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "2fce9567bd60a67d08a16488756721ba392f24f29006402881e43b19aac64307"
2020-09-10 14:27:31 +00:00
dependencies = [
2021-03-10 02:14:42 +00:00
"cfg-if",
2021-09-19 18:21:23 +00:00
"log",
2021-03-10 02:14:42 +00:00
"pin-project-lite",
2021-09-19 18:21:23 +00:00
"tracing-attributes",
2020-09-10 14:27:31 +00:00
"tracing-core",
]
2021-09-19 18:21:23 +00:00
[[package]]
name = "tracing-actix-web"
2022-09-28 23:34:07 +00:00
version = "0.6.1"
2021-10-27 16:43:22 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "ee7247a77b494ee07bda43bce40a33e76f885662f11b3dda9894ecfdbe31fa06"
2021-09-19 18:21:23 +00:00
dependencies = [
"actix-web",
"opentelemetry",
2021-10-11 19:14:34 +00:00
"pin-project",
2021-09-19 18:21:23 +00:00
"tracing",
"tracing-opentelemetry",
"uuid",
]
[[package]]
name = "tracing-attributes"
2022-07-02 15:56:37 +00:00
version = "0.1.22"
2021-09-19 18:21:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-02 15:56:37 +00:00
checksum = "11c75893af559bc8e10716548bdef5cb2b983f8e637db9d0e15126b61b484ee2"
2021-09-19 18:21:23 +00:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "tracing-awc"
2022-09-28 23:34:07 +00:00
version = "0.1.6"
2021-10-27 16:43:22 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "ab0b57d9e4b25f3d5f17d705c11c13c333b26dc062c02a9dedfe6a26f750a99e"
2021-09-19 18:21:23 +00:00
dependencies = [
"actix-http",
2021-12-03 20:42:30 +00:00
"actix-service",
2021-09-19 18:21:23 +00:00
"awc",
"bytes",
"futures-core",
"opentelemetry",
2021-12-03 20:42:30 +00:00
"pin-project-lite",
2021-09-19 18:21:23 +00:00
"tracing",
"tracing-opentelemetry",
]
2020-09-10 14:27:31 +00:00
[[package]]
name = "tracing-core"
2022-09-28 23:34:07 +00:00
version = "0.1.29"
2021-09-19 18:21:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "5aeea4303076558a00714b823f9ad67d58a3bbda1df83d8827d21193156e22f7"
2021-09-19 18:21:23 +00:00
dependencies = [
2022-07-02 15:56:37 +00:00
"once_cell",
2022-02-04 17:42:22 +00:00
"valuable",
2021-09-19 18:21:23 +00:00
]
[[package]]
name = "tracing-error"
2021-10-25 01:48:19 +00:00
version = "0.2.0"
2021-09-19 18:21:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-25 01:48:19 +00:00
checksum = "d686ec1c0f384b1277f097b2f279a2ecc11afe8c133c1aabf036a27cb4cd206e"
2021-09-19 18:21:23 +00:00
dependencies = [
"tracing",
"tracing-subscriber",
]
[[package]]
name = "tracing-futures"
version = "0.2.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "97d095ae15e245a057c8e8451bab9b3ee1e1f68e9ba2b4fbc18d0ac5237835f2"
dependencies = [
"pin-project",
"tracing",
]
[[package]]
name = "tracing-log"
version = "0.1.3"
2020-09-10 14:27:31 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "78ddad33d2d10b1ed7eb9d1f518a5674713876e97e5bb9b7345a7984fbb4f922"
2020-09-10 14:27:31 +00:00
dependencies = [
"lazy_static",
2021-09-19 18:21:23 +00:00
"log",
"tracing-core",
2020-09-10 14:27:31 +00:00
]
2021-09-19 18:21:23 +00:00
[[package]]
name = "tracing-opentelemetry"
2022-09-28 23:34:07 +00:00
version = "0.18.0"
2021-09-19 18:21:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "21ebb87a95ea13271332df069020513ab70bdb5637ca42d6e492dc3bbbad48de"
2021-09-19 18:21:23 +00:00
dependencies = [
2022-07-02 15:56:37 +00:00
"once_cell",
2021-09-19 18:21:23 +00:00
"opentelemetry",
"tracing",
"tracing-core",
"tracing-log",
"tracing-subscriber",
]
[[package]]
name = "tracing-subscriber"
2022-09-28 23:34:07 +00:00
version = "0.3.15"
2021-09-19 18:21:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "60db860322da191b40952ad9affe65ea23e7dd6a5c442c2c42865810c6ab8e6b"
2021-09-19 18:21:23 +00:00
dependencies = [
2021-12-03 20:42:30 +00:00
"ansi_term",
2021-09-19 18:21:23 +00:00
"matchers",
2022-07-02 15:56:37 +00:00
"once_cell",
2021-09-19 18:21:23 +00:00
"regex",
"sharded-slab",
"smallvec",
"thread_local",
"tracing",
"tracing-core",
"tracing-log",
]
[[package]]
name = "try-lock"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642"
[[package]]
name = "typenum"
2021-12-28 16:55:20 +00:00
version = "1.15.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-28 16:55:20 +00:00
checksum = "dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987"
[[package]]
name = "unicode-bidi"
version = "0.3.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "099b7128301d285f79ddd55b9a83d5e6b9e97c92e0ea0daebee7263e932de992"
2022-06-06 21:03:09 +00:00
[[package]]
name = "unicode-ident"
2022-09-28 23:34:07 +00:00
version = "1.0.4"
2022-06-06 21:03:09 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "dcc811dc4066ac62f84f11307873c4850cb653bfa9b1719cee2bd2204a4bc5dd"
2022-06-06 21:03:09 +00:00
[[package]]
name = "unicode-normalization"
2022-09-28 23:34:07 +00:00
version = "0.1.22"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921"
dependencies = [
2020-12-01 17:57:19 +00:00
"tinyvec",
]
[[package]]
name = "url"
2022-09-28 23:34:07 +00:00
version = "2.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "0d68c799ae75762b8c3fe375feb6600ef5602c883c5d21eb51c09f22b83c4643"
dependencies = [
2020-12-01 17:57:19 +00:00
"form_urlencoded",
"idna",
"percent-encoding",
]
2021-09-19 18:21:23 +00:00
[[package]]
name = "uuid"
2022-07-02 15:56:37 +00:00
version = "1.1.2"
2021-09-19 18:21:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-02 15:56:37 +00:00
checksum = "dd6469f4314d5f1ffec476e05f17cc9a78bc7a27a6a857842170bdf8d6f98d2f"
2021-09-19 18:21:23 +00:00
dependencies = [
"getrandom",
]
2022-02-04 17:42:22 +00:00
[[package]]
name = "valuable"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d"
[[package]]
name = "version_check"
2021-12-30 17:06:40 +00:00
version = "0.9.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-30 17:06:40 +00:00
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
2021-09-19 18:21:23 +00:00
[[package]]
name = "want"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0"
dependencies = [
"log",
"try-lock",
]
2022-03-23 14:46:30 +00:00
[[package]]
name = "wasi"
version = "0.11.0+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
[[package]]
name = "wasm-bindgen"
2022-09-28 23:34:07 +00:00
version = "0.2.83"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "eaf9f5aceeec8be17c128b2e93e031fb8a4d469bb9c4ae2d7dc1888b26887268"
dependencies = [
2021-03-10 02:14:42 +00:00
"cfg-if",
"wasm-bindgen-macro",
]
[[package]]
name = "wasm-bindgen-backend"
2022-09-28 23:34:07 +00:00
version = "0.2.83"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "4c8ffb332579b0557b52d268b91feab8df3615f265d5270fec2a8c95b17c1142"
dependencies = [
"bumpalo",
"log",
2022-09-28 23:34:07 +00:00
"once_cell",
"proc-macro2",
"quote",
"syn",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-macro"
2022-09-28 23:34:07 +00:00
version = "0.2.83"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "052be0f94026e6cbc75cdefc9bae13fd6052cdcaf532fa6c45e7ae33a1e6c810"
dependencies = [
"quote",
"wasm-bindgen-macro-support",
]
[[package]]
name = "wasm-bindgen-macro-support"
2022-09-28 23:34:07 +00:00
version = "0.2.83"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "07bc0c051dc5f23e307b13285f9d75df86bfdf816c5721e573dec1f9b8aa193c"
dependencies = [
"proc-macro2",
"quote",
"syn",
"wasm-bindgen-backend",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-shared"
2022-09-28 23:34:07 +00:00
version = "0.2.83"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "1c38c045535d93ec4f0b4defec448e4291638ee608530863b1e2ba115d4fff7f"
2021-09-19 18:21:23 +00:00
[[package]]
name = "which"
2022-09-28 23:34:07 +00:00
version = "4.3.0"
2021-09-19 18:21:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "1c831fbbee9e129a8cf93e7747a82da9d95ba8e16621cae60ec2cdc849bacb7b"
2021-09-19 18:21:23 +00:00
dependencies = [
"either",
"libc",
2022-09-28 23:34:07 +00:00
"once_cell",
2021-09-19 18:21:23 +00:00
]
[[package]]
name = "winapi"
2020-09-10 14:27:31 +00:00
version = "0.3.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-10 14:27:31 +00:00
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
dependencies = [
"winapi-i686-pc-windows-gnu",
"winapi-x86_64-pc-windows-gnu",
]
[[package]]
name = "winapi-i686-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
[[package]]
name = "winapi-util"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
dependencies = [
"winapi",
]
[[package]]
name = "winapi-x86_64-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
2022-02-26 18:28:23 +00:00
[[package]]
name = "windows-sys"
version = "0.36.1"
2022-02-26 18:28:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ea04155a16a59f9eab786fe12a4a450e75cdb175f9e0d80da1e17db09f55b8d2"
2022-02-26 18:28:23 +00:00
dependencies = [
"windows_aarch64_msvc",
"windows_i686_gnu",
"windows_i686_msvc",
"windows_x86_64_gnu",
"windows_x86_64_msvc",
]
[[package]]
name = "windows_aarch64_msvc"
version = "0.36.1"
2022-02-26 18:28:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9bb8c3fd39ade2d67e9874ac4f3db21f0d710bee00fe7cab16949ec184eeaa47"
2022-02-26 18:28:23 +00:00
[[package]]
name = "windows_i686_gnu"
version = "0.36.1"
2022-02-26 18:28:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "180e6ccf01daf4c426b846dfc66db1fc518f074baa793aa7d9b9aaeffad6a3b6"
2022-02-26 18:28:23 +00:00
[[package]]
name = "windows_i686_msvc"
version = "0.36.1"
2022-02-26 18:28:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e2e7917148b2812d1eeafaeb22a97e4813dfa60a3f8f78ebe204bcc88f12f024"
2022-02-26 18:28:23 +00:00
[[package]]
name = "windows_x86_64_gnu"
version = "0.36.1"
2022-02-26 18:28:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4dcd171b8776c41b97521e5da127a2d86ad280114807d0b2ab1e462bc764d9e1"
2022-02-26 18:28:23 +00:00
[[package]]
name = "windows_x86_64_msvc"
version = "0.36.1"
2022-02-26 18:28:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c811ca4a8c853ef420abd8592ba53ddbbac90410fab6903b3e79972a631f7680"
2022-07-02 15:56:37 +00:00
[[package]]
name = "wyz"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "85e60b0d1b5f99db2556934e21937020776a5d31520bf169e851ac44e6420214"