pict-rs/Cargo.lock

3499 lines
83 KiB
Plaintext
Raw Normal View History

# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
2021-06-19 19:39:41 +00:00
version = 3
2020-09-10 16:12:42 +00:00
[[package]]
name = "actix-codec"
version = "0.5.1"
2020-09-10 16:12:42 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "617a8268e3537fe1d8c9ead925fca49ef6400927ee7bc26750e90ecee14ce4b8"
2020-09-10 16:12:42 +00:00
dependencies = [
2023-08-29 18:02:59 +00:00
"bitflags 1.3.2",
2020-09-10 16:12:42 +00:00
"bytes",
"futures-core",
"futures-sink",
2021-11-16 21:39:18 +00:00
"memchr",
2021-02-10 22:57:42 +00:00
"pin-project-lite",
2020-09-10 16:12:42 +00:00
"tokio",
2022-09-21 03:42:14 +00:00
"tokio-util",
"tracing",
2020-09-10 16:12:42 +00:00
]
[[package]]
name = "actix-form-data"
2023-07-19 01:32:17 +00:00
version = "0.7.0-beta.4"
2022-09-24 22:18:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-19 01:32:17 +00:00
checksum = "a2163627f82eef55c4551f3e58ba0da92d733fa3afe8d0c13986a9ba00d1f9f7"
dependencies = [
"actix-multipart",
"actix-rt",
"actix-web",
2023-07-17 03:11:39 +00:00
"futures-core",
"mime",
"thiserror",
"tokio",
2020-06-14 18:56:42 +00:00
"tracing",
]
[[package]]
name = "actix-http"
2023-08-29 18:02:59 +00:00
version = "3.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-29 18:02:59 +00:00
checksum = "a92ef85799cba03f76e4f7c10f533e66d87c9a7e7055f3391f09000ad8351bc9"
dependencies = [
2020-09-14 15:52:18 +00:00
"actix-codec",
"actix-rt",
"actix-service",
2020-09-14 15:52:18 +00:00
"actix-utils",
2023-03-10 02:02:10 +00:00
"ahash 0.8.3",
2023-09-26 23:04:04 +00:00
"base64 0.21.4",
2023-08-29 18:02:59 +00:00
"bitflags 2.4.0",
"bytes",
2021-02-10 22:57:42 +00:00
"bytestring",
"derive_more",
"encoding_rs",
"futures-core",
"http",
"httparse",
2021-10-20 23:16:53 +00:00
"httpdate",
2022-02-11 17:23:48 +00:00
"itoa",
"language-tags",
2021-04-02 18:11:20 +00:00
"local-channel",
"mime",
"percent-encoding",
2021-04-02 18:11:20 +00:00
"pin-project-lite",
"rand",
2022-06-21 16:27:57 +00:00
"sha1",
2021-02-10 22:57:42 +00:00
"smallvec",
2023-01-29 17:47:28 +00:00
"tokio",
"tokio-util",
2022-06-21 16:27:57 +00:00
"tracing",
]
[[package]]
name = "actix-macros"
2023-07-21 21:59:05 +00:00
version = "0.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-21 21:59:05 +00:00
checksum = "e01ed3140b2f8d422c68afa1ed2e85d996ea619c988ac834d255db32138655cb"
dependencies = [
"quote",
2023-09-26 23:04:04 +00:00
"syn 2.0.37",
]
[[package]]
name = "actix-multipart"
2023-08-29 18:02:59 +00:00
version = "0.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-29 18:02:59 +00:00
checksum = "3b960e2aea75f49c8f069108063d12a48d329fc8b60b786dfc7552a9d5918d2d"
dependencies = [
2020-09-14 15:52:18 +00:00
"actix-utils",
"actix-web",
"bytes",
"derive_more",
2021-04-02 18:11:20 +00:00
"futures-core",
2023-06-01 22:19:14 +00:00
"futures-util",
"httparse",
2021-04-02 18:11:20 +00:00
"local-waker",
"log",
2023-06-01 22:19:14 +00:00
"memchr",
"mime",
2023-06-01 22:19:14 +00:00
"serde",
"serde_json",
"serde_plain",
"tokio",
]
[[package]]
name = "actix-router"
2022-09-21 03:42:14 +00:00
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-21 03:42:14 +00:00
checksum = "d66ff4d247d2b160861fa2866457e85706833527840e4133f8f49aa423a38799"
dependencies = [
"bytestring",
"http",
"regex",
2022-02-26 18:22:30 +00:00
"serde",
2022-09-21 03:42:14 +00:00
"tracing",
]
[[package]]
name = "actix-rt"
2023-08-28 23:44:55 +00:00
version = "2.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-28 23:44:55 +00:00
checksum = "28f32d40287d3f402ae0028a9d54bef51af15c8769492826a69d28f81893151d"
dependencies = [
"actix-macros",
2021-02-10 22:57:42 +00:00
"futures-core",
"tokio",
2021-10-13 04:16:31 +00:00
"tokio-uring",
]
[[package]]
name = "actix-server"
2023-08-28 23:44:55 +00:00
version = "2.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-28 23:44:55 +00:00
checksum = "3eb13e7eef0423ea6eab0e59f6c72e7cb46d33691ad56a726b3cd07ddec2c2d4"
dependencies = [
"actix-rt",
"actix-service",
2020-09-14 15:52:18 +00:00
"actix-utils",
2021-02-10 22:57:42 +00:00
"futures-core",
2021-11-16 21:39:18 +00:00
"futures-util",
2022-02-26 18:22:30 +00:00
"mio",
2023-09-26 23:04:04 +00:00
"socket2 0.5.4",
2021-02-10 22:57:42 +00:00
"tokio",
2021-11-16 21:39:18 +00:00
"tokio-uring",
2022-03-09 00:48:08 +00:00
"tracing",
]
[[package]]
name = "actix-service"
2021-12-19 02:24:22 +00:00
version = "2.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-19 02:24:22 +00:00
checksum = "3b894941f818cfdc7ccc4b9e60fa7e53b5042a2e8567270f9147d5591893373a"
dependencies = [
2021-02-10 22:57:42 +00:00
"futures-core",
2021-04-17 19:59:42 +00:00
"paste",
2021-02-10 22:57:42 +00:00
"pin-project-lite",
]
2020-09-10 16:12:42 +00:00
[[package]]
name = "actix-utils"
2022-11-26 17:17:47 +00:00
version = "3.0.1"
2020-09-10 16:12:42 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-26 17:17:47 +00:00
checksum = "88a1dcdff1466e3c2488e1cb5c36a71822750ad43839937f85d2f4d9f8b705d8"
2020-09-10 16:12:42 +00:00
dependencies = [
2021-04-02 18:11:20 +00:00
"local-waker",
2021-02-10 22:57:42 +00:00
"pin-project-lite",
2020-09-10 16:12:42 +00:00
]
[[package]]
name = "actix-web"
2023-08-29 18:02:59 +00:00
version = "4.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-29 18:02:59 +00:00
checksum = "0e4a5b5e29603ca8c94a77c65cf874718ceb60292c5a5c3e5f4ace041af462b9"
dependencies = [
2020-09-14 15:52:18 +00:00
"actix-codec",
"actix-http",
"actix-router",
"actix-rt",
"actix-server",
"actix-service",
2020-09-14 15:52:18 +00:00
"actix-utils",
2023-08-29 18:02:59 +00:00
"ahash 0.8.3",
"bytes",
2022-02-26 18:22:30 +00:00
"bytestring",
2021-06-26 18:10:28 +00:00
"cfg-if",
"derive_more",
"encoding_rs",
"futures-core",
"futures-util",
2022-02-11 17:23:48 +00:00
"itoa",
2021-04-02 18:11:20 +00:00
"language-tags",
"log",
"mime",
2021-04-02 18:11:20 +00:00
"once_cell",
2021-12-03 20:21:31 +00:00
"pin-project-lite",
"regex",
2022-02-26 18:22:30 +00:00
"serde",
"serde_json",
"serde_urlencoded",
2021-02-10 22:57:42 +00:00
"smallvec",
2023-09-26 23:04:04 +00:00
"socket2 0.5.4",
2022-02-26 18:22:30 +00:00
"time",
"url",
]
[[package]]
2022-03-29 01:47:46 +00:00
name = "addr2line"
2023-08-24 00:17:14 +00:00
version = "0.21.0"
2022-03-29 01:47:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-24 00:17:14 +00:00
checksum = "8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb"
2022-03-29 01:47:46 +00:00
dependencies = [
"gimli",
]
2021-12-17 02:46:46 +00:00
[[package]]
name = "adler"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
2021-02-10 22:57:42 +00:00
[[package]]
name = "ahash"
version = "0.7.6"
2021-02-10 22:57:42 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47"
2021-02-10 22:57:42 +00:00
dependencies = [
"getrandom",
"once_cell",
"version_check",
]
2023-03-10 02:02:10 +00:00
[[package]]
name = "ahash"
version = "0.8.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2c99f64d1e06488f620f932677e24bc6e2897582980441ae90a671415bd7ec2f"
dependencies = [
"cfg-if",
"getrandom",
"once_cell",
"version_check",
]
[[package]]
name = "aho-corasick"
2023-09-26 23:04:04 +00:00
version = "1.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-26 23:04:04 +00:00
checksum = "ea5d730647d4fadd988536d06fecce94b7b4f2a7efdae548f1cf4b63205518ab"
dependencies = [
"memchr",
]
2023-05-08 15:54:54 +00:00
[[package]]
name = "anstream"
2023-08-28 23:44:55 +00:00
version = "0.5.0"
2023-05-08 15:54:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-28 23:44:55 +00:00
checksum = "b1f58811cfac344940f1a400b6e6231ce35171f614f26439e80f8c1465c5cc0c"
2023-05-08 15:54:54 +00:00
dependencies = [
"anstyle",
"anstyle-parse",
"anstyle-query",
"anstyle-wincon",
"colorchoice",
"utf8parse",
]
[[package]]
name = "anstyle"
2023-09-26 23:04:04 +00:00
version = "1.0.3"
2023-05-08 15:54:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-26 23:04:04 +00:00
checksum = "b84bf0a05bbb2a83e5eb6fa36bb6e87baa08193c35ff52bbf6b38d8af2890e46"
2023-05-08 15:54:54 +00:00
[[package]]
name = "anstyle-parse"
2023-06-21 22:07:40 +00:00
version = "0.2.1"
2023-05-08 15:54:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-21 22:07:40 +00:00
checksum = "938874ff5980b03a87c5524b3ae5b59cf99b1d6bc836848df7bc5ada9643c333"
2023-05-08 15:54:54 +00:00
dependencies = [
"utf8parse",
]
[[package]]
name = "anstyle-query"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5ca11d4be1bab0c8bc8734a9aa7bf4ee8316d462a08c6ac5052f888fef5b494b"
dependencies = [
2023-06-19 20:46:23 +00:00
"windows-sys",
2023-05-08 15:54:54 +00:00
]
[[package]]
name = "anstyle-wincon"
2023-08-28 23:44:55 +00:00
version = "2.1.0"
2023-05-08 15:54:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-28 23:44:55 +00:00
checksum = "58f54d10c6dfa51283a066ceab3ec1ab78d13fae00aa49243a45e4571fb79dfd"
2023-05-08 15:54:54 +00:00
dependencies = [
"anstyle",
2023-06-19 20:46:23 +00:00
"windows-sys",
2023-05-08 15:54:54 +00:00
]
[[package]]
name = "anyhow"
2023-08-24 00:17:14 +00:00
version = "1.0.75"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-24 00:17:14 +00:00
checksum = "a4668cab20f66d8d020e1fbc0ebe47217433c1b6c8f2040faf858554e394ace6"
2021-09-18 21:29:30 +00:00
[[package]]
name = "async-trait"
2023-08-16 01:05:40 +00:00
version = "0.1.73"
2021-09-18 21:29:30 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-16 01:05:40 +00:00
checksum = "bc00ceb34980c03614e35a3a4e218276a0a824e911d07651cd0d858a51e8c0f0"
2021-09-18 21:29:30 +00:00
dependencies = [
"proc-macro2",
"quote",
2023-09-26 23:04:04 +00:00
"syn 2.0.37",
2021-09-18 21:29:30 +00:00
]
[[package]]
name = "atomic"
version = "0.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c59bdb34bc650a32731b31bd8f0829cc15d24a708ee31559e0bb34f2bc320cba"
[[package]]
name = "autocfg"
2022-02-11 17:23:48 +00:00
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-11 17:23:48 +00:00
checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
2022-04-11 20:17:54 +00:00
[[package]]
name = "axum"
2023-08-05 17:42:55 +00:00
version = "0.6.20"
2022-04-11 20:17:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-05 17:42:55 +00:00
checksum = "3b829e4e32b91e643de6eafe82b1d90675f5874230191a4ffbc1b336dec4d6bf"
2022-04-11 20:17:54 +00:00
dependencies = [
"async-trait",
"axum-core",
2023-08-29 18:02:59 +00:00
"bitflags 1.3.2",
2022-04-11 20:17:54 +00:00
"bytes",
"futures-util",
"http",
"http-body",
"hyper",
"itoa",
"matchit",
"memchr",
"mime",
"percent-encoding",
"pin-project-lite",
2022-12-08 00:30:44 +00:00
"rustversion",
2022-04-11 20:17:54 +00:00
"serde",
"sync_wrapper",
"tower",
"tower-layer",
"tower-service",
]
[[package]]
name = "axum-core"
2023-05-08 15:54:54 +00:00
version = "0.3.4"
2022-04-11 20:17:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-08 15:54:54 +00:00
checksum = "759fa577a247914fd3f7f76d62972792636412fbfd634cd452f6a385a74d2d2c"
2022-04-11 20:17:54 +00:00
dependencies = [
"async-trait",
"bytes",
"futures-util",
"http",
"http-body",
"mime",
2022-12-08 00:30:44 +00:00
"rustversion",
"tower-layer",
"tower-service",
2022-04-11 20:17:54 +00:00
]
2022-03-29 01:47:46 +00:00
[[package]]
name = "backtrace"
2023-08-24 00:17:14 +00:00
version = "0.3.69"
2022-03-29 01:47:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-24 00:17:14 +00:00
checksum = "2089b7e3f35b9dd2d0ed921ead4f6d318c27680d4a5bd167b3ee120edb105837"
2022-03-29 01:47:46 +00:00
dependencies = [
"addr2line",
"cc",
"cfg-if",
"libc",
2023-07-03 02:09:27 +00:00
"miniz_oxide",
2022-03-29 01:47:46 +00:00
"object",
"rustc-demangle",
]
2023-09-02 16:52:55 +00:00
[[package]]
name = "barrel"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ad9e605929a6964efbec5ac0884bd0fe93f12a3b1eb271f52c251316640c68d9"
2020-10-10 23:22:00 +00:00
[[package]]
name = "base64"
2022-11-26 17:17:47 +00:00
version = "0.13.1"
2020-10-10 23:22:00 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-26 17:17:47 +00:00
checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
2020-10-10 23:22:00 +00:00
2023-01-29 17:47:28 +00:00
[[package]]
name = "base64"
2023-09-26 23:04:04 +00:00
version = "0.21.4"
2023-01-29 17:47:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-26 23:04:04 +00:00
checksum = "9ba43ea6f343b788c8764558649e08df62f86c6ef251fdaeb1ffd010a9ae50a2"
2023-01-29 17:47:28 +00:00
[[package]]
name = "bitflags"
version = "1.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
2023-08-29 18:02:59 +00:00
[[package]]
name = "bitflags"
version = "2.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b4682ae6287fcf752ecaabbfcc7b6f9b72aa33933dc23a554d853aea8eea8635"
2021-12-17 02:46:46 +00:00
[[package]]
name = "block-buffer"
2023-03-10 02:02:10 +00:00
version = "0.10.4"
2021-12-17 02:46:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-10 02:02:10 +00:00
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
2021-12-17 02:46:46 +00:00
dependencies = [
2022-08-19 19:13:06 +00:00
"generic-array",
2021-12-17 02:46:46 +00:00
]
[[package]]
name = "bumpalo"
2023-09-26 23:04:04 +00:00
version = "3.14.0"
2022-02-26 18:22:30 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-26 23:04:04 +00:00
checksum = "7f30e7476521f6f8af1a1c4c0b8cc94f0bee37d91763d0ca2665f299b6cd8aec"
2022-02-26 18:22:30 +00:00
[[package]]
name = "byteorder"
2021-04-02 18:11:20 +00:00
version = "1.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-02 18:11:20 +00:00
checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
[[package]]
name = "bytes"
2023-09-08 00:23:50 +00:00
version = "1.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-08 00:23:50 +00:00
checksum = "a2bd12c1caf447e69cd4528f47f94d203fd2582878ecb9e9465484c4148a8223"
[[package]]
name = "bytestring"
2023-03-10 02:02:10 +00:00
version = "1.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-10 02:02:10 +00:00
checksum = "238e4886760d98c4f899360c834fa93e62cf7f721ac3c2da375cbdf4b8679aae"
dependencies = [
"bytes",
]
2021-09-12 16:00:29 +00:00
[[package]]
name = "cc"
2023-08-24 00:17:14 +00:00
version = "1.0.83"
2021-09-12 16:00:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-24 00:17:14 +00:00
checksum = "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0"
2023-08-05 17:42:55 +00:00
dependencies = [
"libc",
]
2021-09-12 16:00:29 +00:00
2020-10-11 18:41:08 +00:00
[[package]]
name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
2020-06-07 00:54:06 +00:00
[[package]]
name = "clap"
2023-09-26 23:04:04 +00:00
version = "4.4.5"
2020-06-07 00:54:06 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-26 23:04:04 +00:00
checksum = "824956d0dca8334758a5b7f7e50518d66ea319330cbceedcf76905c2f6ab30e3"
2020-06-07 00:54:06 +00:00
dependencies = [
2023-05-08 15:54:54 +00:00
"clap_builder",
2022-03-25 03:06:29 +00:00
"clap_derive",
2023-05-08 15:54:54 +00:00
]
[[package]]
name = "clap_builder"
2023-09-26 23:04:04 +00:00
version = "4.4.5"
2023-05-08 15:54:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-26 23:04:04 +00:00
checksum = "122ec64120a49b4563ccaedcbea7818d069ed8e9aa6d829b82d8a4128936b2ab"
2023-05-08 15:54:54 +00:00
dependencies = [
"anstream",
"anstyle",
"clap_lex",
2020-06-07 00:54:06 +00:00
"strsim",
2022-03-25 03:06:29 +00:00
]
[[package]]
name = "clap_derive"
2023-09-02 01:56:27 +00:00
version = "4.4.2"
2022-03-25 03:06:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-02 01:56:27 +00:00
checksum = "0862016ff20d69b84ef8247369fabf5c008a7417002411897d40ee1f4532b873"
2022-03-25 03:06:29 +00:00
dependencies = [
2022-09-21 03:42:14 +00:00
"heck",
2022-03-25 03:06:29 +00:00
"proc-macro2",
"quote",
2023-09-26 23:04:04 +00:00
"syn 2.0.37",
2020-06-07 00:54:06 +00:00
]
2022-04-24 22:10:15 +00:00
[[package]]
name = "clap_lex"
2023-08-28 23:44:55 +00:00
version = "0.5.1"
2022-04-24 22:10:15 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-28 23:44:55 +00:00
checksum = "cd7cc57abe963c6d3b9d8be5b06ba7c8957a930305ca90304f24ef040aa6f961"
2022-04-24 22:10:15 +00:00
2022-03-29 01:47:46 +00:00
[[package]]
name = "color-eyre"
2022-07-17 16:16:44 +00:00
version = "0.6.2"
2022-03-29 01:47:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-17 16:16:44 +00:00
checksum = "5a667583cca8c4f8436db8de46ea8233c42a7d9ae424a82d338f2e4675229204"
2022-03-29 01:47:46 +00:00
dependencies = [
"backtrace",
"color-spantrace",
"eyre",
"indenter",
"once_cell",
"owo-colors",
"tracing-error",
]
[[package]]
name = "color-spantrace"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1ba75b3d9449ecdccb27ecbc479fdc0b87fa2dd43d2f8298f9bf0e59aacc8dce"
dependencies = [
"once_cell",
"owo-colors",
"tracing-core",
"tracing-error",
]
2023-05-08 15:54:54 +00:00
[[package]]
name = "colorchoice"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7"
[[package]]
name = "config"
2022-12-08 00:30:44 +00:00
version = "0.13.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-08 00:30:44 +00:00
checksum = "d379af7f68bfc21714c6c7dea883544201741d2ce8274bb12fa54f89507f52a7"
dependencies = [
2022-02-26 18:22:30 +00:00
"async-trait",
"json5",
"lazy_static",
2022-02-26 18:22:30 +00:00
"nom",
"pathdiff",
"ron",
2022-04-03 20:21:14 +00:00
"rust-ini",
2022-02-26 18:22:30 +00:00
"serde",
"serde_json",
2023-01-29 17:47:28 +00:00
"toml 0.5.11",
"yaml-rust",
]
2021-12-17 02:46:46 +00:00
[[package]]
name = "console-api"
version = "0.5.0"
2021-12-17 02:46:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c2895653b4d9f1538a83970077cb01dfc77a4810524e51a110944688e916b18e"
2021-12-17 02:46:46 +00:00
dependencies = [
2022-09-21 03:42:14 +00:00
"prost",
"prost-types",
"tonic",
2021-12-17 02:46:46 +00:00
"tracing-core",
]
[[package]]
name = "console-subscriber"
2023-07-05 03:55:37 +00:00
version = "0.1.10"
2021-12-17 02:46:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-05 03:55:37 +00:00
checksum = "d4cf42660ac07fcebed809cfe561dd8730bcd35b075215e6479c516bcd0d11cb"
2021-12-17 02:46:46 +00:00
dependencies = [
"console-api",
2022-01-24 04:39:03 +00:00
"crossbeam-channel",
2022-02-26 18:22:30 +00:00
"crossbeam-utils",
2021-12-17 02:46:46 +00:00
"futures",
"hdrhistogram",
"humantime",
2022-09-21 03:42:14 +00:00
"prost-types",
2022-02-26 18:22:30 +00:00
"serde",
2021-12-17 02:46:46 +00:00
"serde_json",
"thread_local",
"tokio",
"tokio-stream",
"tonic",
2021-12-17 02:46:46 +00:00
"tracing",
"tracing-core",
"tracing-subscriber",
]
2021-04-02 18:11:20 +00:00
[[package]]
name = "convert_case"
version = "0.4.0"
2020-09-10 16:12:42 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-02 18:11:20 +00:00
checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e"
2020-09-10 16:12:42 +00:00
[[package]]
2021-06-19 19:39:41 +00:00
name = "cpufeatures"
2023-07-06 21:08:21 +00:00
version = "0.2.9"
2020-09-10 16:12:42 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-06 21:08:21 +00:00
checksum = "a17b76ff3a4162b0b27f354a0c87015ddad39d35f9c0c36607a3bdd175dde1f1"
2021-06-19 19:39:41 +00:00
dependencies = [
"libc",
]
2020-09-10 16:12:42 +00:00
[[package]]
name = "crc32fast"
2022-02-11 17:23:48 +00:00
version = "1.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-11 17:23:48 +00:00
checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d"
dependencies = [
2021-02-10 22:57:42 +00:00
"cfg-if",
]
2021-09-18 21:29:30 +00:00
[[package]]
name = "crossbeam-channel"
2023-05-08 15:54:54 +00:00
version = "0.5.8"
2021-09-18 21:29:30 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-08 15:54:54 +00:00
checksum = "a33c2bf77f2df06183c3aa30d1e96c0695a313d4f9c453cc3762a6db39f99200"
2021-09-18 21:29:30 +00:00
dependencies = [
"cfg-if",
"crossbeam-utils",
]
2020-12-03 17:38:28 +00:00
[[package]]
name = "crossbeam-epoch"
2023-06-19 20:46:23 +00:00
version = "0.9.15"
2020-12-03 17:38:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-19 20:46:23 +00:00
checksum = "ae211234986c545741a7dc064309f67ee1e5ad243d0e48335adc0484d960bcc7"
2020-12-03 17:38:28 +00:00
dependencies = [
"autocfg",
2021-02-10 22:57:42 +00:00
"cfg-if",
"crossbeam-utils",
"memoffset",
"scopeguard",
]
2020-12-03 17:38:28 +00:00
[[package]]
name = "crossbeam-utils"
2023-06-19 20:46:23 +00:00
version = "0.8.16"
2020-12-03 17:38:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-19 20:46:23 +00:00
checksum = "5a22b2d63d4d1dc0b7f1b6b2747dd0088008a9be28b6ddf0b1e7d335e3037294"
2020-12-03 17:38:28 +00:00
dependencies = [
2021-02-10 22:57:42 +00:00
"cfg-if",
2020-12-03 17:38:28 +00:00
]
2021-12-17 02:46:46 +00:00
[[package]]
name = "crypto-common"
2022-07-17 16:16:44 +00:00
version = "0.1.6"
2021-12-17 02:46:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-17 16:16:44 +00:00
checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
2021-12-17 02:46:46 +00:00
dependencies = [
2022-08-19 19:13:06 +00:00
"generic-array",
2022-02-26 18:22:30 +00:00
"typenum",
2021-12-17 02:46:46 +00:00
]
[[package]]
name = "dashmap"
2023-08-31 01:58:09 +00:00
version = "5.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-31 01:58:09 +00:00
checksum = "978747c1d849a7d2ee5e8adc0159961c48fb7e5db2f06af6723b80123bb53856"
dependencies = [
"cfg-if",
2023-07-17 03:11:39 +00:00
"hashbrown 0.14.0",
2022-04-29 19:41:03 +00:00
"lock_api",
"once_cell",
2023-06-19 20:46:23 +00:00
"parking_lot_core 0.9.8",
]
2023-09-02 15:05:06 +00:00
[[package]]
name = "deadpool"
version = "0.9.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "421fe0f90f2ab22016f32a9881be5134fdd71c65298917084b0c7477cbc3856e"
dependencies = [
"async-trait",
"deadpool-runtime",
"num_cpus",
"retain_mut",
"tokio",
]
[[package]]
name = "deadpool-runtime"
2023-09-26 23:04:04 +00:00
version = "0.1.3"
2023-09-02 15:05:06 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-26 23:04:04 +00:00
checksum = "63dfa964fe2a66f3fde91fc70b267fe193d822c7e603e2a675a49a7f46ad3f49"
2023-09-02 15:05:06 +00:00
dependencies = [
"tokio",
]
2023-08-05 17:42:55 +00:00
[[package]]
name = "deranged"
2023-08-24 00:17:14 +00:00
version = "0.3.8"
2023-08-05 17:42:55 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-24 00:17:14 +00:00
checksum = "f2696e8a945f658fd14dc3b87242e6b80cd0f36ff04ea560fa39082368847946"
2023-08-05 17:42:55 +00:00
dependencies = [
"serde",
]
[[package]]
name = "derive_more"
2021-12-03 20:21:31 +00:00
version = "0.99.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-03 20:21:31 +00:00
checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321"
dependencies = [
2021-04-02 18:11:20 +00:00
"convert_case",
"proc-macro2",
"quote",
2021-10-20 23:16:53 +00:00
"rustc_version",
2023-05-08 15:54:54 +00:00
"syn 1.0.109",
]
2023-09-02 15:05:06 +00:00
[[package]]
name = "diesel"
2023-09-26 23:04:04 +00:00
version = "2.1.2"
2023-09-02 15:05:06 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-26 23:04:04 +00:00
checksum = "53c8a2cb22327206568569e5a45bb5a2c946455efdd76e24d15b7e82171af95e"
2023-09-02 15:05:06 +00:00
dependencies = [
"bitflags 2.4.0",
"byteorder",
"diesel_derives",
"itoa",
"serde_json",
"time",
"uuid",
2023-09-02 15:05:06 +00:00
]
[[package]]
name = "diesel-async"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "acada1517534c92d3f382217b485db8a8638f111b0e3f2a2a8e26165050f77be"
dependencies = [
"async-trait",
"deadpool",
"diesel",
"futures-util",
"scoped-futures",
"tokio",
"tokio-postgres",
]
2023-09-03 17:47:06 +00:00
[[package]]
name = "diesel-derive-enum"
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "81c5131a2895ef64741dad1d483f358c2a229a3a2d1b256778cdc5e146db64d4"
dependencies = [
"heck",
"proc-macro2",
"quote",
2023-09-26 23:04:04 +00:00
"syn 2.0.37",
2023-09-03 17:47:06 +00:00
]
2023-09-02 15:05:06 +00:00
[[package]]
name = "diesel_derives"
2023-09-26 23:04:04 +00:00
version = "2.1.2"
2023-09-02 15:05:06 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-26 23:04:04 +00:00
checksum = "ef8337737574f55a468005a83499da720f20c65586241ffea339db9ecdfd2b44"
2023-09-02 15:05:06 +00:00
dependencies = [
"diesel_table_macro_syntax",
"proc-macro2",
"quote",
2023-09-26 23:04:04 +00:00
"syn 2.0.37",
2023-09-02 15:05:06 +00:00
]
[[package]]
name = "diesel_table_macro_syntax"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fc5557efc453706fed5e4fa85006fe9817c224c3f480a34c7e5959fd700921c5"
dependencies = [
2023-09-26 23:04:04 +00:00
"syn 2.0.37",
2023-09-02 15:05:06 +00:00
]
2021-12-17 02:46:46 +00:00
[[package]]
name = "digest"
version = "0.10.7"
2021-12-17 02:46:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
2021-12-17 02:46:46 +00:00
dependencies = [
2022-08-19 19:13:06 +00:00
"block-buffer",
2021-12-17 02:46:46 +00:00
"crypto-common",
2022-04-29 20:54:54 +00:00
"subtle",
2021-12-17 02:46:46 +00:00
]
[[package]]
name = "dlv-list"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0688c2a7f92e427f44895cd63841bff7b29f8d7a1648b9e7e07a4a365b2e1257"
[[package]]
name = "either"
2023-07-22 17:48:54 +00:00
version = "1.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-22 17:48:54 +00:00
checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07"
[[package]]
name = "encoding_rs"
2023-08-24 00:17:14 +00:00
version = "0.8.33"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-24 00:17:14 +00:00
checksum = "7268b386296a025e474d5140678f75d6de9493ae55a5d709eeb9dd08149945e1"
dependencies = [
2021-02-10 22:57:42 +00:00
"cfg-if",
]
2023-06-29 16:44:51 +00:00
[[package]]
name = "equivalent"
2023-07-17 03:11:39 +00:00
version = "1.0.1"
2023-06-29 16:44:51 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-17 03:11:39 +00:00
checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
2023-06-29 16:44:51 +00:00
2022-03-29 01:47:46 +00:00
[[package]]
name = "eyre"
2022-04-07 02:40:49 +00:00
version = "0.6.8"
2022-03-29 01:47:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-07 02:40:49 +00:00
checksum = "4c2b6b5a29c02cdc822728b7d7b8ae1bab3e3b05d44522770ddd49722eeac7eb"
2022-03-29 01:47:46 +00:00
dependencies = [
"indenter",
"once_cell",
]
2023-09-02 15:05:06 +00:00
[[package]]
name = "fallible-iterator"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7"
2023-09-08 00:23:50 +00:00
[[package]]
name = "finl_unicode"
version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8fcfdc7a0362c9f4444381a9e697c79d435fe65b52a37466fc2c1184cee9edc6"
2021-12-17 02:46:46 +00:00
[[package]]
name = "flate2"
2023-08-16 01:05:40 +00:00
version = "1.0.27"
2021-12-17 02:46:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-16 01:05:40 +00:00
checksum = "c6c98ee8095e9d1dcbf2fcc6d95acccb90d1c81db1e44725c6a984b1dbdfb010"
2021-12-17 02:46:46 +00:00
dependencies = [
"crc32fast",
2023-07-03 02:09:27 +00:00
"miniz_oxide",
2021-12-17 02:46:46 +00:00
]
2023-07-22 15:44:43 +00:00
[[package]]
name = "flume"
2023-08-16 17:41:14 +00:00
version = "0.11.0"
2023-07-22 15:44:43 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-16 17:41:14 +00:00
checksum = "55ac459de2512911e4b674ce33cf20befaba382d05b62b008afc1c8b57cbf181"
2023-07-22 15:44:43 +00:00
dependencies = [
"futures-core",
"futures-sink",
"nanorand",
"spin 0.9.8",
]
[[package]]
name = "fnv"
version = "1.0.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
2020-12-03 17:38:28 +00:00
[[package]]
name = "form_urlencoded"
2023-06-19 20:46:23 +00:00
version = "1.2.0"
2020-12-03 17:38:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-19 20:46:23 +00:00
checksum = "a62bc1cf6f830c2ec14a513a9fb124d0a213a629668a4186f329db21fe045652"
2020-12-03 17:38:28 +00:00
dependencies = [
"percent-encoding",
]
[[package]]
name = "fs2"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9564fc758e15025b46aa6643b1b77d047d1a56a1aea6e01002ac0c7026876213"
dependencies = [
"libc",
2021-02-10 22:57:42 +00:00
"winapi",
]
[[package]]
name = "futures"
2023-05-08 15:54:54 +00:00
version = "0.3.28"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-08 15:54:54 +00:00
checksum = "23342abe12aba583913b2e62f22225ff9c950774065e4bfb61a19cd9770fec40"
dependencies = [
"futures-channel",
"futures-core",
"futures-io",
"futures-sink",
"futures-task",
"futures-util",
]
2021-09-14 01:22:42 +00:00
[[package]]
name = "futures-channel"
2023-05-08 15:54:54 +00:00
version = "0.3.28"
2021-09-14 01:22:42 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-08 15:54:54 +00:00
checksum = "955518d47e09b25bbebc7a18df10b81f0c766eaf4c4f1cccef2fca5f2a4fb5f2"
2021-09-14 01:22:42 +00:00
dependencies = [
"futures-core",
"futures-sink",
2021-09-14 01:22:42 +00:00
]
[[package]]
name = "futures-core"
2023-05-08 15:54:54 +00:00
version = "0.3.28"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-08 15:54:54 +00:00
checksum = "4bca583b7e26f571124fe5b7561d49cb2868d79116cfa0eefce955557c6fee8c"
2021-09-14 01:22:42 +00:00
[[package]]
name = "futures-executor"
2023-05-08 15:54:54 +00:00
version = "0.3.28"
2021-09-14 01:22:42 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-08 15:54:54 +00:00
checksum = "ccecee823288125bd88b4d7f565c9e58e41858e47ab72e8ea2d64e93624386e0"
2021-09-14 01:22:42 +00:00
dependencies = [
"futures-core",
"futures-task",
"futures-util",
]
[[package]]
name = "futures-io"
2023-05-08 15:54:54 +00:00
version = "0.3.28"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-08 15:54:54 +00:00
checksum = "4fff74096e71ed47f8e023204cfd0aa1289cd54ae5430a9523be060cdb849964"
[[package]]
name = "futures-macro"
2023-05-08 15:54:54 +00:00
version = "0.3.28"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-08 15:54:54 +00:00
checksum = "89ca545a94061b6365f2c7355b4b32bd20df3ff95f02da9329b34ccc3bd6ee72"
dependencies = [
"proc-macro2",
"quote",
2023-09-26 23:04:04 +00:00
"syn 2.0.37",
]
[[package]]
name = "futures-sink"
2023-05-08 15:54:54 +00:00
version = "0.3.28"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-08 15:54:54 +00:00
checksum = "f43be4fe21a13b9781a69afa4985b0f6ee0e1afab2c6f454a8cf30e2b2237b6e"
[[package]]
name = "futures-task"
2023-05-08 15:54:54 +00:00
version = "0.3.28"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-08 15:54:54 +00:00
checksum = "76d3d132be6c0e6aa1534069c705a74a5997a356c0dc2f86a47765e5617c5b65"
[[package]]
name = "futures-util"
2023-05-08 15:54:54 +00:00
version = "0.3.28"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-08 15:54:54 +00:00
checksum = "26b01e40b772d54cf6c6d721c1d1abd0647a0106a12ecaa1c186273392a69533"
dependencies = [
"futures-core",
"futures-io",
"futures-macro",
"futures-sink",
"futures-task",
"memchr",
2021-02-10 22:57:42 +00:00
"pin-project-lite",
"pin-utils",
"slab",
]
[[package]]
name = "fxhash"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c"
dependencies = [
"byteorder",
]
2022-02-26 18:22:30 +00:00
[[package]]
name = "generic-array"
2023-05-08 15:54:54 +00:00
version = "0.14.7"
2020-06-11 00:34:25 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-08 15:54:54 +00:00
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
2020-06-11 00:34:25 +00:00
dependencies = [
"typenum",
2020-06-13 19:04:33 +00:00
"version_check",
2020-06-11 00:34:25 +00:00
]
[[package]]
name = "getrandom"
2023-06-19 20:46:23 +00:00
version = "0.2.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-19 20:46:23 +00:00
checksum = "be4136b2a15dd319360be1c07d9933517ccf0be8f16bf62a3bee4f0d618df427"
dependencies = [
2021-02-10 22:57:42 +00:00
"cfg-if",
2023-07-21 21:58:31 +00:00
"js-sys",
"libc",
2022-06-21 16:27:57 +00:00
"wasi",
2023-07-21 21:58:31 +00:00
"wasm-bindgen",
]
2022-03-29 01:47:46 +00:00
[[package]]
name = "gimli"
2023-08-24 00:17:14 +00:00
version = "0.28.0"
2022-03-29 01:47:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-24 00:17:14 +00:00
checksum = "6fb8d784f27acf97159b40fc4db5ecd8aa23b9ad5ef69cdd136d3bc80665f0c0"
2022-03-29 01:47:46 +00:00
[[package]]
name = "h2"
2023-08-24 00:17:14 +00:00
version = "0.3.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-24 00:17:14 +00:00
checksum = "91fc23aa11be92976ef4729127f1a74adf36d8436f7816b185d18df956790833"
dependencies = [
"bytes",
"fnv",
"futures-core",
"futures-sink",
"futures-util",
"http",
2023-06-29 16:44:51 +00:00
"indexmap 1.9.3",
"slab",
"tokio",
2022-09-21 03:42:14 +00:00
"tokio-util",
2020-09-10 16:12:42 +00:00
"tracing",
]
[[package]]
name = "hashbrown"
2022-07-17 16:16:44 +00:00
version = "0.12.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-17 16:16:44 +00:00
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
dependencies = [
2023-03-10 02:02:10 +00:00
"ahash 0.7.6",
]
2023-07-22 21:47:59 +00:00
[[package]]
name = "hashbrown"
version = "0.13.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "33ff8ae62cd3a9102e5637afc8452c55acf3844001bd5374e0b0bd7b6616c038"
dependencies = [
"ahash 0.8.3",
]
2023-06-29 16:44:51 +00:00
[[package]]
name = "hashbrown"
version = "0.14.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2c6201b9ff9fd90a5a3bac2e56a830d0caa509576f0e503818ee82c181b3437a"
2021-12-17 02:46:46 +00:00
[[package]]
name = "hdrhistogram"
2022-09-21 03:42:14 +00:00
version = "7.5.2"
2021-12-17 02:46:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-21 03:42:14 +00:00
checksum = "7f19b9f54f7c7f55e31401bb647626ce0cf0f67b0004982ce815b3ee72a02aa8"
2021-12-17 02:46:46 +00:00
dependencies = [
2023-01-29 17:47:28 +00:00
"base64 0.13.1",
2021-12-17 02:46:46 +00:00
"byteorder",
"flate2",
2022-02-26 18:22:30 +00:00
"nom",
"num-traits",
2021-12-17 02:46:46 +00:00
]
2022-03-25 03:06:29 +00:00
[[package]]
name = "heck"
2023-02-04 23:54:02 +00:00
version = "0.4.1"
2022-03-25 03:06:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-04 23:54:02 +00:00
checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
2022-03-25 03:06:29 +00:00
2023-02-04 23:54:02 +00:00
[[package]]
name = "hermit-abi"
2023-09-26 23:04:04 +00:00
version = "0.3.3"
2023-02-04 23:54:02 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-26 23:04:04 +00:00
checksum = "d77f7ec81a6d05a3abb01ab6eb7590f6083d08449fe5a1c8b1e620283546ccb7"
2023-02-04 23:54:02 +00:00
[[package]]
name = "hex"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
[[package]]
name = "hmac"
2022-04-29 20:54:54 +00:00
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-29 20:54:54 +00:00
checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
dependencies = [
2022-08-19 19:13:06 +00:00
"digest",
]
[[package]]
name = "http"
2023-02-25 17:48:23 +00:00
version = "0.2.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-25 17:48:23 +00:00
checksum = "bd6effc99afb63425aff9b05836f029929e345a6148a14b7ecd5ab67af944482"
dependencies = [
"bytes",
"fnv",
2022-02-11 17:23:48 +00:00
"itoa",
]
2021-09-18 21:29:30 +00:00
[[package]]
name = "http-body"
2022-05-26 14:46:43 +00:00
version = "0.4.5"
2021-09-18 21:29:30 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-26 14:46:43 +00:00
checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1"
2021-09-18 21:29:30 +00:00
dependencies = [
"bytes",
"http",
"pin-project-lite",
]
[[package]]
name = "httparse"
version = "1.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904"
2021-09-18 21:29:30 +00:00
[[package]]
name = "httpdate"
2023-08-16 01:05:40 +00:00
version = "1.0.3"
2021-09-18 21:29:30 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-16 01:05:40 +00:00
checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
2021-09-18 21:29:30 +00:00
2021-12-17 02:46:46 +00:00
[[package]]
name = "humantime"
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
2021-09-18 21:29:30 +00:00
[[package]]
name = "hyper"
2023-06-29 16:44:51 +00:00
version = "0.14.27"
2021-09-18 21:29:30 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-29 16:44:51 +00:00
checksum = "ffb1cfd654a8219eaef89881fdb3bb3b1cdc5fa75ded05d6933b2b382e395468"
2021-09-18 21:29:30 +00:00
dependencies = [
"bytes",
"futures-channel",
"futures-core",
"futures-util",
"h2",
"http",
"http-body",
"httparse",
"httpdate",
2022-02-11 17:23:48 +00:00
"itoa",
2021-09-18 21:29:30 +00:00
"pin-project-lite",
"socket2 0.4.9",
2021-09-18 21:29:30 +00:00
"tokio",
"tower-service",
"tracing",
"want",
]
2023-07-21 21:58:31 +00:00
[[package]]
name = "hyper-rustls"
version = "0.24.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8d78e1e73ec14cf7375674f74d7dde185c8206fd9dea6fb6295e8a98098aaa97"
dependencies = [
"futures-util",
"http",
"hyper",
"rustls",
"tokio",
"tokio-rustls",
]
2021-09-18 21:29:30 +00:00
[[package]]
name = "hyper-timeout"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bbb958482e8c7be4bc3cf272a766a2b0bf1a6755e7a6ae777f017a31d11b13b1"
dependencies = [
"hyper",
"pin-project-lite",
"tokio",
"tokio-io-timeout",
]
[[package]]
name = "idna"
2023-06-19 20:46:23 +00:00
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-19 20:46:23 +00:00
checksum = "7d20d6b07bfbc108882d88ed8e37d39636dcc260e15e30c45e6ba089610b917c"
dependencies = [
"unicode-bidi",
"unicode-normalization",
]
2022-03-29 01:47:46 +00:00
[[package]]
name = "indenter"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ce23b50ad8242c51a442f3ff322d56b02f08852c77e4c0b4d3fd684abc89c683"
[[package]]
name = "indexmap"
2023-05-08 15:54:54 +00:00
version = "1.9.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-08 15:54:54 +00:00
checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
dependencies = [
"autocfg",
2023-06-29 16:44:51 +00:00
"hashbrown 0.12.3",
]
[[package]]
name = "indexmap"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d5477fe2230a79769d8dc68e0eabf5437907c0457a5614a9e8dddb67f65eb65d"
dependencies = [
"equivalent",
"hashbrown 0.14.0",
]
2020-09-10 16:12:42 +00:00
[[package]]
name = "instant"
version = "0.1.12"
2020-09-10 16:12:42 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
2020-10-10 23:22:00 +00:00
dependencies = [
2021-02-10 22:57:42 +00:00
"cfg-if",
]
2021-10-13 04:16:31 +00:00
[[package]]
name = "io-uring"
2023-02-25 17:48:23 +00:00
version = "0.5.13"
2021-10-13 04:16:31 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-25 17:48:23 +00:00
checksum = "dd1e1a01cfb924fd8c5c43b6827965db394f5a3a16c599ce03452266e1cf984c"
2021-10-13 04:16:31 +00:00
dependencies = [
2023-08-29 18:02:59 +00:00
"bitflags 1.3.2",
2021-10-13 04:16:31 +00:00
"libc",
]
2023-07-21 21:58:31 +00:00
[[package]]
name = "ipnet"
version = "2.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "28b29a3cd74f0f4598934efe3aeba42bae0eb4680554128851ebbecb02af14e6"
2021-09-18 21:29:30 +00:00
[[package]]
name = "itertools"
2022-09-21 03:42:14 +00:00
version = "0.10.5"
2021-09-18 21:29:30 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-21 03:42:14 +00:00
checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
2021-09-18 21:29:30 +00:00
dependencies = [
"either",
]
2021-12-17 02:46:46 +00:00
[[package]]
name = "itoa"
2023-07-17 03:11:39 +00:00
version = "1.0.9"
2021-12-17 02:46:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-17 03:11:39 +00:00
checksum = "af150ab688ff2122fcef229be89cb50dd66af9e01a4ff320cc137eecc9bacc38"
2021-12-17 02:46:46 +00:00
2021-09-12 16:00:29 +00:00
[[package]]
name = "js-sys"
2023-06-19 20:46:23 +00:00
version = "0.3.64"
2021-09-12 16:00:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-19 20:46:23 +00:00
checksum = "c5f195fe497f702db0f318b07fdd68edb16955aed830df8363d837542f8f935a"
2021-09-12 16:00:29 +00:00
dependencies = [
"wasm-bindgen",
]
2022-02-26 18:22:30 +00:00
[[package]]
name = "json5"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "96b0db21af676c1ce64250b5f40f3ce2cf27e4e47cb91ed91eb6fe9350b430c1"
dependencies = [
"pest",
"pest_derive",
"serde",
]
[[package]]
name = "language-tags"
2021-06-19 19:39:41 +00:00
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-19 19:39:41 +00:00
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"
2023-09-26 23:04:04 +00:00
version = "0.2.148"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-26 23:04:04 +00:00
checksum = "9cdc71e17332e86d2e1d38c1f99edcb6288ee11b815fb1a4b049eaa2114d369b"
[[package]]
name = "linked-hash-map"
2022-07-02 15:52:24 +00:00
version = "0.5.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-02 15:52:24 +00:00
checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f"
2021-04-02 18:11:20 +00:00
[[package]]
name = "local-channel"
2023-09-26 23:04:04 +00:00
version = "0.1.4"
2021-04-02 18:11:20 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-26 23:04:04 +00:00
checksum = "e0a493488de5f18c8ffcba89eebb8532ffc562dc400490eb65b84893fae0b178"
2021-04-02 18:11:20 +00:00
dependencies = [
"futures-core",
"futures-sink",
"local-waker",
]
[[package]]
name = "local-waker"
2022-05-26 14:46:43 +00:00
version = "0.1.3"
2021-04-02 18:11:20 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-26 14:46:43 +00:00
checksum = "e34f76eb3611940e0e7d53a9aaa4e6a3151f69541a282fd0dad5571420c53ff1"
2021-04-02 18:11:20 +00:00
[[package]]
name = "lock_api"
2023-06-19 20:46:23 +00:00
version = "0.4.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-19 20:46:23 +00:00
checksum = "c1cc9717a20b1bb222f333e6a92fd32f7d8a18ddc5a3191a11af45dcbf4dcd16"
dependencies = [
2022-04-03 20:21:14 +00:00
"autocfg",
"scopeguard",
]
[[package]]
name = "log"
2023-08-16 01:05:40 +00:00
version = "0.4.20"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-16 01:05:40 +00:00
checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f"
2023-07-22 21:47:59 +00:00
[[package]]
name = "mach2"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6d0d1830bcd151a6fc4aea1369af235b36c1528fe976b8ff678683c9995eade8"
dependencies = [
"libc",
]
[[package]]
name = "matchers"
2021-10-25 01:37:59 +00:00
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-25 01:37:59 +00:00
checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558"
dependencies = [
2023-07-06 21:08:21 +00:00
"regex-automata 0.1.10",
]
2022-04-11 20:17:54 +00:00
[[package]]
name = "matchit"
2023-09-26 23:04:04 +00:00
version = "0.7.3"
2022-04-11 20:17:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-26 23:04:04 +00:00
checksum = "0e7465ac9959cc2b1404e8e2367b43684a6d13790fe23056cc8c6c5a6b7bcb94"
2022-04-11 20:17:54 +00:00
[[package]]
name = "md-5"
2023-09-26 23:04:04 +00:00
version = "0.10.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-26 23:04:04 +00:00
checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf"
dependencies = [
2023-09-26 23:04:04 +00:00
"cfg-if",
"digest",
]
[[package]]
name = "memchr"
version = "2.6.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8f232d6ef707e1956a43342693d2a31e72989554d58299d7a88738cc95b0d35c"
2020-12-03 17:38:28 +00:00
[[package]]
name = "memoffset"
2023-06-19 20:46:23 +00:00
version = "0.9.0"
2020-12-03 17:38:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-19 20:46:23 +00:00
checksum = "5a634b1c61a95585bd15607c6ab0c4e5b226e695ff2800ba0cdccddf208c406c"
2020-12-03 17:38:28 +00:00
dependencies = [
"autocfg",
]
2023-07-22 21:47:59 +00:00
[[package]]
name = "metrics"
version = "0.21.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fde3af1a009ed76a778cb84fdef9e7dbbdf5775ae3e4cc1f434a6a307f6f76c5"
dependencies = [
"ahash 0.8.3",
"metrics-macros",
"portable-atomic",
]
[[package]]
name = "metrics-exporter-prometheus"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8a4964177ddfdab1e3a2b37aec7cf320e14169abb0ed73999f558136409178d5"
dependencies = [
2023-09-26 23:04:04 +00:00
"base64 0.21.4",
2023-07-22 21:47:59 +00:00
"hyper",
"indexmap 1.9.3",
"ipnet",
"metrics",
"metrics-util",
"quanta",
"thiserror",
"tokio",
]
[[package]]
name = "metrics-macros"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ddece26afd34c31585c74a4db0630c376df271c285d682d1e55012197830b6df"
dependencies = [
"proc-macro2",
"quote",
2023-09-26 23:04:04 +00:00
"syn 2.0.37",
2023-07-22 21:47:59 +00:00
]
[[package]]
name = "metrics-util"
version = "0.15.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4de2ed6e491ed114b40b732e4d1659a9d53992ebd87490c44a6ffe23739d973e"
dependencies = [
"crossbeam-epoch",
"crossbeam-utils",
"hashbrown 0.13.1",
"metrics",
"num_cpus",
"quanta",
"sketches-ddsketch",
]
[[package]]
name = "mime"
2023-05-08 15:54:54 +00:00
version = "0.3.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-08 15:54:54 +00:00
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
2023-07-21 21:58:31 +00:00
[[package]]
name = "mime_guess"
version = "2.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4192263c238a5f0d0c6bfd21f336a313a4ce1c450542449ca191bb657b4642ef"
dependencies = [
"mime",
"unicase",
]
2021-12-17 02:46:46 +00:00
[[package]]
name = "minimal-lexical"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
2023-05-08 15:54:54 +00:00
[[package]]
name = "miniz_oxide"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7"
dependencies = [
"adler",
]
[[package]]
name = "mio"
2023-06-01 22:19:14 +00:00
version = "0.8.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-01 22:19:14 +00:00
checksum = "927a765cd3fc26206e66b296465fa9d3e5ab003e651c1b3c060e7956d96b19d2"
dependencies = [
"libc",
"log",
2022-06-21 16:27:57 +00:00
"wasi",
2023-06-19 20:46:23 +00:00
"windows-sys",
]
2023-07-22 15:44:43 +00:00
[[package]]
name = "nanorand"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6a51313c5820b0b02bd422f4b44776fbf47961755c74ce64afc73bfad10226c3"
dependencies = [
"getrandom",
]
2021-12-17 02:46:46 +00:00
[[package]]
name = "nom"
2023-01-29 17:47:28 +00:00
version = "7.1.3"
2021-12-17 02:46:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-29 17:47:28 +00:00
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
2021-12-17 02:46:46 +00:00
dependencies = [
"memchr",
"minimal-lexical",
]
2022-10-15 16:13:24 +00:00
[[package]]
name = "nu-ansi-term"
version = "0.46.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84"
dependencies = [
"overload",
"winapi",
]
[[package]]
name = "num-traits"
2023-07-21 21:59:05 +00:00
version = "0.2.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-21 21:59:05 +00:00
checksum = "f30b0abd723be7e2ffca1272140fac1a2f084c77ec3e123c192b66af1ee9e6c2"
dependencies = [
"autocfg",
]
[[package]]
name = "num_cpus"
2023-06-29 16:44:51 +00:00
version = "1.16.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-29 16:44:51 +00:00
checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43"
2022-01-24 04:39:03 +00:00
dependencies = [
2023-06-29 16:44:51 +00:00
"hermit-abi",
2022-01-24 04:39:03 +00:00
"libc",
]
2022-03-29 01:47:46 +00:00
[[package]]
name = "object"
version = "0.32.1"
2022-03-29 01:47:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9cf5f9dd3933bd50a9e1f149ec995f39ae2c496d31fd772c1fd45ebc27e902b0"
2022-03-29 01:47:46 +00:00
dependencies = [
"memchr",
]
[[package]]
name = "once_cell"
2023-06-19 20:46:23 +00:00
version = "1.18.0"
2022-02-26 18:22:30 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-19 20:46:23 +00:00
checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d"
2022-02-26 18:22:30 +00:00
2021-09-18 21:29:30 +00:00
[[package]]
name = "opentelemetry"
version = "0.20.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9591d937bc0e6d2feb6f71a559540ab300ea49955229c347a517a28d27784c54"
2021-09-18 21:29:30 +00:00
dependencies = [
2022-09-21 03:42:14 +00:00
"opentelemetry_api",
"opentelemetry_sdk",
2021-09-18 21:29:30 +00:00
]
[[package]]
name = "opentelemetry-otlp"
version = "0.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7e5e5a5c4135864099f3faafbe939eb4d7f9b80ebf68a8448da961b32a7c1275"
2021-09-18 21:29:30 +00:00
dependencies = [
"async-trait",
"futures-core",
2021-09-18 21:29:30 +00:00
"http",
2022-09-21 03:42:14 +00:00
"opentelemetry-proto",
"opentelemetry-semantic-conventions",
"opentelemetry_api",
"opentelemetry_sdk",
2022-09-21 03:42:14 +00:00
"prost",
2021-09-18 21:29:30 +00:00
"thiserror",
"tokio",
"tonic",
2022-09-21 03:42:14 +00:00
]
[[package]]
name = "opentelemetry-proto"
version = "0.3.0"
2022-09-21 03:42:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b1e3f814aa9f8c905d0ee4bde026afd3b2577a97c10e1699912e3e44f0c4cbeb"
2022-09-21 03:42:14 +00:00
dependencies = [
"opentelemetry_api",
"opentelemetry_sdk",
2022-09-21 03:42:14 +00:00
"prost",
"tonic",
]
[[package]]
name = "opentelemetry-semantic-conventions"
version = "0.12.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "73c9f9340ad135068800e7f1b24e9e09ed9e7143f5bf8518ded3d3ec69789269"
dependencies = [
"opentelemetry",
2021-09-18 21:29:30 +00:00
]
2022-09-21 03:42:14 +00:00
[[package]]
name = "opentelemetry_api"
version = "0.20.0"
2022-09-21 03:42:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8a81f725323db1b1206ca3da8bb19874bbd3f57c3bcd59471bfb04525b265b9b"
2022-09-21 03:42:14 +00:00
dependencies = [
"futures-channel",
"futures-util",
2023-06-29 16:44:51 +00:00
"indexmap 1.9.3",
"js-sys",
2022-09-21 03:42:14 +00:00
"once_cell",
"pin-project-lite",
"thiserror",
"urlencoding",
2022-09-21 03:42:14 +00:00
]
[[package]]
name = "opentelemetry_sdk"
version = "0.20.0"
2022-09-21 03:42:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fa8e705a0612d48139799fcbaba0d4a90f06277153e43dd2bdc16c6f0edd8026"
2022-09-21 03:42:14 +00:00
dependencies = [
"async-trait",
"crossbeam-channel",
"futures-channel",
"futures-executor",
"futures-util",
"once_cell",
"opentelemetry_api",
"ordered-float",
2022-09-21 03:42:14 +00:00
"percent-encoding",
"rand",
"regex",
"serde_json",
2022-09-21 03:42:14 +00:00
"thiserror",
"tokio",
"tokio-stream",
]
[[package]]
name = "ordered-float"
2023-08-24 00:17:14 +00:00
version = "3.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-24 00:17:14 +00:00
checksum = "2a54938017eacd63036332b4ae5c8a49fc8c0c1d6d629893057e4f13609edd06"
dependencies = [
"num-traits",
]
[[package]]
name = "ordered-multimap"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ccd746e37177e1711c20dd619a1620f34f5c8b569c53590a72dedd5344d8924a"
dependencies = [
2022-04-03 20:21:14 +00:00
"dlv-list",
2023-06-29 16:44:51 +00:00
"hashbrown 0.12.3",
]
2022-10-15 16:13:24 +00:00
[[package]]
name = "overload"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39"
2022-03-29 01:47:46 +00:00
[[package]]
name = "owo-colors"
version = "3.5.0"
2022-03-29 01:47:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c1b04fb49957986fdce4d6ee7a65027d55d4b6d2265e5848bbb507b58ccfdb6f"
2022-03-29 01:47:46 +00:00
[[package]]
name = "parking_lot"
version = "0.11.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99"
dependencies = [
2020-09-10 16:12:42 +00:00
"instant",
"lock_api",
2022-12-23 18:58:30 +00:00
"parking_lot_core 0.8.6",
2022-02-11 17:23:48 +00:00
]
[[package]]
name = "parking_lot"
2022-06-06 21:04:00 +00:00
version = "0.12.1"
2022-02-11 17:23:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-06 21:04:00 +00:00
checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
2022-02-11 17:23:48 +00:00
dependencies = [
"lock_api",
2023-06-19 20:46:23 +00:00
"parking_lot_core 0.9.8",
]
[[package]]
name = "parking_lot_core"
2022-12-23 18:58:30 +00:00
version = "0.8.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-23 18:58:30 +00:00
checksum = "60a2cfe6f0ad2bfc16aefa463b497d5c7a5ecd44a23efa72aa342d90177356dc"
dependencies = [
2021-02-10 22:57:42 +00:00
"cfg-if",
2020-09-10 16:12:42 +00:00
"instant",
"libc",
2023-06-19 20:46:23 +00:00
"redox_syscall 0.2.16",
"smallvec",
2021-02-10 22:57:42 +00:00
"winapi",
]
2022-02-11 17:23:48 +00:00
[[package]]
name = "parking_lot_core"
2023-06-19 20:46:23 +00:00
version = "0.9.8"
2022-02-11 17:23:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-19 20:46:23 +00:00
checksum = "93f00c865fe7cabf650081affecd3871070f26767e7b2070a3ffae14c654b447"
2022-02-11 17:23:48 +00:00
dependencies = [
"cfg-if",
"libc",
2023-06-19 20:46:23 +00:00
"redox_syscall 0.3.5",
2022-02-11 17:23:48 +00:00
"smallvec",
2023-06-19 20:46:23 +00:00
"windows-targets",
2022-02-11 17:23:48 +00:00
]
2021-04-17 19:59:42 +00:00
[[package]]
name = "paste"
2023-07-17 03:11:39 +00:00
version = "1.0.14"
2021-04-17 19:59:42 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-17 03:11:39 +00:00
checksum = "de3145af08024dea9fa9914f381a17b8fc6034dfb00f3a84013f7ff43f29ed4c"
2021-04-17 19:59:42 +00:00
2022-02-26 18:22:30 +00:00
[[package]]
name = "pathdiff"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8835116a5c179084a830efb3adc117ab007512b535bc1a21c991d3b32a6b44dd"
[[package]]
name = "percent-encoding"
2023-06-19 20:46:23 +00:00
version = "2.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-19 20:46:23 +00:00
checksum = "9b2a4787296e9989611394c33f193f676704af1686e70b8f8033ab5ba9a35a94"
2022-02-26 18:22:30 +00:00
[[package]]
name = "pest"
2023-09-26 23:04:04 +00:00
version = "2.7.4"
2022-02-26 18:22:30 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-26 23:04:04 +00:00
checksum = "c022f1e7b65d6a24c0dbbd5fb344c66881bc01f3e5ae74a1c8100f2f985d98a4"
2022-02-26 18:22:30 +00:00
dependencies = [
2023-08-31 01:58:09 +00:00
"memchr",
2022-08-19 19:13:06 +00:00
"thiserror",
2022-02-26 18:22:30 +00:00
"ucd-trie",
]
[[package]]
name = "pest_derive"
2023-09-26 23:04:04 +00:00
version = "2.7.4"
2022-02-26 18:22:30 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-26 23:04:04 +00:00
checksum = "35513f630d46400a977c4cb58f78e1bfbe01434316e60c37d27b9ad6139c66d8"
2022-02-26 18:22:30 +00:00
dependencies = [
"pest",
"pest_generator",
]
[[package]]
name = "pest_generator"
2023-09-26 23:04:04 +00:00
version = "2.7.4"
2022-02-26 18:22:30 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-26 23:04:04 +00:00
checksum = "bc9fc1b9e7057baba189b5c626e2d6f40681ae5b6eb064dc7c7834101ec8123a"
2022-02-26 18:22:30 +00:00
dependencies = [
"pest",
"pest_meta",
"proc-macro2",
"quote",
2023-09-26 23:04:04 +00:00
"syn 2.0.37",
2022-02-26 18:22:30 +00:00
]
[[package]]
name = "pest_meta"
2023-09-26 23:04:04 +00:00
version = "2.7.4"
2022-02-26 18:22:30 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-26 23:04:04 +00:00
checksum = "1df74e9e7ec4053ceb980e7c0c8bd3594e977fde1af91daba9c928e8e8c6708d"
2022-02-26 18:22:30 +00:00
dependencies = [
2022-08-19 19:13:06 +00:00
"once_cell",
2022-02-26 18:22:30 +00:00
"pest",
2023-01-29 17:47:28 +00:00
"sha2",
2022-02-26 18:22:30 +00:00
]
2023-09-02 15:05:06 +00:00
[[package]]
name = "phf"
version = "0.11.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ade2d8b8f33c7333b51bcf0428d37e217e9f32192ae4772156f65063b8ce03dc"
dependencies = [
"phf_shared",
]
[[package]]
name = "phf_shared"
version = "0.11.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "90fcb95eef784c2ac79119d1dd819e162b5da872ce6f3c3abe1e8ca1c082f72b"
dependencies = [
2023-09-26 23:04:04 +00:00
"siphasher 0.3.11",
2023-09-02 15:05:06 +00:00
]
[[package]]
name = "pict-rs"
2023-09-02 01:56:13 +00:00
version = "0.5.0-alpha.17"
dependencies = [
"actix-form-data",
"actix-web",
"anyhow",
2021-10-23 04:48:56 +00:00
"async-trait",
2023-09-02 16:52:55 +00:00
"barrel",
2023-09-26 23:04:04 +00:00
"base64 0.21.4",
2022-03-25 03:06:29 +00:00
"clap",
2022-03-29 01:47:46 +00:00
"color-eyre",
"config",
2021-12-17 02:46:46 +00:00
"console-subscriber",
"dashmap",
2023-09-02 15:05:06 +00:00
"deadpool",
"diesel",
"diesel-async",
2023-09-03 17:47:06 +00:00
"diesel-derive-enum",
2023-07-22 15:44:43 +00:00
"flume",
2023-08-23 16:59:42 +00:00
"futures-core",
"hex",
2022-09-25 01:33:59 +00:00
"md-5",
2023-07-22 21:47:59 +00:00
"metrics",
"metrics-exporter-prometheus",
"mime",
2021-09-18 21:29:30 +00:00
"opentelemetry",
"opentelemetry-otlp",
"pin-project-lite",
2023-07-23 21:03:30 +00:00
"quick-xml 0.30.0",
2023-09-02 15:05:06 +00:00
"refinery",
2023-07-21 21:58:31 +00:00
"reqwest",
"reqwest-middleware",
"reqwest-tracing",
"rusty-s3",
2022-02-26 18:22:30 +00:00
"serde",
"serde-tuple-vec-map",
"serde_json",
"serde_urlencoded",
2022-04-29 20:54:54 +00:00
"sha2",
"sled",
2021-10-19 01:29:06 +00:00
"storage-path-generator",
"streem",
"thiserror",
2022-02-26 18:22:30 +00:00
"time",
"tokio",
2023-09-02 15:05:06 +00:00
"tokio-postgres",
2021-10-13 04:16:31 +00:00
"tokio-uring",
2022-09-21 03:42:14 +00:00
"tokio-util",
2023-09-26 23:04:49 +00:00
"toml 0.8.1",
"tracing",
2021-09-14 01:22:42 +00:00
"tracing-actix-web",
"tracing-error",
"tracing-log",
2021-09-18 21:29:30 +00:00
"tracing-opentelemetry",
"tracing-subscriber",
2021-09-18 21:29:30 +00:00
"url",
2022-07-02 15:52:24 +00:00
"uuid",
]
[[package]]
name = "pin-project"
version = "1.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fda4ed1c6c173e3fc7a83629421152e01d7b1f9b7f65fb301e490e8cfc656422"
dependencies = [
2021-03-10 02:51:03 +00:00
"pin-project-internal",
]
[[package]]
name = "pin-project-internal"
version = "1.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4359fd9c9171ec6e8c62926d6faaf553a8dc3f64e1507e76da7911b4f6a04405"
dependencies = [
"proc-macro2",
"quote",
2023-09-26 23:04:04 +00:00
"syn 2.0.37",
]
[[package]]
name = "pin-project-lite"
2023-08-28 23:44:55 +00:00
version = "0.2.13"
2020-12-03 17:38:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-28 23:44:55 +00:00
checksum = "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58"
2020-12-03 17:38:28 +00:00
[[package]]
name = "pin-utils"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
2023-07-22 21:47:59 +00:00
[[package]]
name = "portable-atomic"
2023-08-28 23:44:55 +00:00
version = "1.4.3"
2023-07-22 21:47:59 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-28 23:44:55 +00:00
checksum = "31114a898e107c51bb1609ffaf55a0e011cf6a4d7f1170d0015a165082c0338b"
2023-07-22 21:47:59 +00:00
2023-09-02 15:05:06 +00:00
[[package]]
name = "postgres"
version = "0.19.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7915b33ed60abc46040cbcaa25ffa1c7ec240668e0477c4f3070786f5916d451"
dependencies = [
"bytes",
"fallible-iterator",
"futures-util",
"log",
"tokio",
"tokio-postgres",
]
[[package]]
name = "postgres-protocol"
version = "0.6.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "49b6c5ef183cd3ab4ba005f1ca64c21e8bd97ce4699cfea9e8d9a2c4958ca520"
dependencies = [
2023-09-26 23:04:04 +00:00
"base64 0.21.4",
2023-09-02 15:05:06 +00:00
"byteorder",
"bytes",
"fallible-iterator",
"hmac",
"md-5",
"memchr",
"rand",
"sha2",
"stringprep",
]
[[package]]
name = "postgres-types"
version = "0.2.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8d2234cdee9408b523530a9b6d2d6b373d1db34f6a8e51dc03ded1828d7fb67c"
dependencies = [
"bytes",
"fallible-iterator",
"postgres-protocol",
"serde",
"serde_json",
"time",
"uuid",
]
[[package]]
name = "ppv-lite86"
2022-11-26 17:17:47 +00:00
version = "0.2.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-26 17:17:47 +00:00
checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
[[package]]
name = "proc-macro2"
2023-09-26 23:04:04 +00:00
version = "1.0.67"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-26 23:04:04 +00:00
checksum = "3d433d9f1a3e8c1263d9456598b16fec66f4acc9a74dacffd35c7bb09b3a1328"
dependencies = [
2022-05-26 14:46:43 +00:00
"unicode-ident",
]
2022-04-11 20:17:54 +00:00
[[package]]
name = "prost"
2023-05-08 15:54:54 +00:00
version = "0.11.9"
2022-04-11 20:17:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-08 15:54:54 +00:00
checksum = "0b82eaa1d779e9a4bc1c3217db8ffbeabaae1dca241bf70183242128d48681cd"
2022-04-11 20:17:54 +00:00
dependencies = [
"bytes",
2022-09-21 03:42:14 +00:00
"prost-derive",
2021-12-17 02:46:46 +00:00
]
2022-04-11 20:17:54 +00:00
[[package]]
name = "prost-derive"
2023-05-08 15:54:54 +00:00
version = "0.11.9"
2022-04-11 20:17:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-08 15:54:54 +00:00
checksum = "e5d2d8d10f3c6ded6da8b05b5fb3b8a5082514344d56c9f871412d29b4e075b4"
2022-04-11 20:17:54 +00:00
dependencies = [
"anyhow",
"itertools",
"proc-macro2",
"quote",
2023-05-08 15:54:54 +00:00
"syn 1.0.109",
2022-04-11 20:17:54 +00:00
]
[[package]]
name = "prost-types"
2023-05-08 15:54:54 +00:00
version = "0.11.9"
2022-04-11 20:17:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-08 15:54:54 +00:00
checksum = "213622a1460818959ac1181aaeb2dc9c7f63df720db7d788b3e24eacd1983e13"
2022-04-11 20:17:54 +00:00
dependencies = [
2022-09-21 03:42:14 +00:00
"prost",
2021-09-18 21:29:30 +00:00
]
2023-07-22 21:47:59 +00:00
[[package]]
name = "quanta"
version = "0.11.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a17e662a7a8291a865152364c20c7abc5e60486ab2001e8ec10b24862de0b9ab"
dependencies = [
"crossbeam-utils",
"libc",
"mach2",
"once_cell",
"raw-cpuid",
"wasi",
"web-sys",
"winapi",
]
2022-09-28 01:31:21 +00:00
[[package]]
name = "quick-xml"
2023-01-04 20:42:13 +00:00
version = "0.27.1"
2022-09-28 01:31:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-04 20:42:13 +00:00
checksum = "ffc053f057dd768a56f62cd7e434c42c831d296968997e9ac1f76ea7c2d14c41"
2022-09-28 01:31:21 +00:00
dependencies = [
"memchr",
"serde",
]
2023-05-08 15:57:41 +00:00
[[package]]
name = "quick-xml"
2023-07-23 21:03:30 +00:00
version = "0.30.0"
2023-05-08 15:57:41 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-23 21:03:30 +00:00
checksum = "eff6510e86862b57b210fd8cbe8ed3f0d7d600b9c2863cd4549a2e033c66e956"
2023-05-08 15:57:41 +00:00
dependencies = [
"memchr",
"serde",
]
[[package]]
name = "quote"
2023-08-24 00:17:14 +00:00
version = "1.0.33"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-24 00:17:14 +00:00
checksum = "5267fca4496028628a95160fc423a33e8b2e6af8a5302579e322e4b520293cae"
dependencies = [
"proc-macro2",
]
[[package]]
name = "rand"
2022-02-26 18:22:30 +00:00
version = "0.8.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-26 18:22:30 +00:00
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
dependencies = [
"libc",
"rand_chacha",
"rand_core",
]
[[package]]
name = "rand_chacha"
2021-06-19 19:39:41 +00:00
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-19 19:39:41 +00:00
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
dependencies = [
"ppv-lite86",
"rand_core",
]
[[package]]
name = "rand_core"
2022-09-21 03:42:14 +00:00
version = "0.6.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-21 03:42:14 +00:00
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
dependencies = [
"getrandom",
]
2023-07-22 21:47:59 +00:00
[[package]]
name = "raw-cpuid"
version = "10.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6c297679cb867470fa8c9f67dbba74a78d78e3e98d7cf2b08d6d71540f797332"
dependencies = [
2023-08-29 18:02:59 +00:00
"bitflags 1.3.2",
2023-07-22 21:47:59 +00:00
]
[[package]]
name = "redox_syscall"
2022-08-19 19:13:06 +00:00
version = "0.2.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-19 19:13:06 +00:00
checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
2021-03-10 02:51:03 +00:00
dependencies = [
2023-08-29 18:02:59 +00:00
"bitflags 1.3.2",
2021-03-10 02:51:03 +00:00
]
2023-06-19 20:46:23 +00:00
[[package]]
name = "redox_syscall"
version = "0.3.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29"
dependencies = [
2023-08-29 18:02:59 +00:00
"bitflags 1.3.2",
2023-06-19 20:46:23 +00:00
]
2023-09-02 15:05:06 +00:00
[[package]]
name = "refinery"
2023-09-26 23:04:04 +00:00
version = "0.8.11"
2023-09-02 15:05:06 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-26 23:04:04 +00:00
checksum = "529664dbccc0a296947615c997a857912d72d1c44be1fafb7bae54ecfa7a8c24"
2023-09-02 15:05:06 +00:00
dependencies = [
"refinery-core",
"refinery-macros",
]
[[package]]
name = "refinery-core"
2023-09-26 23:04:04 +00:00
version = "0.8.11"
2023-09-02 15:05:06 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-26 23:04:04 +00:00
checksum = "e895cb870cf06e92318cbbeb701f274d022d5ca87a16fa8244e291cd035ef954"
2023-09-02 15:05:06 +00:00
dependencies = [
"async-trait",
"cfg-if",
"lazy_static",
"log",
"postgres",
"regex",
"serde",
2023-09-26 23:04:04 +00:00
"siphasher 1.0.0",
2023-09-02 15:05:06 +00:00
"thiserror",
"time",
"tokio",
"tokio-postgres",
2023-09-26 23:04:04 +00:00
"toml 0.7.8",
2023-09-02 15:05:06 +00:00
"url",
"walkdir",
]
[[package]]
name = "refinery-macros"
2023-09-26 23:04:04 +00:00
version = "0.8.11"
2023-09-02 15:05:06 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-26 23:04:04 +00:00
checksum = "123e8b80f8010c3ae38330c81e76938fc7adf6cdbfbaad20295bb8c22718b4f1"
2023-09-02 15:05:06 +00:00
dependencies = [
"proc-macro2",
"quote",
"refinery-core",
"regex",
2023-09-26 23:04:04 +00:00
"syn 2.0.37",
2023-09-02 15:05:06 +00:00
]
[[package]]
name = "regex"
version = "1.9.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "697061221ea1b4a94a624f67d0ae2bfe4e22b8a17b6a192afb11046542cc8c47"
dependencies = [
"aho-corasick",
"memchr",
"regex-automata 0.3.8",
2023-08-28 23:44:55 +00:00
"regex-syntax 0.7.5",
]
[[package]]
name = "regex-automata"
2021-06-19 19:39:41 +00:00
version = "0.1.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-19 19:39:41 +00:00
checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
dependencies = [
2023-05-08 15:54:54 +00:00
"regex-syntax 0.6.29",
]
2023-07-06 21:08:21 +00:00
[[package]]
name = "regex-automata"
version = "0.3.8"
2023-07-06 21:08:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c2f401f4955220693b56f8ec66ee9c78abffd8d1c4f23dc41a23839eb88f0795"
2023-07-06 21:08:21 +00:00
dependencies = [
"aho-corasick",
"memchr",
2023-08-28 23:44:55 +00:00
"regex-syntax 0.7.5",
2023-07-06 21:08:21 +00:00
]
[[package]]
name = "regex-syntax"
2023-05-08 15:54:54 +00:00
version = "0.6.29"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-08 15:54:54 +00:00
checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
[[package]]
name = "regex-syntax"
2023-08-28 23:44:55 +00:00
version = "0.7.5"
2023-05-08 15:54:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-28 23:44:55 +00:00
checksum = "dbb5fb1acd8a1a18b3dd5be62d25485eb770e05afb408a9627d14d451bae12da"
2023-07-21 21:58:31 +00:00
[[package]]
name = "reqwest"
2023-08-24 00:17:14 +00:00
version = "0.11.20"
2023-07-21 21:58:31 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-24 00:17:14 +00:00
checksum = "3e9ad3fe7488d7e34558a2033d45a0c90b72d97b4f80705666fea71472e2e6a1"
2023-07-21 21:58:31 +00:00
dependencies = [
2023-09-26 23:04:04 +00:00
"base64 0.21.4",
2023-07-21 21:58:31 +00:00
"bytes",
"encoding_rs",
"futures-core",
"futures-util",
"h2",
"http",
"http-body",
"hyper",
"hyper-rustls",
"ipnet",
"js-sys",
"log",
"mime",
"mime_guess",
"once_cell",
"percent-encoding",
"pin-project-lite",
"rustls",
"rustls-pemfile",
"serde",
"serde_json",
"serde_urlencoded",
"tokio",
"tokio-rustls",
"tokio-util",
"tower-service",
"url",
"wasm-bindgen",
"wasm-bindgen-futures",
"wasm-streams",
"web-sys",
"webpki-roots",
"winreg",
]
[[package]]
name = "reqwest-middleware"
version = "0.2.3"
2023-07-21 21:58:31 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ff44108c7925d082f2861e683a88618b68235ad9cdc60d64d9d1188efc951cdb"
2023-07-21 21:58:31 +00:00
dependencies = [
"anyhow",
"async-trait",
"http",
"reqwest",
"serde",
"task-local-extensions",
"thiserror",
]
[[package]]
name = "reqwest-tracing"
2023-08-24 00:17:14 +00:00
version = "0.4.6"
2023-07-21 21:58:31 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-24 00:17:14 +00:00
checksum = "14b1e66540e0cac90acadaf7109bf99c90d95abcc94b4c096bfa16a2d7aa7a71"
2023-07-21 21:58:31 +00:00
dependencies = [
"anyhow",
"async-trait",
"getrandom",
"matchit",
"reqwest",
"reqwest-middleware",
"task-local-extensions",
"tracing",
]
2023-09-02 15:05:06 +00:00
[[package]]
name = "retain_mut"
version = "0.1.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4389f1d5789befaf6029ebd9f7dac4af7f7e3d61b69d4f30e2ac02b57e7712b0"
2021-09-12 16:00:29 +00:00
[[package]]
name = "ring"
version = "0.16.20"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc"
dependencies = [
"cc",
"libc",
"once_cell",
2023-07-22 15:44:43 +00:00
"spin 0.5.2",
2021-09-12 16:00:29 +00:00
"untrusted",
"web-sys",
"winapi",
]
2021-10-14 00:06:53 +00:00
[[package]]
name = "rio"
version = "0.9.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9e98c25665909853c07874301124482754434520ab572ac6a22e90366de6685b"
dependencies = [
"libc",
]
[[package]]
2022-02-26 18:22:30 +00:00
name = "ron"
2022-06-21 16:27:57 +00:00
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-21 16:27:57 +00:00
checksum = "88073939a61e5b7680558e6be56b419e208420c2adb92be54921fa6b72283f1a"
2022-02-26 18:22:30 +00:00
dependencies = [
2023-01-29 17:47:28 +00:00
"base64 0.13.1",
2023-08-29 18:02:59 +00:00
"bitflags 1.3.2",
2022-02-26 18:22:30 +00:00
"serde",
]
[[package]]
name = "rust-ini"
version = "0.18.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f6d5f2436026b4f6e79dc829837d467cc7e9a55ee40e750d716713540715a2df"
dependencies = [
"cfg-if",
2022-04-03 20:21:14 +00:00
"ordered-multimap",
]
2022-03-29 01:47:46 +00:00
[[package]]
name = "rustc-demangle"
2023-05-08 15:54:54 +00:00
version = "0.1.23"
2022-03-29 01:47:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-08 15:54:54 +00:00
checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76"
2022-03-29 01:47:46 +00:00
[[package]]
name = "rustc_version"
2021-12-03 20:21:31 +00:00
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-03 20:21:31 +00:00
checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
dependencies = [
2021-10-20 23:16:53 +00:00
"semver",
]
[[package]]
name = "rustls"
2023-08-28 23:44:55 +00:00
version = "0.21.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-28 23:44:55 +00:00
checksum = "cd8d6c9f025a446bc4d18ad9632e69aec8f287aa84499ee335599fabd20c3fd8"
dependencies = [
"log",
"ring",
2023-07-21 21:58:31 +00:00
"rustls-webpki",
2021-12-03 20:21:31 +00:00
"sct",
2023-07-21 21:58:31 +00:00
]
[[package]]
name = "rustls-pemfile"
version = "1.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2d3987094b1d07b653b7dfdc3f70ce9a1da9c51ac18c1b06b662e4f9a0e9f4b2"
dependencies = [
2023-09-26 23:04:04 +00:00
"base64 0.21.4",
2023-07-21 21:58:31 +00:00
]
[[package]]
name = "rustls-webpki"
2023-09-26 23:04:04 +00:00
version = "0.101.6"
2023-07-21 21:58:31 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-26 23:04:04 +00:00
checksum = "3c7d5dece342910d9ba34d259310cae3e0154b873b35408b787b59bce53d34fe"
2023-07-21 21:58:31 +00:00
dependencies = [
"ring",
"untrusted",
]
2022-12-08 00:30:44 +00:00
[[package]]
name = "rustversion"
2023-07-17 03:11:39 +00:00
version = "1.0.14"
2022-12-08 00:30:44 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-17 03:11:39 +00:00
checksum = "7ffc183a10b4478d04cbbbfc96d0873219d962dd5accaff2ffbd4ceb7df837f4"
2022-12-08 00:30:44 +00:00
2021-09-12 16:00:29 +00:00
[[package]]
name = "rusty-s3"
2023-01-29 17:47:28 +00:00
version = "0.4.1"
2021-09-12 16:00:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-29 17:47:28 +00:00
checksum = "9c92776b0db0fea6d7cc3abb9d0d745814c71124471a3bfd84b1265a28c06130"
2021-09-12 16:00:29 +00:00
dependencies = [
2023-09-26 23:04:04 +00:00
"base64 0.21.4",
"hmac",
"md-5",
"percent-encoding",
2023-05-08 15:57:41 +00:00
"quick-xml 0.27.1",
"serde",
"serde_json",
"sha2",
"time",
"url",
"zeroize",
2021-09-12 16:00:29 +00:00
]
[[package]]
name = "ryu"
2023-07-17 03:11:39 +00:00
version = "1.0.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-17 03:11:39 +00:00
checksum = "1ad4cc8da4ef723ed60bced201181d83791ad433213d8c24efffda1eec85d741"
2023-09-02 15:05:06 +00:00
[[package]]
name = "same-file"
version = "1.0.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
dependencies = [
"winapi-util",
]
[[package]]
name = "scoped-futures"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b1473e24c637950c9bd38763220bea91ec3e095a89f672bbd7a10d03e77ba467"
dependencies = [
"cfg-if",
"pin-utils",
]
2021-10-13 04:16:31 +00:00
[[package]]
name = "scoped-tls"
2022-11-26 17:17:47 +00:00
version = "1.0.1"
2021-10-13 04:16:31 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-26 17:17:47 +00:00
checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294"
2021-10-13 04:16:31 +00:00
[[package]]
name = "scopeguard"
2023-07-21 21:59:05 +00:00
version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-21 21:59:05 +00:00
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
2021-09-12 16:00:29 +00:00
[[package]]
name = "sct"
2021-10-20 23:16:53 +00:00
version = "0.7.0"
2021-09-12 16:00:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-20 23:16:53 +00:00
checksum = "d53dcdb7c9f8158937a7981b48accfd39a43af418591a5d008c7b22b5e1b7ca4"
2021-09-12 16:00:29 +00:00
dependencies = [
"ring",
"untrusted",
]
[[package]]
name = "semver"
2023-09-26 23:04:04 +00:00
version = "1.0.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-26 23:04:04 +00:00
checksum = "ad977052201c6de01a8ef2aa3378c4bd23217a056337d1d6da40468d267a4fb0"
[[package]]
name = "serde"
2023-08-28 23:44:55 +00:00
version = "1.0.188"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-28 23:44:55 +00:00
checksum = "cf9e0fcba69a370eed61bcf2b728575f726b50b55cba78064753d708ddc7549e"
dependencies = [
"serde_derive",
]
[[package]]
name = "serde-tuple-vec-map"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a04d0ebe0de77d7d445bb729a895dcb0a288854b267ca85f030ce51cdc578c82"
dependencies = [
"serde",
]
[[package]]
name = "serde_derive"
2023-08-28 23:44:55 +00:00
version = "1.0.188"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-28 23:44:55 +00:00
checksum = "4eca7ac642d82aa35b60049a6eccb4be6be75e599bd2e9adb5f875a737654af2"
dependencies = [
"proc-macro2",
"quote",
2023-09-26 23:04:04 +00:00
"syn 2.0.37",
]
[[package]]
name = "serde_json"
2023-09-26 23:04:04 +00:00
version = "1.0.107"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-26 23:04:04 +00:00
checksum = "6b420ce6e3d8bd882e9b243c6eed35dbc9a6110c9769e74b584e0d68d1f20c65"
dependencies = [
2022-02-11 17:23:48 +00:00
"itoa",
"ryu",
2022-02-26 18:22:30 +00:00
"serde",
]
2023-06-01 22:19:14 +00:00
[[package]]
name = "serde_plain"
2023-08-28 23:44:55 +00:00
version = "1.0.2"
2023-06-01 22:19:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-28 23:44:55 +00:00
checksum = "9ce1fc6db65a611022b23a0dec6975d63fb80a302cb3388835ff02c097258d50"
2023-06-01 22:19:14 +00:00
dependencies = [
"serde",
]
2023-01-29 17:47:28 +00:00
[[package]]
name = "serde_spanned"
2023-06-29 16:44:51 +00:00
version = "0.6.3"
2023-01-29 17:47:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-29 16:44:51 +00:00
checksum = "96426c9936fd7a0124915f9185ea1d20aa9445cc9821142f0a73bc9207a2e186"
2023-01-29 17:47:28 +00:00
dependencies = [
"serde",
]
[[package]]
name = "serde_urlencoded"
2022-01-18 17:46:01 +00:00
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-18 17:46:01 +00:00
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
dependencies = [
2020-12-03 17:38:28 +00:00
"form_urlencoded",
2022-02-11 17:23:48 +00:00
"itoa",
2020-12-03 17:38:28 +00:00
"ryu",
2022-02-26 18:22:30 +00:00
"serde",
]
[[package]]
2022-06-21 16:27:57 +00:00
name = "sha1"
2023-09-26 23:04:04 +00:00
version = "0.10.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-26 23:04:04 +00:00
checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
dependencies = [
2021-02-10 22:57:42 +00:00
"cfg-if",
2021-06-19 19:39:41 +00:00
"cpufeatures",
2022-08-19 19:13:06 +00:00
"digest",
]
2021-12-17 02:46:46 +00:00
[[package]]
name = "sha2"
2023-09-26 23:04:04 +00:00
version = "0.10.8"
2021-12-17 02:46:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-26 23:04:04 +00:00
checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8"
2021-12-17 02:46:46 +00:00
dependencies = [
"cfg-if",
"cpufeatures",
2022-08-19 19:13:06 +00:00
"digest",
2021-12-17 02:46:46 +00:00
]
[[package]]
name = "sharded-slab"
2021-10-14 00:06:53 +00:00
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-14 00:06:53 +00:00
checksum = "900fba806f70c630b0a382d0d825e17a0f19fcd059a2ade1ff237bcddf446b31"
dependencies = [
"lazy_static",
]
[[package]]
name = "signal-hook-registry"
2023-02-13 05:15:14 +00:00
version = "1.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-13 05:15:14 +00:00
checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1"
dependencies = [
"libc",
]
2023-09-02 15:05:06 +00:00
[[package]]
name = "siphasher"
version = "0.3.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d"
2023-09-26 23:04:04 +00:00
[[package]]
name = "siphasher"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "54ac45299ccbd390721be55b412d41931911f654fa99e2cb8bfb57184b2061fe"
2023-07-22 21:47:59 +00:00
[[package]]
name = "sketches-ddsketch"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "68a406c1882ed7f29cd5e248c9848a80e7cb6ae0fea82346d2746f2f941c07e1"
[[package]]
name = "slab"
2023-08-24 00:17:14 +00:00
version = "0.4.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-24 00:17:14 +00:00
checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
2022-08-19 19:13:06 +00:00
dependencies = [
"autocfg",
]
2020-09-10 16:12:42 +00:00
[[package]]
name = "sled"
2021-09-12 16:00:29 +00:00
version = "0.34.7"
2020-09-10 16:12:42 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-12 16:00:29 +00:00
checksum = "7f96b4737c2ce5987354855aed3797279def4ebf734436c6aa4552cf8e169935"
2020-09-10 16:12:42 +00:00
dependencies = [
"crc32fast",
"crossbeam-epoch",
"crossbeam-utils",
2020-09-10 16:12:42 +00:00
"fs2",
"fxhash",
"libc",
"log",
2022-02-11 17:23:48 +00:00
"parking_lot 0.11.2",
2021-10-14 00:06:53 +00:00
"rio",
2020-09-10 16:12:42 +00:00
]
[[package]]
name = "smallvec"
2023-09-26 23:04:04 +00:00
version = "1.11.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-26 23:04:04 +00:00
checksum = "942b4a808e05215192e39f4ab80813e599068285906cc91aa64f923db842bd5a"
[[package]]
name = "socket2"
2023-03-10 02:02:10 +00:00
version = "0.4.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-10 02:02:10 +00:00
checksum = "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662"
dependencies = [
"libc",
2021-02-10 22:57:42 +00:00
"winapi",
]
[[package]]
name = "socket2"
2023-09-26 23:04:04 +00:00
version = "0.5.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-26 23:04:04 +00:00
checksum = "4031e820eb552adee9295814c0ced9e5cf38ddf1e8b7d566d6de8e2538ea989e"
dependencies = [
"libc",
"windows-sys",
]
2021-09-12 16:00:29 +00:00
[[package]]
name = "spin"
version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"
2023-07-22 15:44:43 +00:00
[[package]]
name = "spin"
version = "0.9.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
dependencies = [
"lock_api",
]
2021-10-19 01:29:06 +00:00
[[package]]
name = "storage-path-generator"
2022-04-15 18:03:54 +00:00
version = "0.1.1"
2021-10-19 04:52:22 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-15 18:03:54 +00:00
checksum = "7f11d35dae9818c4313649da4a97c8329e29357a7fe584526c1d78f5b63ef836"
2021-10-19 01:29:06 +00:00
[[package]]
name = "streem"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6c8b0c8184b0fe05b37dd75d66205195cd57563c6c87cb92134a025a34a6ab34"
dependencies = [
"futures-core",
"pin-project-lite",
]
2023-09-02 15:05:06 +00:00
[[package]]
name = "stringprep"
2023-09-08 00:23:50 +00:00
version = "0.1.4"
2023-09-02 15:05:06 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-08 00:23:50 +00:00
checksum = "bb41d74e231a107a1b4ee36bd1214b11285b77768d2e3824aedafa988fd36ee6"
2023-09-02 15:05:06 +00:00
dependencies = [
2023-09-08 00:23:50 +00:00
"finl_unicode",
2023-09-02 15:05:06 +00:00
"unicode-bidi",
"unicode-normalization",
]
2020-06-07 00:54:06 +00:00
[[package]]
name = "strsim"
2022-03-25 03:06:29 +00:00
version = "0.10.0"
2020-06-07 00:54:06 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-25 03:06:29 +00:00
checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
2020-06-07 00:54:06 +00:00
[[package]]
name = "subtle"
version = "2.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "81cdd64d312baedb58e21336b31bc043b77e01cc99033ce76ef539f78e965ebc"
[[package]]
name = "syn"
2023-02-25 17:48:23 +00:00
version = "1.0.109"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-25 17:48:23 +00:00
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
dependencies = [
"proc-macro2",
"quote",
2022-05-26 14:46:43 +00:00
"unicode-ident",
]
2023-05-08 15:54:54 +00:00
[[package]]
name = "syn"
2023-09-26 23:04:04 +00:00
version = "2.0.37"
2023-05-08 15:54:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-26 23:04:04 +00:00
checksum = "7303ef2c05cd654186cb250d29049a24840ca25d2747c25c0381c8d9e2f582e8"
2023-05-08 15:54:54 +00:00
dependencies = [
"proc-macro2",
"quote",
"unicode-ident",
]
2022-04-11 20:17:54 +00:00
[[package]]
name = "sync_wrapper"
2023-02-04 23:54:02 +00:00
version = "0.1.2"
2022-04-11 20:17:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-04 23:54:02 +00:00
checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160"
2022-04-11 20:17:54 +00:00
2023-07-21 21:58:31 +00:00
[[package]]
name = "task-local-extensions"
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ba323866e5d033818e3240feeb9f7db2c4296674e4d9e16b97b7bf8f490434e8"
dependencies = [
"pin-utils",
]
[[package]]
name = "thiserror"
version = "1.0.48"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9d6d7a740b8a666a7e828dd00da9c0dc290dff53154ea77ac109281de90589b7"
dependencies = [
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
version = "1.0.48"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "49922ecae66cc8a249b77e68d1d0623c1b2c514f0060c27cdc68bd62a1219d35"
dependencies = [
"proc-macro2",
"quote",
2023-09-26 23:04:04 +00:00
"syn 2.0.37",
]
[[package]]
name = "thread_local"
2023-02-13 05:15:14 +00:00
version = "1.1.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-13 05:15:14 +00:00
checksum = "3fdd6f064ccff2d6567adcb3873ca630700f00b5ad3f060c25b5dcfd9a4ce152"
dependencies = [
2023-02-13 05:15:14 +00:00
"cfg-if",
2021-02-10 22:57:42 +00:00
"once_cell",
]
2021-08-28 22:50:56 +00:00
[[package]]
name = "time"
2023-09-26 23:04:04 +00:00
version = "0.3.29"
2021-08-28 22:50:56 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-26 23:04:04 +00:00
checksum = "426f806f4089c493dcac0d24c29c01e2c38baf8e30f1b716ee37e83d200b18fe"
2021-08-28 22:50:56 +00:00
dependencies = [
2023-08-05 17:42:55 +00:00
"deranged",
2022-02-11 17:23:48 +00:00
"itoa",
2022-02-26 18:22:30 +00:00
"serde",
2022-11-26 17:17:47 +00:00
"time-core",
2022-02-26 18:22:30 +00:00
"time-macros",
2021-08-28 22:50:56 +00:00
]
2022-11-26 17:17:47 +00:00
[[package]]
name = "time-core"
2023-09-26 23:04:04 +00:00
version = "0.1.2"
2022-11-26 17:17:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-26 23:04:04 +00:00
checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3"
2022-11-26 17:17:47 +00:00
2022-02-26 18:22:30 +00:00
[[package]]
name = "time-macros"
2023-09-26 23:04:04 +00:00
version = "0.2.15"
2022-02-26 18:22:30 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-26 23:04:04 +00:00
checksum = "4ad70d68dba9e1f8aceda7aa6711965dfec1cac869f311a51bd08b3a2ccbce20"
2022-11-26 17:17:47 +00:00
dependencies = [
"time-core",
]
2022-02-26 18:22:30 +00:00
[[package]]
name = "tinyvec"
2022-04-28 01:13:49 +00:00
version = "1.6.0"
2020-10-10 23:22:00 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-28 01:13:49 +00:00
checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
2020-10-10 23:22:00 +00:00
dependencies = [
"tinyvec_macros",
]
[[package]]
name = "tinyvec_macros"
2023-02-04 23:54:02 +00:00
version = "0.1.1"
2020-10-10 23:22:00 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-04 23:54:02 +00:00
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
2020-10-10 23:22:00 +00:00
[[package]]
name = "tokio"
2023-08-24 00:17:14 +00:00
version = "1.32.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-24 00:17:14 +00:00
checksum = "17ed6077ed6cd6c74735e21f37eb16dc3935f96878b1fe961074089cc80893f9"
dependencies = [
2023-06-29 16:44:51 +00:00
"backtrace",
"bytes",
"libc",
2022-02-26 18:22:30 +00:00
"mio",
2021-09-18 21:29:30 +00:00
"num_cpus",
2022-06-06 21:04:00 +00:00
"parking_lot 0.12.1",
2021-02-10 22:57:42 +00:00
"pin-project-lite",
"signal-hook-registry",
2023-09-26 23:04:04 +00:00
"socket2 0.5.4",
2021-09-18 21:29:30 +00:00
"tokio-macros",
2021-12-17 02:46:46 +00:00
"tracing",
2023-06-19 20:46:23 +00:00
"windows-sys",
]
2021-09-18 21:29:30 +00:00
[[package]]
name = "tokio-io-timeout"
2022-01-06 18:35:13 +00:00
version = "1.2.0"
2021-09-18 21:29:30 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-06 18:35:13 +00:00
checksum = "30b74022ada614a1b4834de765f9bb43877f910cc8ce4be40e89042c9223a8bf"
2021-09-18 21:29:30 +00:00
dependencies = [
"pin-project-lite",
"tokio",
]
[[package]]
name = "tokio-macros"
2023-05-08 15:54:54 +00:00
version = "2.1.0"
2021-09-18 21:29:30 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-08 15:54:54 +00:00
checksum = "630bdcf245f78637c13ec01ffae6187cca34625e8c63150d424b59e55af2675e"
2021-09-18 21:29:30 +00:00
dependencies = [
"proc-macro2",
"quote",
2023-09-26 23:04:04 +00:00
"syn 2.0.37",
2021-09-18 21:29:30 +00:00
]
2023-09-02 15:05:06 +00:00
[[package]]
name = "tokio-postgres"
version = "0.7.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d340244b32d920260ae7448cb72b6e238bddc3d4f7603394e7dd46ed8e48f5b8"
dependencies = [
"async-trait",
"byteorder",
"bytes",
"fallible-iterator",
"futures-channel",
"futures-util",
"log",
"parking_lot 0.12.1",
"percent-encoding",
"phf",
"pin-project-lite",
"postgres-protocol",
"postgres-types",
"rand",
2023-09-26 23:04:04 +00:00
"socket2 0.5.4",
2023-09-02 15:05:06 +00:00
"tokio",
"tokio-util",
"whoami",
]
2021-09-12 16:00:29 +00:00
[[package]]
name = "tokio-rustls"
2023-07-21 21:58:31 +00:00
version = "0.24.1"
2021-09-12 16:00:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-21 21:58:31 +00:00
checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081"
2021-09-12 16:00:29 +00:00
dependencies = [
2021-12-03 20:21:31 +00:00
"rustls",
2021-09-12 16:00:29 +00:00
"tokio",
]
2021-09-18 21:29:30 +00:00
[[package]]
name = "tokio-stream"
2023-05-08 15:54:54 +00:00
version = "0.1.14"
2021-09-18 21:29:30 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-08 15:54:54 +00:00
checksum = "397c988d37662c7dda6d2208364a706264bf3d6138b11d436cbac0ad38832842"
2021-09-18 21:29:30 +00:00
dependencies = [
"futures-core",
"pin-project-lite",
"tokio",
]
2021-10-13 04:16:31 +00:00
[[package]]
name = "tokio-uring"
2023-01-29 17:47:28 +00:00
version = "0.4.0"
2021-10-13 04:16:31 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-29 17:47:28 +00:00
checksum = "0d5e02bb137e030b3a547c65a3bd2f1836d66a97369fdcc69034002b10e155ef"
2021-10-13 04:16:31 +00:00
dependencies = [
"bytes",
2021-10-13 04:16:31 +00:00
"io-uring",
"libc",
"scoped-tls",
"slab",
"socket2 0.4.9",
2021-10-13 04:16:31 +00:00
"tokio",
]
2022-02-26 18:22:30 +00:00
[[package]]
name = "tokio-util"
2023-09-26 23:04:04 +00:00
version = "0.7.9"
2022-02-26 18:22:30 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-26 23:04:04 +00:00
checksum = "1d68074620f57a0b21594d9735eb2e98ab38b17f80d3fcb189fca266771ca60d"
2022-02-26 18:22:30 +00:00
dependencies = [
"bytes",
"futures-core",
"futures-sink",
"pin-project-lite",
"tokio",
2022-04-03 20:21:14 +00:00
"tracing",
2022-02-26 18:22:30 +00:00
]
[[package]]
name = "toml"
2023-01-29 17:47:28 +00:00
version = "0.5.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-29 17:47:28 +00:00
checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234"
dependencies = [
2022-02-26 18:22:30 +00:00
"serde",
]
2023-01-29 17:47:28 +00:00
[[package]]
name = "toml"
2023-09-26 23:04:04 +00:00
version = "0.7.8"
2023-01-29 17:47:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-26 23:04:04 +00:00
checksum = "dd79e69d3b627db300ff956027cc6c3798cef26d22526befdfcd12feeb6d2257"
2023-01-29 17:47:28 +00:00
dependencies = [
"serde",
"serde_spanned",
"toml_datetime",
2023-09-26 23:04:49 +00:00
"toml_edit 0.19.15",
]
[[package]]
name = "toml"
version = "0.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1bc1433177506450fe920e46a4f9812d0c211f5dd556da10e731a0a3dfa151f0"
dependencies = [
"serde",
"serde_spanned",
"toml_datetime",
"toml_edit 0.20.1",
2023-01-29 17:47:28 +00:00
]
[[package]]
name = "toml_datetime"
2023-06-29 16:44:51 +00:00
version = "0.6.3"
2023-01-29 17:47:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-29 16:44:51 +00:00
checksum = "7cda73e2f1397b1262d6dfdcef8aafae14d1de7748d66822d3bfeeb6d03e5e4b"
2023-01-29 17:47:28 +00:00
dependencies = [
"serde",
]
[[package]]
name = "toml_edit"
2023-09-26 23:04:04 +00:00
version = "0.19.15"
2023-01-29 17:47:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-26 23:04:04 +00:00
checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421"
2023-01-29 17:47:28 +00:00
dependencies = [
2023-06-29 16:44:51 +00:00
"indexmap 2.0.0",
2023-01-29 17:47:28 +00:00
"serde",
"serde_spanned",
"toml_datetime",
2023-02-25 17:48:23 +00:00
"winnow",
2023-01-29 17:47:28 +00:00
]
2023-09-26 23:04:49 +00:00
[[package]]
name = "toml_edit"
version = "0.20.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ca676d9ba1a322c1b64eb8045a5ec5c0cfb0c9d08e15e9ff622589ad5221c8fe"
dependencies = [
"indexmap 2.0.0",
"serde",
"serde_spanned",
"toml_datetime",
"winnow",
]
2021-12-17 02:46:46 +00:00
[[package]]
name = "tonic"
version = "0.9.2"
2021-12-17 02:46:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3082666a3a6433f7f511c7192923fa1fe07c69332d3c6a2e6bb040b569199d5a"
2021-12-17 02:46:46 +00:00
dependencies = [
"async-trait",
"axum",
2023-09-26 23:04:04 +00:00
"base64 0.21.4",
"bytes",
"futures-core",
"futures-util",
"h2",
"http",
"http-body",
"hyper",
"hyper-timeout",
"percent-encoding",
"pin-project",
"prost",
"tokio",
"tokio-stream",
"tower",
"tower-layer",
"tower-service",
"tracing",
2021-09-18 21:29:30 +00:00
]
[[package]]
name = "tower"
2022-06-21 16:27:57 +00:00
version = "0.4.13"
2021-09-18 21:29:30 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-21 16:27:57 +00:00
checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c"
2021-09-18 21:29:30 +00:00
dependencies = [
"futures-core",
"futures-util",
2023-06-29 16:44:51 +00:00
"indexmap 1.9.3",
2021-09-18 21:29:30 +00:00
"pin-project",
"pin-project-lite",
2021-09-18 21:29:30 +00:00
"rand",
"slab",
"tokio",
2022-09-21 03:42:14 +00:00
"tokio-util",
2021-09-18 21:29:30 +00:00
"tower-layer",
"tower-service",
"tracing",
]
[[package]]
name = "tower-layer"
2022-10-15 16:13:24 +00:00
version = "0.3.2"
2021-09-18 21:29:30 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-15 16:13:24 +00:00
checksum = "c20c8dbed6283a09604c3e69b4b7eeb54e298b8a600d4d5ecb5ad39de609f1d0"
2021-09-18 21:29:30 +00:00
[[package]]
name = "tower-service"
2022-06-21 16:27:57 +00:00
version = "0.3.2"
2021-09-18 21:29:30 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-21 16:27:57 +00:00
checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52"
2021-09-18 21:29:30 +00:00
[[package]]
name = "tracing"
2022-10-15 16:13:24 +00:00
version = "0.1.37"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-15 16:13:24 +00:00
checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8"
dependencies = [
2021-02-10 22:57:42 +00:00
"cfg-if",
2021-09-14 01:22:42 +00:00
"log",
2021-02-10 22:57:42 +00:00
"pin-project-lite",
"tracing-attributes",
"tracing-core",
]
2021-09-14 01:22:42 +00:00
[[package]]
name = "tracing-actix-web"
2023-08-05 17:42:55 +00:00
version = "0.7.6"
source = "git+https://github.com/asonix/tracing-actix-web?branch=asonix/tracing-opentelemetry-021#0b337cc17fb88efc76d913751eee3ac66e4cd27f"
2021-09-14 01:22:42 +00:00
dependencies = [
"actix-web",
2021-09-19 19:36:53 +00:00
"opentelemetry",
2021-10-11 17:13:46 +00:00
"pin-project",
2021-09-14 01:22:42 +00:00
"tracing",
2021-09-19 19:36:53 +00:00
"tracing-opentelemetry",
2022-07-02 15:52:24 +00:00
"uuid",
2021-09-14 01:22:42 +00:00
]
[[package]]
name = "tracing-attributes"
2023-06-23 16:20:31 +00:00
version = "0.1.26"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-23 16:20:31 +00:00
checksum = "5f4f31f56159e98206da9efd823404b79b6ef3143b4a7ab76e67b1751b25a4ab"
dependencies = [
"proc-macro2",
"quote",
2023-09-26 23:04:04 +00:00
"syn 2.0.37",
]
[[package]]
name = "tracing-core"
version = "0.1.31"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0955b8137a1df6f1a2e9a37d8a6656291ff0297c1a97c24e0d8425fe2312f79a"
dependencies = [
2022-06-21 16:27:57 +00:00
"once_cell",
2022-02-04 17:33:12 +00:00
"valuable",
]
2021-09-14 01:22:42 +00:00
[[package]]
name = "tracing-error"
2021-10-25 01:37:59 +00:00
version = "0.2.0"
2021-09-14 01:22:42 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-25 01:37:59 +00:00
checksum = "d686ec1c0f384b1277f097b2f279a2ecc11afe8c133c1aabf036a27cb4cd206e"
2021-09-14 01:22:42 +00:00
dependencies = [
"tracing",
"tracing-subscriber",
]
[[package]]
name = "tracing-log"
2022-04-24 22:10:15 +00:00
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-24 22:10:15 +00:00
checksum = "78ddad33d2d10b1ed7eb9d1f518a5674713876e97e5bb9b7345a7984fbb4f922"
dependencies = [
"lazy_static",
"log",
"tracing-core",
]
2021-09-18 21:29:30 +00:00
[[package]]
name = "tracing-opentelemetry"
version = "0.21.0"
2021-09-18 21:29:30 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "75327c6b667828ddc28f5e3f169036cb793c3f588d83bf0f262a7f062ffed3c8"
2021-09-18 21:29:30 +00:00
dependencies = [
2022-06-21 16:27:57 +00:00
"once_cell",
2021-09-18 21:29:30 +00:00
"opentelemetry",
"opentelemetry_sdk",
"smallvec",
2021-09-18 21:29:30 +00:00
"tracing",
"tracing-core",
"tracing-log",
"tracing-subscriber",
]
2022-03-28 04:27:07 +00:00
[[package]]
name = "tracing-serde"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bc6b213177105856957181934e4920de57730fc69bf42c37ee5bb664d406d9e1"
dependencies = [
"serde",
"tracing-core",
]
[[package]]
name = "tracing-subscriber"
2023-05-08 15:54:54 +00:00
version = "0.3.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-08 15:54:54 +00:00
checksum = "30a651bc37f915e81f087d86e62a18eec5f79550c7faff886f7090b4ea757c77"
dependencies = [
"matchers",
2022-10-15 16:13:24 +00:00
"nu-ansi-term",
2022-07-02 15:52:24 +00:00
"once_cell",
"regex",
2022-03-28 04:27:07 +00:00
"serde",
"serde_json",
"sharded-slab",
"smallvec",
2020-09-10 16:12:42 +00:00
"thread_local",
2020-10-10 23:22:00 +00:00
"tracing",
"tracing-core",
"tracing-log",
2022-03-28 04:27:07 +00:00
"tracing-serde",
]
2021-09-18 21:29:30 +00:00
[[package]]
name = "try-lock"
2023-01-29 17:47:28 +00:00
version = "0.2.4"
2021-09-18 21:29:30 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-29 17:47:28 +00:00
checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed"
2021-09-18 21:29:30 +00:00
[[package]]
name = "typenum"
2023-09-26 23:04:04 +00:00
version = "1.17.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-26 23:04:04 +00:00
checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
2022-02-26 18:22:30 +00:00
[[package]]
name = "ucd-trie"
2023-07-07 18:50:25 +00:00
version = "0.1.6"
2022-02-26 18:22:30 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-07 18:50:25 +00:00
checksum = "ed646292ffc8188ef8ea4d1e0e0150fb15a5c2e12ad9b8fc191ae7a8a7f3c4b9"
2022-02-26 18:22:30 +00:00
2023-07-21 21:58:31 +00:00
[[package]]
name = "unicase"
2023-08-24 00:17:14 +00:00
version = "2.7.0"
2023-07-21 21:58:31 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-24 00:17:14 +00:00
checksum = "f7d2d4dafb69621809a81864c9c1b864479e1235c0dd4e199924b9742439ed89"
2023-07-21 21:58:31 +00:00
dependencies = [
"version_check",
]
[[package]]
name = "unicode-bidi"
2023-05-08 15:54:54 +00:00
version = "0.3.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-08 15:54:54 +00:00
checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460"
2022-05-26 14:46:43 +00:00
[[package]]
name = "unicode-ident"
2023-09-26 23:04:04 +00:00
version = "1.0.12"
2022-05-26 14:46:43 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-26 23:04:04 +00:00
checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
2022-05-26 14:46:43 +00:00
[[package]]
name = "unicode-normalization"
2022-09-21 03:42:14 +00:00
version = "0.1.22"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-21 03:42:14 +00:00
checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921"
dependencies = [
2020-12-03 17:38:28 +00:00
"tinyvec",
]
2021-09-12 16:00:29 +00:00
[[package]]
name = "untrusted"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
[[package]]
name = "url"
2023-08-28 23:44:55 +00:00
version = "2.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-28 23:44:55 +00:00
checksum = "143b538f18257fac9cad154828a57c6bf5157e1aa604d4816b5995bf6de87ae5"
dependencies = [
2020-12-03 17:38:28 +00:00
"form_urlencoded",
"idna",
"percent-encoding",
2022-02-26 18:22:30 +00:00
"serde",
]
[[package]]
name = "urlencoding"
2023-07-21 21:59:05 +00:00
version = "2.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-21 21:59:05 +00:00
checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da"
2023-05-08 15:54:54 +00:00
[[package]]
name = "utf8parse"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a"
2022-04-24 22:11:32 +00:00
[[package]]
name = "uuid"
2023-07-21 21:59:05 +00:00
version = "1.4.1"
2022-04-24 22:11:32 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-21 21:59:05 +00:00
checksum = "79daa5ed5740825c40b389c5e50312b9c86df53fccd33f281df655642b43869d"
2020-06-14 18:56:42 +00:00
dependencies = [
"atomic",
2021-02-10 22:57:42 +00:00
"getrandom",
2022-02-26 18:22:30 +00:00
"serde",
2020-06-14 18:56:42 +00:00
]
2022-02-04 17:33:12 +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 16:54:07 +00:00
version = "0.9.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-30 16:54:07 +00:00
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
2023-09-02 15:05:06 +00:00
[[package]]
name = "walkdir"
2023-09-08 00:23:50 +00:00
version = "2.4.0"
2023-09-02 15:05:06 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-08 00:23:50 +00:00
checksum = "d71d857dc86794ca4c280d616f7da00d2dbfd8cd788846559a6813e6aa4b54ee"
2023-09-02 15:05:06 +00:00
dependencies = [
"same-file",
"winapi-util",
]
2021-09-18 21:29:30 +00:00
[[package]]
name = "want"
2023-06-19 20:46:23 +00:00
version = "0.3.1"
2021-09-18 21:29:30 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-19 20:46:23 +00:00
checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
2021-09-18 21:29:30 +00:00
dependencies = [
"try-lock",
]
[[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"
2023-06-19 20:46:23 +00:00
version = "0.2.87"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-19 20:46:23 +00:00
checksum = "7706a72ab36d8cb1f80ffbf0e071533974a60d0a308d01a5d0375bf60499a342"
dependencies = [
2021-02-10 22:57:42 +00:00
"cfg-if",
"wasm-bindgen-macro",
]
[[package]]
name = "wasm-bindgen-backend"
2023-06-19 20:46:23 +00:00
version = "0.2.87"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-19 20:46:23 +00:00
checksum = "5ef2b6d3c510e9625e5fe6f509ab07d66a760f0885d858736483c32ed7809abd"
dependencies = [
"bumpalo",
"log",
2022-08-19 19:13:06 +00:00
"once_cell",
"proc-macro2",
"quote",
2023-09-26 23:04:04 +00:00
"syn 2.0.37",
"wasm-bindgen-shared",
]
2023-07-21 21:58:31 +00:00
[[package]]
name = "wasm-bindgen-futures"
version = "0.4.37"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c02dbc21516f9f1f04f187958890d7e6026df8d16540b7ad9492bc34a67cea03"
dependencies = [
"cfg-if",
"js-sys",
"wasm-bindgen",
"web-sys",
]
[[package]]
name = "wasm-bindgen-macro"
2023-06-19 20:46:23 +00:00
version = "0.2.87"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-19 20:46:23 +00:00
checksum = "dee495e55982a3bd48105a7b947fd2a9b4a8ae3010041b9e0faab3f9cd028f1d"
dependencies = [
"quote",
"wasm-bindgen-macro-support",
]
[[package]]
name = "wasm-bindgen-macro-support"
2023-06-19 20:46:23 +00:00
version = "0.2.87"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-19 20:46:23 +00:00
checksum = "54681b18a46765f095758388f2d0cf16eb8d4169b639ab575a8f5693af210c7b"
dependencies = [
"proc-macro2",
"quote",
2023-09-26 23:04:04 +00:00
"syn 2.0.37",
"wasm-bindgen-backend",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-shared"
2023-06-19 20:46:23 +00:00
version = "0.2.87"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-19 20:46:23 +00:00
checksum = "ca6ad05a4870b2bf5fe995117d3728437bd27d7cd5f06f13c17443ef369775a1"
2023-07-21 21:58:31 +00:00
[[package]]
name = "wasm-streams"
2023-08-24 00:17:14 +00:00
version = "0.3.0"
2023-07-21 21:58:31 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-24 00:17:14 +00:00
checksum = "b4609d447824375f43e1ffbc051b50ad8f4b3ae8219680c94452ea05eb240ac7"
2023-07-21 21:58:31 +00:00
dependencies = [
"futures-util",
"js-sys",
"wasm-bindgen",
"wasm-bindgen-futures",
"web-sys",
]
2021-09-12 16:00:29 +00:00
[[package]]
name = "web-sys"
2023-06-19 20:46:23 +00:00
version = "0.3.64"
2021-09-12 16:00:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-19 20:46:23 +00:00
checksum = "9b85cbef8c220a6abc02aefd892dfc0fc23afb1c6a426316ec33253a3877249b"
2021-09-12 16:00:29 +00:00
dependencies = [
"js-sys",
"wasm-bindgen",
]
[[package]]
name = "webpki-roots"
2023-08-24 00:17:14 +00:00
version = "0.25.2"
2021-09-12 16:00:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-24 00:17:14 +00:00
checksum = "14247bb57be4f377dfb94c72830b8ce8fc6beac03cf4bf7b9732eadd414123fc"
2021-09-12 16:00:29 +00:00
2023-09-02 15:05:06 +00:00
[[package]]
name = "whoami"
version = "1.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "22fc3756b8a9133049b26c7f61ab35416c130e8c09b660f5b3958b446f52cc50"
dependencies = [
"wasm-bindgen",
"web-sys",
]
[[package]]
name = "winapi"
2020-09-10 16:12:42 +00:00
version = "0.3.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-10 16:12:42 +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"
2023-09-02 15:05:06 +00:00
[[package]]
name = "winapi-util"
2023-09-26 23:04:04 +00:00
version = "0.1.6"
2023-09-02 15:05:06 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-26 23:04:04 +00:00
checksum = "f29e6f9198ba0d26b4c9f07dbe6f9ed633e1f3d5b8b414090084349e46a52596"
2023-09-02 15:05:06 +00:00
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"
2023-02-04 23:54:02 +00:00
[[package]]
name = "windows-sys"
2023-05-08 15:54:54 +00:00
version = "0.48.0"
2023-02-04 23:54:02 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-08 15:54:54 +00:00
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
2023-02-04 23:54:02 +00:00
dependencies = [
2023-06-19 20:46:23 +00:00
"windows-targets",
2023-02-04 23:54:02 +00:00
]
2023-05-08 15:54:54 +00:00
[[package]]
name = "windows-targets"
2023-08-24 00:17:14 +00:00
version = "0.48.5"
2023-05-08 15:54:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-24 00:17:14 +00:00
checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
2023-05-08 15:54:54 +00:00
dependencies = [
2023-06-19 20:46:23 +00:00
"windows_aarch64_gnullvm",
"windows_aarch64_msvc",
"windows_i686_gnu",
"windows_i686_msvc",
"windows_x86_64_gnu",
"windows_x86_64_gnullvm",
"windows_x86_64_msvc",
2023-05-08 15:54:54 +00:00
]
2022-11-26 17:17:47 +00:00
[[package]]
name = "windows_aarch64_gnullvm"
2023-08-24 00:17:14 +00:00
version = "0.48.5"
2022-11-26 17:17:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-24 00:17:14 +00:00
checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
2022-11-26 17:17:47 +00:00
2023-05-08 15:54:54 +00:00
[[package]]
name = "windows_aarch64_msvc"
2023-08-24 00:17:14 +00:00
version = "0.48.5"
2023-05-08 15:54:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-24 00:17:14 +00:00
checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
2023-05-08 15:54:54 +00:00
2022-02-11 17:23:48 +00:00
[[package]]
name = "windows_i686_gnu"
2023-08-24 00:17:14 +00:00
version = "0.48.5"
2022-02-11 17:23:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-24 00:17:14 +00:00
checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
2022-02-11 17:23:48 +00:00
2023-05-08 15:54:54 +00:00
[[package]]
name = "windows_i686_msvc"
2023-08-24 00:17:14 +00:00
version = "0.48.5"
2023-05-08 15:54:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-24 00:17:14 +00:00
checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
2022-02-11 17:23:48 +00:00
2023-05-08 15:54:54 +00:00
[[package]]
name = "windows_x86_64_gnu"
2023-08-24 00:17:14 +00:00
version = "0.48.5"
2023-05-08 15:54:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-24 00:17:14 +00:00
checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
2023-05-08 15:54:54 +00:00
2022-11-26 17:17:47 +00:00
[[package]]
name = "windows_x86_64_gnullvm"
2023-08-24 00:17:14 +00:00
version = "0.48.5"
2022-02-11 17:23:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-24 00:17:14 +00:00
checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
2022-02-11 17:23:48 +00:00
2023-05-08 15:54:54 +00:00
[[package]]
name = "windows_x86_64_msvc"
2023-08-24 00:17:14 +00:00
version = "0.48.5"
2023-05-08 15:54:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-24 00:17:14 +00:00
checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
2022-02-11 17:23:48 +00:00
2023-02-25 17:48:23 +00:00
[[package]]
name = "winnow"
2023-08-28 23:44:55 +00:00
version = "0.5.15"
2023-02-25 17:48:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-28 23:44:55 +00:00
checksum = "7c2e3184b9c4e92ad5167ca73039d0c42476302ab603e2fec4487511f38ccefc"
2023-02-25 17:48:23 +00:00
dependencies = [
"memchr",
]
2023-07-21 21:58:31 +00:00
[[package]]
name = "winreg"
2023-08-24 00:17:14 +00:00
version = "0.50.0"
2023-07-21 21:58:31 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-24 00:17:14 +00:00
checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1"
2023-07-21 21:58:31 +00:00
dependencies = [
2023-08-24 00:17:14 +00:00
"cfg-if",
"windows-sys",
2023-07-21 21:58:31 +00:00
]
[[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 = "zeroize"
2023-05-08 15:54:54 +00:00
version = "1.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-08 15:54:54 +00:00
checksum = "2a0956f1ba7c7909bfb66c2e9e4124ab6f6482560f6628b5aaeba39207c9aad9"