pict-rs/Cargo.lock

3094 lines
73 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-07-03 02:09:27 +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-03-10 02:02:10 +00:00
version = "3.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-10 02:02:10 +00:00
checksum = "c2079246596c18b4a33e274ae10c0e50613f4d32a4198e09c7b93771013fed74"
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-06-01 22:19:14 +00:00
"base64 0.21.2",
2023-07-03 02:09:27 +00:00
"bitflags 1.3.2",
"bytes",
2021-02-10 22:57:42 +00:00
"bytestring",
"derive_more",
"encoding_rs",
"futures-core",
"h2",
"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-07-21 21:59:05 +00:00
"syn 2.0.27",
]
[[package]]
name = "actix-multipart"
2023-06-01 22:19:14 +00:00
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-01 22:19:14 +00:00
checksum = "dee489e3c01eae4d1c35b03c4493f71cb40d93f66b14558feb1b1a807671cc4e"
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-01-29 17:47:28 +00:00
version = "2.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-29 17:47:28 +00:00
checksum = "15265b6b8e2347670eb363c47fc8c75208b4a4994b27192f345fcbe707804f3e"
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-01-29 17:47:28 +00:00
version = "2.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-29 17:47:28 +00:00
checksum = "3e8613a75dd50cc45f473cee3c34d59ed677c0f7b44480ce3b8247d7dc519327"
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",
"num_cpus",
2021-11-16 21:39:18 +00:00
"socket2",
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-03-10 02:02:10 +00:00
version = "4.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-10 02:02:10 +00:00
checksum = "cd3cb42f9566ab176e1ef0b8b3a896529062b4efc6be0123046095914c4c1c96"
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-03-10 02:02:10 +00:00
"ahash 0.7.6",
"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-09-21 03:42:14 +00:00
"http",
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",
"socket2",
2022-02-26 18:22:30 +00:00
"time",
"url",
]
2022-03-29 01:47:46 +00:00
[[package]]
name = "addr2line"
2023-07-03 02:09:27 +00:00
version = "0.20.0"
2022-03-29 01:47:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-03 02:09:27 +00:00
checksum = "f4fa78e18c64fce05e902adecd7a5eed15a5e0a3439f7b0e169f0252214865e3"
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-06-19 20:46:23 +00:00
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-19 20:46:23 +00:00
checksum = "43f6cb1bf222025340178f382c426f13757b2960e89779dfcb319c32542a5a41"
dependencies = [
"memchr",
]
2023-05-08 15:54:54 +00:00
[[package]]
name = "anstream"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0ca84f3628370c59db74ee214b3263d58f9aadd9b4fe7e711fd87dc452b7f163"
dependencies = [
"anstyle",
"anstyle-parse",
"anstyle-query",
"anstyle-wincon",
"colorchoice",
"is-terminal",
"utf8parse",
]
[[package]]
name = "anstyle"
2023-06-21 22:07:40 +00:00
version = "1.0.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 = "3a30da5c5f2d5e72842e00bcb57657162cdabef0931f40e2deb9b4140440cecd"
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"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "180abfa45703aebe0093f79badacc01b8fd4ea2e35118747e5811127f926e188"
dependencies = [
"anstyle",
2023-06-19 20:46:23 +00:00
"windows-sys",
2023-05-08 15:54:54 +00:00
]
[[package]]
name = "anyhow"
2023-07-17 03:11:39 +00:00
version = "1.0.72"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-17 03:11:39 +00:00
checksum = "3b13c32d80ecc7ab747b80c3784bce54ee8a7a0cc4fbda9bf4cda2cf6fe90854"
2021-09-18 21:29:30 +00:00
[[package]]
name = "async-stream"
2023-05-08 15:54:54 +00:00
version = "0.3.5"
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 = "cd56dd203fef61ac097dd65721a419ddccb106b2d2b70ba60a6b529f03961a51"
2021-09-18 21:29:30 +00:00
dependencies = [
"async-stream-impl",
"futures-core",
2023-02-25 17:48:23 +00:00
"pin-project-lite",
2021-09-18 21:29:30 +00:00
]
[[package]]
name = "async-stream-impl"
2023-05-08 15:54:54 +00:00
version = "0.3.5"
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 = "16e62a023e7c117e27523144c5d2459f4397fcc3cab0085af8e2224f643a0193"
2021-09-18 21:29:30 +00:00
dependencies = [
"proc-macro2",
"quote",
2023-07-21 21:59:05 +00:00
"syn 2.0.27",
2021-09-18 21:29:30 +00:00
]
[[package]]
name = "async-trait"
2023-07-21 21:59:05 +00:00
version = "0.1.72"
2021-09-18 21:29:30 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-21 21:59:05 +00:00
checksum = "cc6dde6e4ed435a4c1ee4e73592f5ba9da2151af10076cc04858746af9352d09"
2021-09-18 21:29:30 +00:00
dependencies = [
"proc-macro2",
"quote",
2023-07-21 21:59:05 +00:00
"syn 2.0.27",
2021-09-18 21:29:30 +00:00
]
[[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-07-21 21:59:05 +00:00
version = "0.6.19"
2022-04-11 20:17:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-21 21:59:05 +00:00
checksum = "a6a1de45611fdb535bfde7b7de4fd54f4fd2b17b1737c0a59b69bf9b92074b8c"
2022-04-11 20:17:54 +00:00
dependencies = [
"async-trait",
"axum-core",
2023-07-03 02:09:27 +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-07-03 02:09:27 +00:00
version = "0.3.68"
2022-03-29 01:47:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-03 02:09:27 +00:00
checksum = "4319208da049c43661739c5fade2ba182f09d1dc2299b32298d3a31692b17e12"
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",
]
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-06-01 22:19:14 +00:00
version = "0.21.2"
2023-01-29 17:47:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-01 22:19:14 +00:00
checksum = "604178f6c5c21f02dc555784810edfb88d34ac2c73b2eae109655649ee73ce3d"
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-07-03 02:09:27 +00:00
[[package]]
name = "bitflags"
version = "2.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "630be753d4e58660abd17930c71b647fe46c27ea6b63cc59e1e3851406972e42"
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"
version = "3.13.0"
2022-02-26 18:22:30 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a3e2c3daef883ecc1b5d58c15adae93470a91d425f3532ba1695849656af3fc1"
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-02-04 23:54:02 +00:00
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-04 23:54:02 +00:00
checksum = "89b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be"
[[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-01-29 17:47:28 +00:00
version = "1.0.79"
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 = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f"
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-07-21 21:59:05 +00:00
version = "4.3.19"
2020-06-07 00:54:06 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-21 21:59:05 +00:00
checksum = "5fd304a20bff958a57f04c4e96a2e7594cc4490a0e809cbd48bb6437edaa452d"
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",
2022-06-21 16:27:57 +00:00
"once_cell",
2023-05-08 15:54:54 +00:00
]
[[package]]
name = "clap_builder"
2023-07-21 21:59:05 +00:00
version = "4.3.19"
2023-05-08 15:54:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-21 21:59:05 +00:00
checksum = "01c6a3f08f1fe5662a35cfe393aec09c4df95f60ee93b7556505260f75eee9e1"
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-07-17 03:11:39 +00:00
version = "4.3.12"
2022-03-25 03:06:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-17 03:11:39 +00:00
checksum = "54a9bb5758fc5dfe728d1019941681eccaf0cf8a4189b692a0ee2f2ecf90a050"
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-07-21 21:59:05 +00:00
"syn 2.0.27",
2020-06-07 00:54:06 +00:00
]
2022-04-24 22:10:15 +00:00
[[package]]
name = "clap_lex"
version = "0.5.0"
2022-04-24 22:10:15 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2da6da31387c7e4ef160ffab6d5e7f00c42626fe39aea70a7b0f1773f7dd6c1b"
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 0.9.2",
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 0.9.2",
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-07-17 03:11:39 +00:00
version = "5.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-17 03:11:39 +00:00
checksum = "6943ae99c34386c84a470c499d3414f66502a41340aa895406e0d2e4a207b91d"
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",
]
[[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",
]
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-01-29 17:47:28 +00:00
version = "1.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-29 17:47:28 +00:00
checksum = "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91"
[[package]]
name = "encoding_rs"
2023-02-04 23:54:02 +00:00
version = "0.8.32"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-04 23:54:02 +00:00
checksum = "071a31f4ee85403370b58aca746f01041ede6f0da2730960ad001edc2b71b394"
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-11-26 17:17:47 +00:00
[[package]]
name = "errno"
2023-05-08 15:54:54 +00:00
version = "0.3.1"
2022-11-26 17:17:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-08 15:54:54 +00:00
checksum = "4bcfec3a70f97c962c307b2d2c56e358cf1d00b558d74262b5f929ee8cc7e73a"
2022-11-26 17:17:47 +00:00
dependencies = [
"errno-dragonfly",
"libc",
2023-06-19 20:46:23 +00:00
"windows-sys",
2022-11-26 17:17:47 +00:00
]
[[package]]
name = "errno-dragonfly"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf"
dependencies = [
"cc",
"libc",
]
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",
]
2021-12-17 02:46:46 +00:00
[[package]]
name = "flate2"
2023-05-08 15:54:54 +00:00
version = "1.0.26"
2021-12-17 02:46:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-08 15:54:54 +00:00
checksum = "3b9429470923de8e8cbd4d2dc513535400b4b3fef0319fb5c4e1f520a7bef743"
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
]
[[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-07-21 21:59:05 +00:00
"syn 2.0.27",
]
[[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-channel",
"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-06-19 20:46:23 +00:00
version = "0.27.3"
2022-03-29 01:47:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-19 20:46:23 +00:00
checksum = "b6c80984affa11d98d1b88b66ac8853f143217b399d3c74116778ff8fdb4ed2e"
2022-03-29 01:47:46 +00:00
[[package]]
name = "h2"
2023-06-29 16:44:51 +00:00
version = "0.3.20"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-29 16:44:51 +00:00
checksum = "97ec8491ebaf99c8eaa73058b045fe58073cd6be7f596ac993ced0b0a0c01049"
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 = "half"
version = "1.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eabb4a44450da02c90444cf74558da904edde8fb4e9035a9a6a4e15445af0bd7"
[[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-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-07-05 03:55:37 +00:00
version = "0.3.2"
2023-02-04 23:54:02 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-05 03:55:37 +00:00
checksum = "443144c8cdadd93ebf52ddb4056d257f5b52c04d3c804e657d19eb73fc33668b"
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"
2021-11-23 00:24:05 +00:00
version = "1.0.2"
2021-09-18 21:29:30 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-11-23 00:24:05 +00:00
checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421"
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",
"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-07-03 02:09:27 +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"
2022-11-26 17:17:47 +00:00
[[package]]
name = "is-terminal"
2023-07-06 21:08:21 +00:00
version = "0.4.9"
2022-11-26 17:17:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-06 21:08:21 +00:00
checksum = "cb0889898416213fab133e1d33a0e5858a48177452750691bde3666d0fdbaf8b"
2022-11-26 17:17:47 +00:00
dependencies = [
2023-06-29 16:44:51 +00:00
"hermit-abi",
2022-11-26 17:17:47 +00:00
"rustix",
2023-06-19 20:46:23 +00:00
"windows-sys",
2022-11-26 17:17:47 +00:00
]
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-06-29 16:44:51 +00:00
version = "0.2.147"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-29 16:44:51 +00:00
checksum = "b4668fb0ea861c1df094127ac5f1da3409a82116a4ba74fca2e58ef927159bb3"
[[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"
2022-11-26 17:17:47 +00:00
[[package]]
name = "linux-raw-sys"
2023-07-03 02:09:27 +00:00
version = "0.4.3"
2022-11-26 17:17:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-03 02:09:27 +00:00
checksum = "09fc20d2ca12cb9f044c93e3bd6d32d523e6e2ec3db4f7b2939cd99026ecd3f0"
2022-11-26 17:17:47 +00:00
2021-04-02 18:11:20 +00:00
[[package]]
name = "local-channel"
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 = "7f303ec0e94c6c54447f84f3b0ef7af769858a9c4ef56ef2a986d3dcd4c3fc9c"
2021-04-02 18:11:20 +00:00
dependencies = [
"futures-core",
"futures-sink",
"futures-util",
"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-06-19 20:46:23 +00:00
version = "0.4.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-19 20:46:23 +00:00
checksum = "b06a4cde4c0f271a446782e3eff8de789548ce57dbc8eca9292c27f4a42004b4"
[[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"
2022-12-08 00:30:44 +00:00
version = "0.7.0"
2022-04-11 20:17:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-08 00:30:44 +00:00
checksum = "b87248edafb776e59e6ee64a79086f65890d3510f2c656c000bf2a7e8a0aea40"
2022-04-11 20:17:54 +00:00
[[package]]
name = "md-5"
version = "0.10.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6365506850d44bff6e2fbcb5176cf63650e48bd45ef2fe2665ae1570e0f4b9ca"
dependencies = [
"digest",
]
[[package]]
name = "memchr"
2022-05-26 14:46:43 +00:00
version = "2.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-26 14:46:43 +00:00
checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
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",
]
[[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",
]
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"
2023-07-03 02:09:27 +00:00
version = "0.31.1"
2022-03-29 01:47:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-03 02:09:27 +00:00
checksum = "8bda667d9f2b5051b8833f59f3bf748b28ef54f850f4fcb389a252aa383866d1"
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.19.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5f4b8347cc26099d3aeee044065ecc3ae11469796b4d65d065a23a584ed92a6f"
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.12.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8af72d59a4484654ea8eb183fea5ae4eb6a41d7ac3e3bae5f4d2a282a3a7d3ca"
2021-09-18 21:29:30 +00:00
dependencies = [
"async-trait",
"futures",
2022-02-04 17:33:12 +00:00
"futures-util",
2021-09-18 21:29:30 +00:00
"http",
"opentelemetry",
2022-09-21 03:42:14 +00:00
"opentelemetry-proto",
"prost",
2021-09-18 21:29:30 +00:00
"thiserror",
"tokio",
"tonic 0.8.3",
2022-09-21 03:42:14 +00:00
]
[[package]]
name = "opentelemetry-proto"
version = "0.2.0"
2022-09-21 03:42:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "045f8eea8c0fa19f7d48e7bc3128a39c2e5c533d5c61298c548dfefc1064474c"
2022-09-21 03:42:14 +00:00
dependencies = [
"futures",
"futures-util",
"opentelemetry",
"prost",
"tonic 0.8.3",
2021-09-18 21:29:30 +00:00
]
2022-09-21 03:42:14 +00:00
[[package]]
name = "opentelemetry_api"
version = "0.19.0"
2022-09-21 03:42:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ed41783a5bf567688eb38372f2b7a8530f5a607a4b49d38dd7573236c23ca7e2"
2022-09-21 03:42:14 +00:00
dependencies = [
"fnv",
"futures-channel",
"futures-util",
2023-06-29 16:44:51 +00:00
"indexmap 1.9.3",
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.19.0"
2022-09-21 03:42:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8b3a2a91fdbfdd4d212c0dcc2ab540de2c2bcbbd90be17de7a7daf8822d010c1"
2022-09-21 03:42:14 +00:00
dependencies = [
"async-trait",
"crossbeam-channel",
"dashmap",
"fnv",
"futures-channel",
"futures-executor",
"futures-util",
"once_cell",
"opentelemetry_api",
"percent-encoding",
"rand",
"thiserror",
"tokio",
"tokio-stream",
]
[[package]]
name = "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-07-21 21:59:05 +00:00
version = "2.7.1"
2022-02-26 18:22:30 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-21 21:59:05 +00:00
checksum = "0d2d1d55045829d65aad9d389139882ad623b33b904e7c9f1b10c5b8927298e5"
2022-02-26 18:22:30 +00:00
dependencies = [
2022-08-19 19:13:06 +00:00
"thiserror",
2022-02-26 18:22:30 +00:00
"ucd-trie",
]
[[package]]
name = "pest_derive"
2023-07-21 21:59:05 +00:00
version = "2.7.1"
2022-02-26 18:22:30 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-21 21:59:05 +00:00
checksum = "5f94bca7e7a599d89dea5dfa309e217e7906c3c007fb9c3299c40b10d6a315d3"
2022-02-26 18:22:30 +00:00
dependencies = [
"pest",
"pest_generator",
]
[[package]]
name = "pest_generator"
2023-07-21 21:59:05 +00:00
version = "2.7.1"
2022-02-26 18:22:30 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-21 21:59:05 +00:00
checksum = "99d490fe7e8556575ff6911e45567ab95e71617f43781e5c05490dc8d75c965c"
2022-02-26 18:22:30 +00:00
dependencies = [
"pest",
"pest_meta",
"proc-macro2",
"quote",
2023-07-21 21:59:05 +00:00
"syn 2.0.27",
2022-02-26 18:22:30 +00:00
]
[[package]]
name = "pest_meta"
2023-07-21 21:59:05 +00:00
version = "2.7.1"
2022-02-26 18:22:30 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-21 21:59:05 +00:00
checksum = "2674c66ebb4b4d9036012091b537aae5878970d6999f81a265034d85b136b341"
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
]
[[package]]
name = "pict-rs"
2023-07-22 00:52:24 +00:00
version = "0.5.0-alpha.5"
dependencies = [
"actix-form-data",
"actix-rt",
2021-10-13 04:16:31 +00:00
"actix-server",
"actix-web",
"anyhow",
2021-10-23 04:48:56 +00:00
"async-trait",
2023-06-01 22:19:14 +00:00
"base64 0.21.2",
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",
"futures-util",
"hex",
2022-09-25 01:33:59 +00:00
"md-5",
"mime",
"num_cpus",
2020-06-14 15:07:31 +00:00
"once_cell",
2021-09-18 21:29:30 +00:00
"opentelemetry",
"opentelemetry-otlp",
"pin-project-lite",
2023-06-19 20:48:45 +00:00
"quick-xml 0.29.0",
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_cbor",
"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",
"thiserror",
2022-02-26 18:22:30 +00:00
"time",
"tokio",
2021-10-13 04:16:31 +00:00
"tokio-uring",
2022-09-21 03:42:14 +00:00
"tokio-util",
2023-07-06 21:08:21 +00:00
"toml 0.7.6",
"tracing",
2021-09-14 01:22:42 +00:00
"tracing-actix-web",
"tracing-error",
"tracing-futures",
2021-09-14 01:22:42 +00:00
"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"
2023-07-03 02:09:27 +00:00
version = "1.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-03 02:09:27 +00:00
checksum = "030ad2bc4db10a8944cb0d837f158bdfec4d4a4873ab701a95046770d11f8842"
dependencies = [
2021-03-10 02:51:03 +00:00
"pin-project-internal",
]
[[package]]
name = "pin-project-internal"
2023-07-03 02:09:27 +00:00
version = "1.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-03 02:09:27 +00:00
checksum = "ec2e072ecce94ec471b13398d5402c188e76ac03cf74dd1a975161b23a3f6d9c"
dependencies = [
"proc-macro2",
"quote",
2023-07-21 21:59:05 +00:00
"syn 2.0.27",
]
[[package]]
name = "pin-project-lite"
2023-07-03 02:09:27 +00:00
version = "0.2.10"
2020-12-03 17:38:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-03 02:09:27 +00:00
checksum = "4c40d25201921e5ff0c862a505c6557ea88568a4e3ace775ab55e93f2f4f9d57"
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"
[[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-07-17 03:11:39 +00:00
version = "1.0.66"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-17 03:11:39 +00:00
checksum = "18fb31db3f9bddb2ea821cde30a9f70117e3f119938b5ee630b7403aa6e2ead9"
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
]
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-06-19 20:48:45 +00:00
version = "0.29.0"
2023-05-08 15:57:41 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-19 20:48:45 +00:00
checksum = "81b9228215d82c7b61490fec1de287136b5de6f5700f6e58ea9ad61a7964ca51"
2023-05-08 15:57:41 +00:00
dependencies = [
"memchr",
"serde",
]
[[package]]
name = "quote"
2023-07-17 03:11:39 +00:00
version = "1.0.31"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-17 03:11:39 +00:00
checksum = "5fe8a65d69dd0808184ebb5f836ab526bb259db23c657efa38711b1072ee47f0"
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",
]
[[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-07-03 02:09:27 +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-07-03 02:09:27 +00:00
"bitflags 1.3.2",
2023-06-19 20:46:23 +00:00
]
[[package]]
name = "regex"
2023-07-07 18:50:25 +00:00
version = "1.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-07 18:50:25 +00:00
checksum = "b2eae68fc220f7cf2532e4494aded17545fce192d59cd996e0fe7887f4ceb575"
dependencies = [
"aho-corasick",
"memchr",
2023-07-17 03:11:39 +00:00
"regex-automata 0.3.3",
"regex-syntax 0.7.4",
]
[[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"
2023-07-17 03:11:39 +00:00
version = "0.3.3"
2023-07-06 21:08:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-17 03:11:39 +00:00
checksum = "39354c10dd07468c2e73926b23bb9c2caca74c5501e38a35da70406f1d923310"
2023-07-06 21:08:21 +00:00
dependencies = [
"aho-corasick",
"memchr",
2023-07-17 03:11:39 +00:00
"regex-syntax 0.7.4",
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-07-17 03:11:39 +00:00
version = "0.7.4"
2023-05-08 15:54:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-17 03:11:39 +00:00
checksum = "e5ea92a5b6195c6ef2a0295ea818b312502c6fc94dde986c5553242e18fd4ce2"
2023-07-21 21:58:31 +00:00
[[package]]
name = "reqwest"
version = "0.11.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cde824a14b7c14f85caff81225f411faacc04a2013f41670f41443742b1c1c55"
dependencies = [
"base64 0.21.2",
"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.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4531c89d50effe1fac90d095c8b133c20c5c714204feee0bfc3fd158e784209d"
dependencies = [
"anyhow",
"async-trait",
"http",
"reqwest",
"serde",
"task-local-extensions",
"thiserror",
]
[[package]]
name = "reqwest-tracing"
version = "0.4.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1b97ad83c2fc18113346b7158d79732242002427c30f620fa817c1f32901e0a8"
dependencies = [
"anyhow",
"async-trait",
"getrandom",
"matchit",
"opentelemetry",
"reqwest",
"reqwest-middleware",
"task-local-extensions",
"tracing",
"tracing-opentelemetry",
]
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",
"spin",
"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-07-03 02:09:27 +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",
]
2022-11-26 17:17:47 +00:00
[[package]]
name = "rustix"
2023-07-17 03:11:39 +00:00
version = "0.38.4"
2022-11-26 17:17:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-17 03:11:39 +00:00
checksum = "0a962918ea88d644592894bc6dc55acc6c0956488adcebbfb6e273506b7fd6e5"
2022-11-26 17:17:47 +00:00
dependencies = [
2023-07-03 02:09:27 +00:00
"bitflags 2.3.3",
2022-11-26 17:17:47 +00:00
"errno",
"libc",
"linux-raw-sys",
2023-06-19 20:46:23 +00:00
"windows-sys",
2022-11-26 17:17:47 +00:00
]
[[package]]
name = "rustls"
2023-07-21 21:58:31 +00:00
version = "0.21.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-21 21:58:31 +00:00
checksum = "79ea77c539259495ce8ca47f53e66ae0330a8819f67e23ac96ca02f50e7b7d36"
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 = [
"base64 0.21.2",
]
[[package]]
name = "rustls-webpki"
version = "0.101.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "15f36a6828982f422756984e47912a7a51dcbc2a197aa791158f8ca61cd8204e"
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-06-01 22:19:14 +00:00
"base64 0.21.2",
"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"
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-07-17 03:11:39 +00:00
version = "1.0.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-17 03:11:39 +00:00
checksum = "b0293b4b29daaf487284529cc2f5675b8e57c61f70167ba415a463651fd6a918"
[[package]]
name = "serde"
2023-07-21 21:59:05 +00:00
version = "1.0.174"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-21 21:59:05 +00:00
checksum = "3b88756493a5bd5e5395d53baa70b194b05764ab85b59e43e4b8f4e1192fa9b1"
dependencies = [
"serde_derive",
]
[[package]]
name = "serde_cbor"
version = "0.11.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2bef2ebfde456fb76bbcf9f59315333decc4fda0b2b44b420243c11e0f5ec1f5"
dependencies = [
"half",
"serde",
]
[[package]]
name = "serde_derive"
2023-07-21 21:59:05 +00:00
version = "1.0.174"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-21 21:59:05 +00:00
checksum = "6e5c3a298c7f978e53536f95a63bdc4c4a64550582f31a0359a9afda6aede62e"
dependencies = [
"proc-macro2",
"quote",
2023-07-21 21:59:05 +00:00
"syn 2.0.27",
]
[[package]]
name = "serde_json"
2023-07-17 03:11:39 +00:00
version = "1.0.103"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-17 03:11:39 +00:00
checksum = "d03b412469450d4404fe8499a268edd7f8b79fecb074b0d812ad64ca21f4031b"
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"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d6018081315db179d0ce57b1fe4b62a12a0028c9cf9bbef868c9cf477b3c34ae"
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"
2022-09-21 03:42:14 +00:00
version = "0.10.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-21 03:42:14 +00:00
checksum = "f04293dc80c3993519f2d7f6f511707ee7094fe0c6d3406feb330cdb3540eba3"
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-06-19 20:46:23 +00:00
version = "0.10.7"
2021-12-17 02:46:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-19 20:46:23 +00:00
checksum = "479fb9d862239e610720565ca91403019f2f00410f1864c5aa7479b950a76ed8"
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",
]
[[package]]
name = "slab"
2023-02-25 17:48:23 +00:00
version = "0.4.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-25 17:48:23 +00:00
checksum = "6528351c9bc8ab22353f9d776db39a20288e8d6c37ef8cfe3317cf875eecfc2d"
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-07-06 21:08:21 +00:00
version = "1.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-06 21:08:21 +00:00
checksum = "62bb4feee49fdd9f707ef802e22365a35de4b7b299de4763d44bfea899442ff9"
[[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",
]
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"
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
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-07-21 21:59:05 +00:00
version = "2.0.27"
2023-05-08 15:54:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-21 21:59:05 +00:00
checksum = "b60f673f44a8255b9c8c657daf66a596d435f2da81a555b06dc644d080ba45e0"
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"
2023-07-21 21:59:05 +00:00
version = "1.0.44"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-21 21:59:05 +00:00
checksum = "611040a08a0439f8248d1990b111c95baa9c704c805fa1f62104b39655fd7f90"
dependencies = [
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
2023-07-21 21:59:05 +00:00
version = "1.0.44"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-21 21:59:05 +00:00
checksum = "090198534930841fab3a5d1bb637cde49e339654e606195f8d9c76eeb081dc96"
dependencies = [
"proc-macro2",
"quote",
2023-07-21 21:59:05 +00:00
"syn 2.0.27",
]
[[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-07-09 20:12:25 +00:00
version = "0.3.23"
2021-08-28 22:50:56 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-09 20:12:25 +00:00
checksum = "59e399c068f43a5d116fedaf73b203fa4f9c519f17e2b34f63221d3792f81446"
2021-08-28 22:50:56 +00:00
dependencies = [
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-05-08 15:54:54 +00:00
version = "0.1.1"
2022-11-26 17:17:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-08 15:54:54 +00:00
checksum = "7300fbefb4dadc1af235a9cef3737cea692a9d97e1b9cbcd4ebdae6f8868e6fb"
2022-11-26 17:17:47 +00:00
2022-02-26 18:22:30 +00:00
[[package]]
name = "time-macros"
2023-07-09 20:12:25 +00:00
version = "0.2.10"
2022-02-26 18:22:30 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-09 20:12:25 +00:00
checksum = "96ba15a897f3c86766b757e5ac7221554c6750054d74d5b28844fce5fb36a6c4"
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-07-03 02:09:27 +00:00
version = "1.29.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-03 02:09:27 +00:00
checksum = "532826ff75199d5833b9d2c5fe410f29235e25704ee5f0ef599fb51c21f4a4da"
dependencies = [
2022-07-17 16:16:44 +00:00
"autocfg",
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",
2022-02-26 18:22:30 +00:00
"socket2",
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-07-21 21:59:05 +00:00
"syn 2.0.27",
2021-09-18 21:29:30 +00:00
]
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",
2022-03-09 00:48:08 +00:00
"socket2",
2021-10-13 04:16:31 +00:00
"tokio",
]
2022-02-26 18:22:30 +00:00
[[package]]
name = "tokio-util"
2023-05-08 15:54:54 +00:00
version = "0.7.8"
2022-02-26 18:22:30 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-08 15:54:54 +00:00
checksum = "806fe8c2c87eccc8b3267cbae29ed3ab2d0bd37fca70ab622e46aaa9375ddb7d"
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-07-06 21:08:21 +00:00
version = "0.7.6"
2023-01-29 17:47:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-06 21:08:21 +00:00
checksum = "c17e963a819c331dcacd7ab957d80bc2b9a9c1e71c804826d2f283dd65306542"
2023-01-29 17:47:28 +00:00
dependencies = [
"serde",
"serde_spanned",
"toml_datetime",
"toml_edit",
]
[[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-07-17 03:11:39 +00:00
version = "0.19.14"
2023-01-29 17:47:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-17 03:11:39 +00:00
checksum = "f8123f27e969974a3dfba720fdb560be359f57b44302d280ba72e76a74480e8a"
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
]
2022-04-11 20:17:54 +00:00
[[package]]
name = "tonic"
2022-12-08 00:30:44 +00:00
version = "0.8.3"
2022-04-11 20:17:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-08 00:30:44 +00:00
checksum = "8f219fad3b929bef19b1f86fbc0358d35daed8f2cac972037ac0dc10bbb8d5fb"
2022-04-11 20:17:54 +00:00
dependencies = [
"async-stream",
"async-trait",
"axum",
2023-01-29 17:47:28 +00:00
"base64 0.13.1",
2022-04-11 20:17:54 +00:00
"bytes",
"futures-core",
"futures-util",
"h2",
"http",
"http-body",
"hyper",
"hyper-timeout",
"percent-encoding",
"pin-project",
2022-09-21 03:42:14 +00:00
"prost",
"prost-derive",
2022-04-11 20:17:54 +00:00
"tokio",
"tokio-stream",
2022-09-21 03:42:14 +00:00
"tokio-util",
2022-04-11 20:17:54 +00:00
"tower",
"tower-layer",
"tower-service",
"tracing",
"tracing-futures",
]
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-06-01 22:19:14 +00:00
"base64 0.21.2",
"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"
version = "0.7.5"
2023-05-24 15:19:56 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ce52ffaf2d544e317d3bef63f49a6a22022866505fa4840a4339b1756834a2a9"
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-07-21 21:59:05 +00:00
"syn 2.0.27",
]
[[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-futures"
2021-03-10 02:51:03 +00:00
version = "0.2.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-03-10 02:51:03 +00:00
checksum = "97d095ae15e245a057c8e8451bab9b3ee1e1f68e9ba2b4fbc18d0ac5237835f2"
dependencies = [
2021-03-10 02:51:03 +00:00
"pin-project",
"tracing",
]
[[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.19.0"
2021-09-18 21:29:30 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "00a39dcf9bfc1742fa4d6215253b33a6e474be78275884c216fc2a06267b3600"
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",
"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"
2022-12-08 00:30:44 +00:00
version = "1.16.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-08 00:30:44 +00:00
checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba"
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"
version = "2.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6"
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-07-17 03:11:39 +00:00
version = "1.0.11"
2022-05-26 14:46:43 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-17 03:11:39 +00:00
checksum = "301abaae475aa91687eb82514b328ab47a211a533026cb25fc3e519b86adfc3c"
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-06-19 20:46:23 +00:00
version = "2.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-19 20:46:23 +00:00
checksum = "50bff7831e19200a85b17131d085c25d7811bc4e186efdaf54bbd132994a88cb"
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 = [
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"
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-07-21 21:59:05 +00:00
"syn 2.0.27",
"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-07-21 21:59:05 +00:00
"syn 2.0.27",
"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"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6bbae3363c08332cadccd13b67db371814cd214c2524020932f0804b8cf7c078"
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"
2021-10-20 23:16:53 +00:00
version = "0.22.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 = "f095d78192e208183081cc07bc5515ef55216397af48b873e5edcd72637fa1bd"
2021-09-12 16:00:29 +00:00
dependencies = [
"ring",
"untrusted",
]
[[package]]
name = "webpki-roots"
2022-12-23 18:58:30 +00:00
version = "0.22.6"
2021-09-12 16:00:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-23 18:58:30 +00:00
checksum = "b6c71e40d7d2c34a5106301fb632274ca37242cd0c9d3e64dbece371a40a2d87"
2021-09-12 16:00:29 +00:00
dependencies = [
2021-12-28 17:03:53 +00:00
"webpki",
2021-09-12 16:00:29 +00:00
]
[[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"
[[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-06-29 16:44:51 +00:00
version = "0.48.1"
2023-05-08 15:54:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-29 16:44:51 +00:00
checksum = "05d4b17490f70499f20b9e791dcf6a299785ce8af4d709018206dc5b4953e95f"
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-05-08 15:54:54 +00:00
version = "0.48.0"
2022-11-26 17:17:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-08 15:54:54 +00:00
checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc"
2022-11-26 17:17:47 +00:00
2023-05-08 15:54:54 +00:00
[[package]]
name = "windows_aarch64_msvc"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3"
2022-02-11 17:23:48 +00:00
[[package]]
name = "windows_i686_gnu"
2023-05-08 15:54:54 +00:00
version = "0.48.0"
2022-02-11 17:23:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-08 15:54:54 +00:00
checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241"
2022-02-11 17:23:48 +00:00
2023-05-08 15:54:54 +00:00
[[package]]
name = "windows_i686_msvc"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00"
2022-02-11 17:23:48 +00:00
2023-05-08 15:54:54 +00:00
[[package]]
name = "windows_x86_64_gnu"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1"
2022-11-26 17:17:47 +00:00
[[package]]
name = "windows_x86_64_gnullvm"
2023-05-08 15:54:54 +00:00
version = "0.48.0"
2022-02-11 17:23:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-08 15:54:54 +00:00
checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953"
2022-02-11 17:23:48 +00:00
2023-05-08 15:54:54 +00:00
[[package]]
name = "windows_x86_64_msvc"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a"
2022-02-11 17:23:48 +00:00
2023-02-25 17:48:23 +00:00
[[package]]
name = "winnow"
2023-07-17 03:11:39 +00:00
version = "0.5.0"
2023-02-25 17:48:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-17 03:11:39 +00:00
checksum = "81fac9742fd1ad1bd9643b991319f72dd031016d44b77039a26977eb667141e7"
2023-02-25 17:48:23 +00:00
dependencies = [
"memchr",
]
2023-07-21 21:58:31 +00:00
[[package]]
name = "winreg"
version = "0.10.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d"
dependencies = [
"winapi",
]
[[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"