pict-rs-proxy/Cargo.lock

2555 lines
61 KiB
Plaintext
Raw Normal View History

# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
2021-06-19 19:42:42 +00:00
version = 3
2021-02-10 20:37:44 +00:00
[[package]]
name = "actix-codec"
2023-05-25 18:41:40 +00:00
version = "0.5.1"
2021-02-10 20:37:44 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-25 18:41:40 +00:00
checksum = "617a8268e3537fe1d8c9ead925fca49ef6400927ee7bc26750e90ecee14ce4b8"
2021-02-10 20:37:44 +00:00
dependencies = [
2024-02-01 22:32:17 +00:00
"bitflags 1.3.2",
2021-03-10 02:14:42 +00:00
"bytes",
2021-02-10 20:37:44 +00:00
"futures-core",
"futures-sink",
2021-11-25 02:32:44 +00:00
"memchr",
2021-03-10 02:14:42 +00:00
"pin-project-lite",
"tokio",
2022-09-28 23:34:07 +00:00
"tokio-util",
2023-05-25 18:41:40 +00:00
"tracing",
]
[[package]]
name = "actix-http"
2024-02-01 22:32:17 +00:00
version = "3.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-02-01 22:32:17 +00:00
checksum = "129d4c88e98860e1758c5de288d1632b07970a16d59bdf7b8d66053d582bb71f"
dependencies = [
2021-03-10 02:14:42 +00:00
"actix-codec",
"actix-rt",
"actix-service",
"actix-utils",
2023-03-10 03:30:31 +00:00
"ahash 0.8.3",
2023-05-25 18:41:40 +00:00
"base64 0.21.2",
2024-02-01 22:32:17 +00:00
"bitflags 2.4.2",
2021-03-10 02:14:42 +00:00
"bytes",
2021-02-10 20:37:44 +00:00
"bytestring",
"derive_more",
"encoding_rs",
"futures-core",
2021-03-10 02:14:42 +00:00
"h2",
2024-02-01 22:32:17 +00:00
"http 0.2.9",
"httparse",
2021-10-21 16:17:47 +00:00
"httpdate",
2022-02-11 17:20:51 +00:00
"itoa",
"language-tags",
2021-04-02 19:17:42 +00:00
"local-channel",
"mime",
"percent-encoding",
2021-04-02 19:17:42 +00:00
"pin-project-lite",
"rand",
2022-07-02 15:56:37 +00:00
"sha1",
2021-02-10 20:37:44 +00:00
"smallvec",
2023-03-10 03:30:31 +00:00
"tokio",
"tokio-util",
2022-07-02 15:56:37 +00:00
"tracing",
]
2021-02-10 20:37:44 +00:00
[[package]]
name = "actix-macros"
2021-10-21 16:17:47 +00:00
version = "0.2.3"
2021-02-10 20:37:44 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-21 16:17:47 +00:00
checksum = "465a6172cf69b960917811022d8f29bc0b7fa1398bc4f78b3c466673db1213b6"
2021-02-10 20:37:44 +00:00
dependencies = [
"quote",
2023-05-25 18:41:40 +00:00
"syn 1.0.109",
2021-02-10 20:37:44 +00:00
]
[[package]]
name = "actix-router"
2022-09-28 23:34:07 +00:00
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "d66ff4d247d2b160861fa2866457e85706833527840e4133f8f49aa423a38799"
dependencies = [
"bytestring",
2024-02-01 22:32:17 +00:00
"http 0.2.9",
"regex",
"serde",
2022-09-28 23:34:07 +00:00
"tracing",
]
[[package]]
name = "actix-rt"
2023-03-10 03:30:31 +00:00
version = "2.8.0"
2021-02-10 20:37:44 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-10 03:30:31 +00:00
checksum = "15265b6b8e2347670eb363c47fc8c75208b4a4994b27192f345fcbe707804f3e"
2021-02-10 20:37:44 +00:00
dependencies = [
2021-03-10 02:14:42 +00:00
"actix-macros",
2021-02-10 20:37:44 +00:00
"futures-core",
2021-03-10 02:14:42 +00:00
"tokio",
]
[[package]]
name = "actix-server"
2023-03-10 03:30:31 +00:00
version = "2.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-10 03:30:31 +00:00
checksum = "3e8613a75dd50cc45f473cee3c34d59ed677c0f7b44480ce3b8247d7dc519327"
dependencies = [
2021-03-10 02:14:42 +00:00
"actix-rt",
"actix-service",
"actix-utils",
2021-02-10 20:37:44 +00:00
"futures-core",
2021-11-25 02:32:44 +00:00
"futures-util",
2022-02-26 18:28:23 +00:00
"mio",
"num_cpus",
2021-11-25 02:32:44 +00:00
"socket2",
2021-03-10 02:14:42 +00:00
"tokio",
2022-03-23 14:46:30 +00:00
"tracing",
]
[[package]]
2021-02-10 20:37:44 +00:00
name = "actix-service"
version = "2.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3b894941f818cfdc7ccc4b9e60fa7e53b5042a2e8567270f9147d5591893373a"
dependencies = [
2021-02-10 20:37:44 +00:00
"futures-core",
2021-06-19 19:42:42 +00:00
"paste",
2021-03-10 02:14:42 +00:00
"pin-project-lite",
]
[[package]]
name = "actix-tls"
2024-02-01 22:32:17 +00:00
version = "3.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-02-01 22:32:17 +00:00
checksum = "929e47cc23865cdb856e59673cfba2d28f00b3bbd060dfc80e33a00a3cea8317"
dependencies = [
2021-03-10 02:14:42 +00:00
"actix-rt",
"actix-service",
"actix-utils",
2021-02-10 20:37:44 +00:00
"futures-core",
2024-02-01 22:32:17 +00:00
"http 0.2.9",
"http 1.0.0",
"impl-more",
2021-11-25 02:32:44 +00:00
"pin-project-lite",
2024-02-01 22:32:17 +00:00
"tokio",
"tokio-rustls",
2022-09-28 23:34:07 +00:00
"tokio-util",
2024-02-01 22:32:17 +00:00
"tracing",
"webpki-roots 0.25.3",
]
2021-02-10 20:37:44 +00:00
[[package]]
name = "actix-utils"
2023-03-10 03:30:31 +00:00
version = "3.0.1"
2021-02-10 20:37:44 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-10 03:30:31 +00:00
checksum = "88a1dcdff1466e3c2488e1cb5c36a71822750ad43839937f85d2f4d9f8b705d8"
2021-02-10 20:37:44 +00:00
dependencies = [
2021-04-02 19:17:42 +00:00
"local-waker",
2021-03-10 02:14:42 +00:00
"pin-project-lite",
2021-02-10 20:37:44 +00:00
]
[[package]]
name = "actix-web"
2023-03-10 03:30:31 +00:00
version = "4.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-10 03:30:31 +00:00
checksum = "cd3cb42f9566ab176e1ef0b8b3a896529062b4efc6be0123046095914c4c1c96"
dependencies = [
2021-03-10 02:14:42 +00:00
"actix-codec",
"actix-http",
"actix-router",
2021-03-10 02:14:42 +00:00
"actix-rt",
"actix-server",
2021-03-10 02:14:42 +00:00
"actix-service",
"actix-utils",
2023-03-10 03:30:31 +00:00
"ahash 0.7.6",
2021-03-10 02:14:42 +00:00
"bytes",
2022-02-26 18:28:23 +00:00
"bytestring",
2021-06-26 17:27:54 +00:00
"cfg-if",
"derive_more",
"encoding_rs",
"futures-core",
"futures-util",
2024-02-01 22:32:17 +00:00
"http 0.2.9",
2022-02-11 17:20:51 +00:00
"itoa",
2021-04-02 19:17:42 +00:00
"language-tags",
"log",
"mime",
2021-04-02 19:17:42 +00:00
"once_cell",
2021-12-03 20:42:30 +00:00
"pin-project-lite",
"regex",
"serde",
"serde_json",
"serde_urlencoded",
2021-02-10 20:37:44 +00:00
"smallvec",
"socket2",
"time",
"url",
]
[[package]]
name = "adler"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
2021-02-10 20:37:44 +00:00
[[package]]
name = "ahash"
2021-10-21 16:17:47 +00:00
version = "0.7.6"
2021-02-10 20:37:44 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-21 16:17:47 +00:00
checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47"
2021-02-10 20:37:44 +00:00
dependencies = [
2021-04-02 19:17:42 +00:00
"getrandom",
2021-02-10 20:37:44 +00:00
"once_cell",
"version_check",
]
[[package]]
2023-03-10 03:30:31 +00:00
name = "ahash"
version = "0.8.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-10 03:30:31 +00:00
checksum = "2c99f64d1e06488f620f932677e24bc6e2897582980441ae90a671415bd7ec2f"
dependencies = [
2023-03-10 03:30:31 +00:00
"cfg-if",
"getrandom",
"once_cell",
"version_check",
]
2021-09-19 18:21:23 +00:00
[[package]]
2023-03-10 03:30:31 +00:00
name = "aho-corasick"
version = "0.7.20"
2021-09-19 18:21:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-10 03:30:31 +00:00
checksum = "cc936419f96fa211c1b9166887b38e5e40b19958e5b895be7c1f93adec7071ac"
2021-09-19 18:21:23 +00:00
dependencies = [
2023-03-10 03:30:31 +00:00
"memchr",
2021-09-19 18:21:23 +00:00
]
2023-05-25 18:41:40 +00:00
[[package]]
name = "aho-corasick"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "67fc08ce920c31afb70f013dcce1bfc3a3195de6a228474e45e1f145b36f8d04"
dependencies = [
"memchr",
]
[[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"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "41ed9a86bf92ae6580e0a31281f65a1b1d867c0cc68d5346e2ae128dddfa6a7d"
[[package]]
name = "anstyle-parse"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e765fd216e48e067936442276d1d57399e37bce53c264d6fefbe298080cb57ee"
dependencies = [
"utf8parse",
]
[[package]]
name = "anstyle-query"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5ca11d4be1bab0c8bc8734a9aa7bf4ee8316d462a08c6ac5052f888fef5b494b"
dependencies = [
"windows-sys 0.48.0",
]
[[package]]
name = "anstyle-wincon"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "180abfa45703aebe0093f79badacc01b8fd4ea2e35118747e5811127f926e188"
dependencies = [
"anstyle",
"windows-sys 0.48.0",
]
[[package]]
name = "anyhow"
2023-05-25 18:41:40 +00:00
version = "1.0.71"
2022-09-28 23:34:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-25 18:41:40 +00:00
checksum = "9c7d0618f0e0b7e8ff11427422b64564d5fb0be1940354bfe2e0529b18a9d9b8"
2022-09-28 23:34:07 +00:00
[[package]]
name = "arc-swap"
2023-03-10 03:30:31 +00:00
version = "1.6.0"
2022-07-02 15:56:37 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-10 03:30:31 +00:00
checksum = "bddcadddf5e9015d310179a59bb28c4d4b9920ad0f11e8e14dbadf654890c9a6"
2021-09-19 18:21:23 +00:00
[[package]]
name = "async-stream"
2023-05-25 18:41:40 +00:00
version = "0.3.5"
2021-09-19 18:21:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-25 18:41:40 +00:00
checksum = "cd56dd203fef61ac097dd65721a419ddccb106b2d2b70ba60a6b529f03961a51"
2021-09-19 18:21:23 +00:00
dependencies = [
"async-stream-impl",
"futures-core",
2023-03-10 03:30:31 +00:00
"pin-project-lite",
2021-09-19 18:21:23 +00:00
]
[[package]]
name = "async-stream-impl"
2023-05-25 18:41:40 +00:00
version = "0.3.5"
2021-09-19 18:21:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-25 18:41:40 +00:00
checksum = "16e62a023e7c117e27523144c5d2459f4397fcc3cab0085af8e2224f643a0193"
2021-09-19 18:21:23 +00:00
dependencies = [
"proc-macro2",
"quote",
2023-05-25 18:41:40 +00:00
"syn 2.0.16",
2021-09-19 18:21:23 +00:00
]
[[package]]
name = "async-trait"
2023-05-25 18:41:40 +00:00
version = "0.1.68"
2021-09-19 18:21:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-25 18:41:40 +00:00
checksum = "b9ccdd8f2a161be9bd5c023df56f1b2a0bd1d83872ae53b71a84a12c9bf6e842"
2021-09-19 18:21:23 +00:00
dependencies = [
"proc-macro2",
"quote",
2023-05-25 18:41:40 +00:00
"syn 2.0.16",
2021-09-19 18:21:23 +00:00
]
[[package]]
name = "autocfg"
2022-02-11 17:20:51 +00:00
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-11 17:20:51 +00:00
checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
[[package]]
name = "awc"
2024-02-01 22:32:17 +00:00
version = "3.3.0"
2021-02-10 20:37:44 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-02-01 22:32:17 +00:00
checksum = "b625cad34428b3b82d0bd548b26a1cd0a3d70b6109e9b4e3355d8f1802a8b1c6"
2021-02-10 20:37:44 +00:00
dependencies = [
2021-03-10 02:14:42 +00:00
"actix-codec",
"actix-http",
"actix-rt",
"actix-service",
2021-11-25 02:32:44 +00:00
"actix-tls",
"actix-utils",
2023-05-25 18:41:40 +00:00
"base64 0.21.2",
2021-03-10 02:14:42 +00:00
"bytes",
2021-06-26 17:27:54 +00:00
"cfg-if",
2021-02-10 20:37:44 +00:00
"derive_more",
"futures-core",
2021-11-25 02:32:44 +00:00
"futures-util",
"h2",
2024-02-01 22:32:17 +00:00
"http 0.2.9",
2022-02-11 17:20:51 +00:00
"itoa",
2021-02-10 20:37:44 +00:00
"log",
"mime",
"percent-encoding",
2021-03-10 02:14:42 +00:00
"pin-project-lite",
2021-04-02 19:17:42 +00:00
"rand",
2024-02-01 22:32:17 +00:00
"rustls",
"serde",
"serde_json",
"serde_urlencoded",
2021-11-25 02:32:44 +00:00
"tokio",
]
[[package]]
name = "axum"
2023-05-25 18:41:40 +00:00
version = "0.6.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-25 18:41:40 +00:00
checksum = "f8175979259124331c1d7bf6586ee7e0da434155e4b2d48ec2c8386281d8df39"
dependencies = [
"async-trait",
"axum-core",
2024-02-01 22:32:17 +00:00
"bitflags 1.3.2",
"bytes",
"futures-util",
2024-02-01 22:32:17 +00:00
"http 0.2.9",
"http-body",
"hyper",
"itoa",
"matchit",
"memchr",
"mime",
"percent-encoding",
"pin-project-lite",
2023-03-10 03:30:31 +00:00
"rustversion",
"serde",
"sync_wrapper",
"tower",
"tower-layer",
"tower-service",
]
[[package]]
name = "axum-core"
2023-05-25 18:41:40 +00:00
version = "0.3.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-25 18:41:40 +00:00
checksum = "759fa577a247914fd3f7f76d62972792636412fbfd634cd452f6a385a74d2d2c"
dependencies = [
"async-trait",
"bytes",
"futures-util",
2024-02-01 22:32:17 +00:00
"http 0.2.9",
"http-body",
"mime",
2023-03-10 03:30:31 +00:00
"rustversion",
2022-09-28 23:34:07 +00:00
"tower-layer",
"tower-service",
]
2020-11-01 20:27:00 +00:00
[[package]]
name = "base64"
2023-03-10 03:30:31 +00:00
version = "0.13.1"
2020-11-01 20:27:00 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-10 03:30:31 +00:00
checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
2020-11-01 20:27:00 +00:00
[[package]]
2023-03-10 03:30:31 +00:00
name = "base64"
2023-05-25 18:41:40 +00:00
version = "0.21.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-25 18:41:40 +00:00
checksum = "604178f6c5c21f02dc555784810edfb88d34ac2c73b2eae109655649ee73ce3d"
2022-07-02 15:56:37 +00:00
[[package]]
2023-03-10 03:30:31 +00:00
name = "bitflags"
version = "1.3.2"
2022-07-02 15:56:37 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-10 03:30:31 +00:00
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
2022-07-02 15:56:37 +00:00
2024-02-01 22:32:17 +00:00
[[package]]
name = "bitflags"
version = "2.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ed570934406eb16438a4e976b1b4500774099c13b8cb96eec99f620f05090ddf"
[[package]]
name = "block-buffer"
2023-03-10 03:30:31 +00:00
version = "0.10.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-10 03:30:31 +00:00
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
dependencies = [
"generic-array",
]
[[package]]
name = "bytecount"
2022-06-06 21:03:09 +00:00
version = "0.6.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-06 21:03:09 +00:00
checksum = "2c676a478f63e9fa2dd5368a42f28bba0d6c560b775f38583c8bbaa7fcd67c9c"
[[package]]
name = "byteorder"
version = "1.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
2021-02-10 20:37:44 +00:00
[[package]]
name = "bytes"
2023-03-10 03:30:31 +00:00
version = "1.4.0"
2021-02-10 20:37:44 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-10 03:30:31 +00:00
checksum = "89b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be"
2021-02-10 20:37:44 +00:00
[[package]]
name = "bytestring"
2023-03-10 03:30:31 +00:00
version = "1.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-10 03:30:31 +00:00
checksum = "238e4886760d98c4f899360c834fa93e62cf7f721ac3c2da375cbdf4b8679aae"
dependencies = [
2021-03-10 02:14:42 +00:00
"bytes",
]
2023-03-10 03:30:31 +00:00
[[package]]
name = "cc"
version = "1.0.79"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f"
2020-11-01 20:27:00 +00:00
[[package]]
name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
[[package]]
name = "clap"
2023-05-25 18:41:40 +00:00
version = "4.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-25 18:41:40 +00:00
checksum = "93aae7a4192245f70fe75dd9157fc7b4a5bf53e88d30bd4396f7d8f9284d5acc"
dependencies = [
2023-05-25 18:41:40 +00:00
"clap_builder",
"clap_derive",
2022-07-02 15:56:37 +00:00
"once_cell",
2023-05-25 18:41:40 +00:00
]
[[package]]
name = "clap_builder"
version = "4.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4f423e341edefb78c9caba2d9c7f7687d0e72e89df3ce3394554754393ac3990"
dependencies = [
"anstream",
"anstyle",
2024-02-01 22:32:17 +00:00
"bitflags 1.3.2",
2023-05-25 18:41:40 +00:00
"clap_lex",
"strsim",
]
[[package]]
name = "clap_derive"
2023-05-25 18:41:40 +00:00
version = "4.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-25 18:41:40 +00:00
checksum = "191d9573962933b4027f932c600cd252ce27a8ad5979418fe78e43c07996f27b"
dependencies = [
2022-09-28 23:34:07 +00:00
"heck",
"proc-macro2",
"quote",
2023-05-25 18:41:40 +00:00
"syn 2.0.16",
]
[[package]]
name = "clap_lex"
2023-05-25 18:41:40 +00:00
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-25 18:41:40 +00:00
checksum = "2da6da31387c7e4ef160ffab6d5e7f00c42626fe39aea70a7b0f1773f7dd6c1b"
[[package]]
name = "colorchoice"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7"
[[package]]
name = "console-api"
2023-05-25 18:41:40 +00:00
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-25 18:41:40 +00:00
checksum = "c2895653b4d9f1538a83970077cb01dfc77a4810524e51a110944688e916b18e"
dependencies = [
2022-09-28 23:34:07 +00:00
"prost",
"prost-types",
2023-05-25 18:41:40 +00:00
"tonic 0.9.2",
"tracing-core",
]
[[package]]
name = "console-subscriber"
2023-05-25 18:41:40 +00:00
version = "0.1.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-25 18:41:40 +00:00
checksum = "57ab2224a0311582eb03adba4caaf18644f7b1f10a760803a803b9b605187fc7"
dependencies = [
"console-api",
2022-01-24 04:55:43 +00:00
"crossbeam-channel",
2022-02-26 18:28:23 +00:00
"crossbeam-utils",
"futures",
"hdrhistogram",
"humantime",
2022-09-28 23:34:07 +00:00
"prost-types",
"serde",
"serde_json",
"thread_local",
"tokio",
"tokio-stream",
2023-05-25 18:41:40 +00:00
"tonic 0.9.2",
"tracing",
"tracing-core",
"tracing-subscriber",
]
2021-04-02 19:17:42 +00:00
[[package]]
name = "convert_case"
version = "0.4.0"
2020-09-10 14:27:31 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-02 19:17:42 +00:00
checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e"
2020-09-10 14:27:31 +00:00
[[package]]
2021-06-19 19:42:42 +00:00
name = "cpufeatures"
2023-05-25 18:41:40 +00:00
version = "0.2.7"
2020-09-10 14:27:31 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-25 18:41:40 +00:00
checksum = "3e4c1eaa2012c47becbbad2ab175484c2a84d1185b566fb2cc5b8707343dfe58"
2021-06-19 19:42:42 +00:00
dependencies = [
"libc",
]
2020-09-10 14:27:31 +00:00
[[package]]
name = "crc32fast"
2022-02-11 17:20:51 +00:00
version = "1.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-11 17:20:51 +00:00
checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d"
dependencies = [
"cfg-if",
]
2021-09-19 18:21:23 +00:00
[[package]]
name = "crossbeam-channel"
2023-05-25 18:41:40 +00:00
version = "0.5.8"
2021-09-19 18:21:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-25 18:41:40 +00:00
checksum = "a33c2bf77f2df06183c3aa30d1e96c0695a313d4f9c453cc3762a6db39f99200"
2021-09-19 18:21:23 +00:00
dependencies = [
"cfg-if",
"crossbeam-utils",
]
[[package]]
name = "crossbeam-utils"
2023-03-10 03:30:31 +00:00
version = "0.8.15"
2021-09-19 18:21:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-10 03:30:31 +00:00
checksum = "3c063cd8cc95f5c377ed0d4b49a4b21f632396ff690e8470c29b3359b346984b"
2021-09-19 18:21:23 +00:00
dependencies = [
"cfg-if",
]
2021-12-28 16:55:20 +00:00
[[package]]
name = "crypto-common"
2022-09-28 23:34:07 +00:00
version = "0.1.6"
2021-12-28 16:55:20 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
2021-12-28 16:55:20 +00:00
dependencies = [
"generic-array",
2022-02-26 18:28:23 +00:00
"typenum",
2021-12-28 16:55:20 +00:00
]
2022-07-02 15:56:37 +00:00
[[package]]
name = "css-minify"
2023-03-10 03:30:31 +00:00
version = "0.3.1"
2022-07-02 15:56:37 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-10 03:30:31 +00:00
checksum = "874c6e2d19f8d4a285083b11a3241bfbe01ac3ed85f26e1e6b34888d960552bd"
2022-07-02 15:56:37 +00:00
dependencies = [
"derive_more",
"indexmap",
2023-03-10 03:30:31 +00:00
"nom",
2022-07-02 15:56:37 +00:00
]
2022-09-28 23:34:07 +00:00
[[package]]
name = "dashmap"
version = "5.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "907076dfda823b0b36d2a1bb5f90c96660a5bbcd7729e10727f07858f22c4edc"
dependencies = [
"cfg-if",
"hashbrown",
"lock_api",
"once_cell",
"parking_lot_core",
]
[[package]]
name = "derive_more"
2021-12-03 20:42:30 +00:00
version = "0.99.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-03 20:42:30 +00:00
checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321"
dependencies = [
2021-04-02 19:17:42 +00:00
"convert_case",
"proc-macro2",
"quote",
2021-10-21 16:17:47 +00:00
"rustc_version",
2023-05-25 18:41:40 +00:00
"syn 1.0.109",
]
[[package]]
name = "digest"
2023-05-25 18:41:40 +00:00
version = "0.10.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-25 18:41:40 +00:00
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
dependencies = [
2021-12-28 16:55:20 +00:00
"block-buffer",
"crypto-common",
]
[[package]]
name = "dotenv"
2020-09-10 14:27:31 +00:00
version = "0.15.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-10 14:27:31 +00:00
checksum = "77c90badedccf4105eca100756a0b1289e191f6fcbdadd3cee1d2f614f97da8f"
[[package]]
name = "either"
2023-03-10 03:30:31 +00:00
version = "1.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-10 03:30:31 +00:00
checksum = "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91"
[[package]]
name = "encoding_rs"
2023-03-10 03:30:31 +00:00
version = "0.8.32"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-10 03:30:31 +00:00
checksum = "071a31f4ee85403370b58aca746f01041ede6f0da2730960ad001edc2b71b394"
dependencies = [
2021-03-10 02:14:42 +00:00
"cfg-if",
]
2023-03-10 03:30:31 +00:00
[[package]]
name = "errno"
2023-05-25 18:41:40 +00:00
version = "0.3.1"
2023-03-10 03:30:31 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-25 18:41:40 +00:00
checksum = "4bcfec3a70f97c962c307b2d2c56e358cf1d00b558d74262b5f929ee8cc7e73a"
2023-03-10 03:30:31 +00:00
dependencies = [
"errno-dragonfly",
"libc",
2023-05-25 18:41:40 +00:00
"windows-sys 0.48.0",
2023-03-10 03:30:31 +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-01-18 17:36:30 +00:00
[[package]]
name = "fastrand"
2023-03-10 03:30:31 +00:00
version = "1.9.0"
2022-01-18 17:36:30 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-10 03:30:31 +00:00
checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be"
2022-01-18 17:36:30 +00:00
dependencies = [
"instant",
]
[[package]]
name = "flate2"
2023-05-25 18:41:40 +00:00
version = "1.0.26"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-25 18:41:40 +00:00
checksum = "3b9429470923de8e8cbd4d2dc513535400b4b3fef0319fb5c4e1f520a7bef743"
dependencies = [
"crc32fast",
"miniz_oxide",
]
[[package]]
name = "fnv"
version = "1.0.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
2020-12-01 17:57:19 +00:00
[[package]]
name = "form_urlencoded"
2022-09-28 23:34:07 +00:00
version = "1.1.0"
2020-12-01 17:57:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "a9c384f161156f5260c24a097c56119f9be8c798586aecc13afbcbe7b7e26bf8"
2020-12-01 17:57:19 +00:00
dependencies = [
"percent-encoding",
]
2021-09-19 18:21:23 +00:00
[[package]]
name = "futures"
2023-05-25 18:41:40 +00:00
version = "0.3.28"
2021-09-19 18:21:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-25 18:41:40 +00:00
checksum = "23342abe12aba583913b2e62f22225ff9c950774065e4bfb61a19cd9770fec40"
2021-09-19 18:21:23 +00:00
dependencies = [
"futures-channel",
"futures-core",
"futures-executor",
2021-09-19 18:21:23 +00:00
"futures-io",
"futures-sink",
"futures-task",
"futures-util",
]
[[package]]
name = "futures-channel"
2023-05-25 18:41:40 +00:00
version = "0.3.28"
2021-09-19 18:21:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-25 18:41:40 +00:00
checksum = "955518d47e09b25bbebc7a18df10b81f0c766eaf4c4f1cccef2fca5f2a4fb5f2"
2021-09-19 18:21:23 +00:00
dependencies = [
"futures-core",
"futures-sink",
]
[[package]]
name = "futures-core"
2023-05-25 18:41:40 +00:00
version = "0.3.28"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-25 18:41:40 +00:00
checksum = "4bca583b7e26f571124fe5b7561d49cb2868d79116cfa0eefce955557c6fee8c"
2021-09-19 18:21:23 +00:00
[[package]]
name = "futures-executor"
2023-05-25 18:41:40 +00:00
version = "0.3.28"
2021-09-19 18:21:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-25 18:41:40 +00:00
checksum = "ccecee823288125bd88b4d7f565c9e58e41858e47ab72e8ea2d64e93624386e0"
2021-09-19 18:21:23 +00:00
dependencies = [
"futures-core",
"futures-task",
"futures-util",
]
[[package]]
name = "futures-io"
2023-05-25 18:41:40 +00:00
version = "0.3.28"
2021-09-19 18:21:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-25 18:41:40 +00:00
checksum = "4fff74096e71ed47f8e023204cfd0aa1289cd54ae5430a9523be060cdb849964"
2021-09-19 18:21:23 +00:00
[[package]]
name = "futures-macro"
2023-05-25 18:41:40 +00:00
version = "0.3.28"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-25 18:41:40 +00:00
checksum = "89ca545a94061b6365f2c7355b4b32bd20df3ff95f02da9329b34ccc3bd6ee72"
dependencies = [
"proc-macro2",
"quote",
2023-05-25 18:41:40 +00:00
"syn 2.0.16",
]
[[package]]
name = "futures-sink"
2023-05-25 18:41:40 +00:00
version = "0.3.28"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-25 18:41:40 +00:00
checksum = "f43be4fe21a13b9781a69afa4985b0f6ee0e1afab2c6f454a8cf30e2b2237b6e"
[[package]]
name = "futures-task"
2023-05-25 18:41:40 +00:00
version = "0.3.28"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-25 18:41:40 +00:00
checksum = "76d3d132be6c0e6aa1534069c705a74a5997a356c0dc2f86a47765e5617c5b65"
[[package]]
name = "futures-util"
2023-05-25 18:41:40 +00:00
version = "0.3.28"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-25 18:41:40 +00:00
checksum = "26b01e40b772d54cf6c6d721c1d1abd0647a0106a12ecaa1c186273392a69533"
dependencies = [
2021-09-19 18:21:23 +00:00
"futures-channel",
"futures-core",
2021-09-19 18:21:23 +00:00
"futures-io",
"futures-macro",
"futures-sink",
"futures-task",
2021-09-19 18:21:23 +00:00
"memchr",
2021-03-10 02:14:42 +00:00
"pin-project-lite",
"pin-utils",
2021-09-19 18:21:23 +00:00
"slab",
]
[[package]]
name = "generic-array"
2023-05-25 18:41:40 +00:00
version = "0.14.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-25 18:41:40 +00:00
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
dependencies = [
"typenum",
2020-09-10 14:27:31 +00:00
"version_check",
]
2021-02-10 20:37:44 +00:00
[[package]]
name = "getrandom"
2023-05-25 18:41:40 +00:00
version = "0.2.9"
2021-02-10 20:37:44 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-25 18:41:40 +00:00
checksum = "c85e1d9ab2eadba7e5040d4e09cbd6d072b76a557ad64e797c2cb9d4da21d7e4"
2021-02-10 20:37:44 +00:00
dependencies = [
2021-03-10 02:14:42 +00:00
"cfg-if",
"libc",
2022-07-02 15:56:37 +00:00
"wasi",
]
[[package]]
name = "h2"
2023-05-25 18:41:40 +00:00
version = "0.3.19"
2021-02-10 20:37:44 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-25 18:41:40 +00:00
checksum = "d357c7ae988e7d2182f7d7871d0b963962420b0678b0997ce7de72001aeab782"
2021-02-10 20:37:44 +00:00
dependencies = [
2021-03-10 02:14:42 +00:00
"bytes",
2021-02-10 20:37:44 +00:00
"fnv",
"futures-core",
"futures-sink",
"futures-util",
2024-02-01 22:32:17 +00:00
"http 0.2.9",
2021-02-10 20:37:44 +00:00
"indexmap",
"slab",
2021-03-10 02:14:42 +00:00
"tokio",
2022-09-28 23:34:07 +00:00
"tokio-util",
2020-09-10 14:27:31 +00:00
"tracing",
]
2020-09-10 14:27:31 +00:00
[[package]]
name = "hashbrown"
2022-09-28 23:34:07 +00:00
version = "0.12.3"
2020-09-10 14:27:31 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
2020-09-10 14:27:31 +00:00
[[package]]
name = "hdrhistogram"
2022-09-28 23:34:07 +00:00
version = "7.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "7f19b9f54f7c7f55e31401bb647626ce0cf0f67b0004982ce815b3ee72a02aa8"
dependencies = [
2023-03-10 03:30:31 +00:00
"base64 0.13.1",
"byteorder",
"flate2",
2023-03-10 03:30:31 +00:00
"nom",
"num-traits",
]
[[package]]
name = "heck"
2023-03-10 03:30:31 +00:00
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-10 03:30:31 +00:00
checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
[[package]]
name = "hermit-abi"
2023-03-10 03:30:31 +00:00
version = "0.2.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-10 03:30:31 +00:00
checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7"
dependencies = [
"libc",
]
2023-03-10 03:30:31 +00:00
[[package]]
name = "hermit-abi"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fed44880c466736ef9a5c5b5facefb5ed0785676d0c02d612db14e54f0d84286"
[[package]]
name = "http"
2023-03-10 03:30:31 +00:00
version = "0.2.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-10 03:30:31 +00:00
checksum = "bd6effc99afb63425aff9b05836f029929e345a6148a14b7ecd5ab67af944482"
dependencies = [
2021-03-10 02:14:42 +00:00
"bytes",
"fnv",
2022-02-11 17:20:51 +00:00
"itoa",
]
2024-02-01 22:32:17 +00:00
[[package]]
name = "http"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b32afd38673a8016f7c9ae69e5af41a58f81b1d31689040f2f1959594ce194ea"
dependencies = [
"bytes",
"fnv",
"itoa",
]
2021-09-19 18:21:23 +00:00
[[package]]
name = "http-body"
2022-06-06 21:03:09 +00:00
version = "0.4.5"
2021-09-19 18:21:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-06 21:03:09 +00:00
checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1"
2021-09-19 18:21:23 +00:00
dependencies = [
"bytes",
2024-02-01 22:32:17 +00:00
"http 0.2.9",
2021-09-19 18:21:23 +00:00
"pin-project-lite",
]
[[package]]
name = "httparse"
2022-09-28 23:34:07 +00:00
version = "1.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904"
[[package]]
2021-09-19 18:21:23 +00:00
name = "httpdate"
2021-11-25 02:32:44 +00:00
version = "1.0.2"
2021-09-19 18:21:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-11-25 02:32:44 +00:00
checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421"
2021-09-19 18:21:23 +00:00
[[package]]
name = "humantime"
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
2021-09-19 18:21:23 +00:00
[[package]]
name = "hyper"
2023-05-25 18:41:40 +00:00
version = "0.14.26"
2021-09-19 18:21:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-25 18:41:40 +00:00
checksum = "ab302d72a6f11a3b910431ff93aae7e773078c769f0a3ef15fb9ec692ed147d4"
2021-09-19 18:21:23 +00:00
dependencies = [
"bytes",
"futures-channel",
"futures-core",
"futures-util",
"h2",
2024-02-01 22:32:17 +00:00
"http 0.2.9",
2021-09-19 18:21:23 +00:00
"http-body",
"httparse",
"httpdate",
2022-02-11 17:20:51 +00:00
"itoa",
2021-09-19 18:21:23 +00:00
"pin-project-lite",
"socket2",
"tokio",
"tower-service",
"tracing",
"want",
]
[[package]]
name = "hyper-timeout"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-19 18:21:23 +00:00
checksum = "bbb958482e8c7be4bc3cf272a766a2b0bf1a6755e7a6ae777f017a31d11b13b1"
dependencies = [
"hyper",
"pin-project-lite",
"tokio",
"tokio-io-timeout",
]
[[package]]
name = "idna"
2022-09-28 23:34:07 +00:00
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6"
dependencies = [
"unicode-bidi",
"unicode-normalization",
]
2024-02-01 22:32:17 +00:00
[[package]]
name = "impl-more"
version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "206ca75c9c03ba3d4ace2460e57b189f39f43de612c2f85836e65c929701bb2d"
[[package]]
name = "indexmap"
2023-05-25 18:41:40 +00:00
version = "1.9.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-25 18:41:40 +00:00
checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
dependencies = [
"autocfg",
2020-09-10 14:27:31 +00:00
"hashbrown",
]
2020-09-10 14:27:31 +00:00
[[package]]
name = "instant"
2021-10-21 16:17:47 +00:00
version = "0.1.12"
2020-09-10 14:27:31 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-21 16:17:47 +00:00
checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
2020-10-03 00:46:54 +00:00
dependencies = [
2021-03-10 02:14:42 +00:00
"cfg-if",
]
2023-03-10 03:30:31 +00:00
[[package]]
name = "io-lifetimes"
2023-05-25 18:41:40 +00:00
version = "1.0.11"
2023-03-10 03:30:31 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-25 18:41:40 +00:00
checksum = "eae7b9aee968036d54dce06cebaefd919e4472e753296daccd6d344e3e2df0c2"
2023-03-10 03:30:31 +00:00
dependencies = [
2023-05-25 18:41:40 +00:00
"hermit-abi 0.3.1",
2023-03-10 03:30:31 +00:00
"libc",
2023-05-25 18:41:40 +00:00
"windows-sys 0.48.0",
2023-03-10 03:30:31 +00:00
]
[[package]]
name = "is-terminal"
2023-05-25 18:41:40 +00:00
version = "0.4.7"
2023-03-10 03:30:31 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-25 18:41:40 +00:00
checksum = "adcf93614601c8129ddf72e2d5633df827ba6551541c6d8c59520a371475be1f"
2023-03-10 03:30:31 +00:00
dependencies = [
"hermit-abi 0.3.1",
"io-lifetimes",
"rustix",
2023-05-25 18:41:40 +00:00
"windows-sys 0.48.0",
2023-03-10 03:30:31 +00:00
]
[[package]]
name = "itertools"
2022-09-28 23:34:07 +00:00
version = "0.10.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
dependencies = [
"either",
]
[[package]]
name = "itoa"
2023-03-10 03:30:31 +00:00
version = "1.0.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-10 03:30:31 +00:00
checksum = "453ad9f582a441959e5f0d088b02ce04cfe8d51a8eaf077f12ac6d3e94164ca6"
[[package]]
name = "language-tags"
2021-06-19 19:42:42 +00:00
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-19 19:42:42 +00:00
checksum = "d4345964bb142484797b161f473a503a434de77149dd8c7427788c6e13379388"
[[package]]
name = "lazy_static"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
2022-07-02 15:56:37 +00:00
[[package]]
2023-03-10 03:30:31 +00:00
name = "libc"
2023-05-25 18:41:40 +00:00
version = "0.2.144"
2022-07-02 15:56:37 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-25 18:41:40 +00:00
checksum = "2b00cc1c228a6782d0f076e7b232802e0c5689d41bb5df366f2a6b6621cfdfe1"
2022-07-02 15:56:37 +00:00
[[package]]
2023-03-10 03:30:31 +00:00
name = "linux-raw-sys"
2023-05-25 18:41:40 +00:00
version = "0.3.8"
2021-04-02 19:17:42 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-25 18:41:40 +00:00
checksum = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519"
2021-04-02 19:17:42 +00:00
[[package]]
name = "local-channel"
2022-06-06 21:03:09 +00:00
version = "0.1.3"
2021-04-02 19:17:42 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-06 21:03:09 +00:00
checksum = "7f303ec0e94c6c54447f84f3b0ef7af769858a9c4ef56ef2a986d3dcd4c3fc9c"
2021-04-02 19:17:42 +00:00
dependencies = [
"futures-core",
"futures-sink",
"futures-util",
"local-waker",
]
[[package]]
name = "local-waker"
2022-06-06 21:03:09 +00:00
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-06 21:03:09 +00:00
checksum = "e34f76eb3611940e0e7d53a9aaa4e6a3151f69541a282fd0dad5571420c53ff1"
[[package]]
name = "lock_api"
2022-09-28 23:34:07 +00:00
version = "0.4.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df"
dependencies = [
2022-04-04 01:29:20 +00:00
"autocfg",
"scopeguard",
]
[[package]]
name = "log"
version = "0.4.17"
2020-06-19 19:13:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
2020-06-19 19:13:49 +00:00
dependencies = [
2021-03-10 02:14:42 +00:00
"cfg-if",
2020-06-19 19:13:49 +00:00
]
2021-09-19 18:21:23 +00:00
[[package]]
name = "matchers"
2021-10-25 01:48:19 +00:00
version = "0.1.0"
2021-09-19 18:21:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-25 01:48:19 +00:00
checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558"
2021-09-19 18:21:23 +00:00
dependencies = [
"regex-automata",
]
[[package]]
name = "matchit"
2023-03-10 03:30:31 +00:00
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-10 03:30:31 +00:00
checksum = "b87248edafb776e59e6ee64a79086f65890d3510f2c656c000bf2a7e8a0aea40"
[[package]]
name = "md5"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "490cc448043f947bae3cbee9c203358d62dbee0db12107a74be5c30ccfd09771"
[[package]]
name = "memchr"
version = "2.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
[[package]]
name = "mime"
2023-05-25 18:41:40 +00:00
version = "0.3.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-25 18:41:40 +00:00
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
2021-01-05 17:03:18 +00:00
[[package]]
name = "minify-html"
2023-05-25 18:41:40 +00:00
version = "0.11.1"
2021-01-05 17:03:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-25 18:41:40 +00:00
checksum = "fc4d9147754a49e80557df835eb59e743eab1bf75410a134f55dc4b9dbb692ad"
2022-07-02 15:56:37 +00:00
dependencies = [
2023-05-25 18:41:40 +00:00
"aho-corasick 0.7.20",
2022-07-02 15:56:37 +00:00
"css-minify",
"lazy_static",
"memchr",
"minify-js",
2023-03-10 03:30:31 +00:00
"rustc-hash",
2022-07-02 15:56:37 +00:00
]
[[package]]
name = "minify-js"
2023-03-10 03:30:31 +00:00
version = "0.4.3"
2022-07-02 15:56:37 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-10 03:30:31 +00:00
checksum = "c300f90ba1138b5c5daf5d9441dc9bdc67b808aac22cf638362a2647bc213be4"
2021-01-05 17:03:18 +00:00
dependencies = [
"lazy_static",
2023-03-10 03:30:31 +00:00
"parse-js",
2021-01-05 17:03:18 +00:00
]
[[package]]
name = "minimal-lexical"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
[[package]]
name = "miniz_oxide"
2023-05-25 18:41:40 +00:00
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-25 18:41:40 +00:00
checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7"
dependencies = [
"adler",
]
2021-12-13 17:33:44 +00:00
[[package]]
name = "mio"
2023-03-10 03:30:31 +00:00
version = "0.8.6"
2021-12-13 17:33:44 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-10 03:30:31 +00:00
checksum = "5b9d9a46eff5b4ff64b45a9e316a6d1e0bc719ef429cbec4dc630684212bfdf9"
2021-12-13 17:33:44 +00:00
dependencies = [
"libc",
"log",
2022-07-02 15:56:37 +00:00
"wasi",
2023-03-10 03:30:31 +00:00
"windows-sys 0.45.0",
]
2022-07-02 15:56:37 +00:00
[[package]]
name = "nom"
2023-03-10 03:30:31 +00:00
version = "7.1.3"
2022-07-02 15:56:37 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-10 03:30:31 +00:00
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
dependencies = [
"memchr",
"minimal-lexical",
]
2020-12-01 17:57:19 +00:00
[[package]]
2023-03-10 03:30:31 +00:00
name = "nu-ansi-term"
version = "0.46.0"
2020-12-01 17:57:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-10 03:30:31 +00:00
checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84"
2020-12-01 17:57:19 +00:00
dependencies = [
2023-03-10 03:30:31 +00:00
"overload",
"winapi",
2020-12-01 17:57:19 +00:00
]
[[package]]
name = "num-bigint"
2021-11-25 02:32:44 +00:00
version = "0.4.3"
2020-12-01 17:57:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-11-25 02:32:44 +00:00
checksum = "f93ab6289c7b344a8a9f60f88d80aa20032336fe78da341afc91c8a2341fc75f"
2020-12-01 17:57:19 +00:00
dependencies = [
"autocfg",
"num-integer",
"num-traits",
]
[[package]]
name = "num-integer"
version = "0.1.45"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9"
dependencies = [
"autocfg",
"num-traits",
]
[[package]]
name = "num-rational"
2022-07-02 15:56:37 +00:00
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-02 15:56:37 +00:00
checksum = "0638a1c9d0a3c0914158145bc76cff373a75a627e6ecbfb71cbe6f453a5a19b0"
dependencies = [
"autocfg",
2023-03-10 03:30:31 +00:00
"num-bigint",
"num-integer",
"num-traits",
]
[[package]]
name = "num-traits"
2022-06-06 21:03:09 +00:00
version = "0.2.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-06 21:03:09 +00:00
checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd"
dependencies = [
"autocfg",
]
[[package]]
name = "num_cpus"
2023-03-10 03:30:31 +00:00
version = "1.15.0"
2022-01-24 04:55:43 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-10 03:30:31 +00:00
checksum = "0fac9e2da13b5eb447a6ce3d392f23a29d8694bff781bf03a16cd9ac8697593b"
2022-01-24 04:55:43 +00:00
dependencies = [
2023-03-10 03:30:31 +00:00
"hermit-abi 0.2.6",
2022-01-24 04:55:43 +00:00
"libc",
]
[[package]]
name = "once_cell"
2023-03-10 03:30:31 +00:00
version = "1.17.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-10 03:30:31 +00:00
checksum = "b7e5500299e16ebb147ae15a00a942af264cf3688f47923b8fc2cd5858f23ad3"
2021-09-19 18:21:23 +00:00
[[package]]
name = "opentelemetry"
2023-05-25 18:41:40 +00:00
version = "0.19.0"
2021-09-19 18:21:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-25 18:41:40 +00:00
checksum = "5f4b8347cc26099d3aeee044065ecc3ae11469796b4d65d065a23a584ed92a6f"
2021-09-19 18:21:23 +00:00
dependencies = [
2022-09-28 23:34:07 +00:00
"opentelemetry_api",
"opentelemetry_sdk",
2021-09-19 18:21:23 +00:00
]
[[package]]
name = "opentelemetry-otlp"
2023-05-25 18:41:40 +00:00
version = "0.12.0"
2021-09-19 18:21:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-25 18:41:40 +00:00
checksum = "8af72d59a4484654ea8eb183fea5ae4eb6a41d7ac3e3bae5f4d2a282a3a7d3ca"
2021-09-19 18:21:23 +00:00
dependencies = [
"async-trait",
"futures",
2022-02-04 17:42:22 +00:00
"futures-util",
2024-02-01 22:32:17 +00:00
"http 0.2.9",
2021-09-19 18:21:23 +00:00
"opentelemetry",
2022-09-28 23:34:07 +00:00
"opentelemetry-proto",
"prost",
2021-09-19 18:21:23 +00:00
"thiserror",
"tokio",
2023-05-25 18:41:40 +00:00
"tonic 0.8.3",
2022-09-28 23:34:07 +00:00
]
[[package]]
name = "opentelemetry-proto"
2023-05-25 18:41:40 +00:00
version = "0.2.0"
2022-09-28 23:34:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-25 18:41:40 +00:00
checksum = "045f8eea8c0fa19f7d48e7bc3128a39c2e5c533d5c61298c548dfefc1064474c"
2022-09-28 23:34:07 +00:00
dependencies = [
"futures",
"futures-util",
"opentelemetry",
"prost",
2023-05-25 18:41:40 +00:00
"tonic 0.8.3",
2021-09-19 18:21:23 +00:00
]
2022-09-28 23:34:07 +00:00
[[package]]
name = "opentelemetry_api"
2023-05-25 18:41:40 +00:00
version = "0.19.0"
2022-09-28 23:34:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-25 18:41:40 +00:00
checksum = "ed41783a5bf567688eb38372f2b7a8530f5a607a4b49d38dd7573236c23ca7e2"
2022-09-28 23:34:07 +00:00
dependencies = [
"fnv",
"futures-channel",
"futures-util",
"indexmap",
"once_cell",
"pin-project-lite",
"thiserror",
2023-05-25 18:41:40 +00:00
"urlencoding",
2022-09-28 23:34:07 +00:00
]
[[package]]
name = "opentelemetry_sdk"
2023-05-25 18:41:40 +00:00
version = "0.19.0"
2022-09-28 23:34:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-25 18:41:40 +00:00
checksum = "8b3a2a91fdbfdd4d212c0dcc2ab540de2c2bcbbd90be17de7a7daf8822d010c1"
2022-09-28 23:34:07 +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",
]
2023-03-10 03:30:31 +00:00
[[package]]
name = "overload"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-10 03:30:31 +00:00
checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39"
[[package]]
name = "parking_lot"
2022-06-06 21:03:09 +00:00
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-06 21:03:09 +00:00
checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
dependencies = [
"lock_api",
"parking_lot_core",
]
[[package]]
name = "parking_lot_core"
2023-03-10 03:30:31 +00:00
version = "0.9.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-10 03:30:31 +00:00
checksum = "9069cbb9f99e3a5083476ccb29ceb1de18b9118cafa53e90c9551235de2b9521"
dependencies = [
2021-03-10 02:14:42 +00:00
"cfg-if",
"libc",
"redox_syscall",
"smallvec",
2023-03-10 03:30:31 +00:00
"windows-sys 0.45.0",
]
[[package]]
name = "parse-js"
version = "0.10.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "30534759e6ad87aa144c396544747e1c25b1020bd133356fd758c8facec764e5"
dependencies = [
2023-05-25 18:41:40 +00:00
"aho-corasick 0.7.20",
2023-03-10 03:30:31 +00:00
"lazy_static",
"memchr",
]
2021-06-19 19:42:42 +00:00
[[package]]
name = "paste"
2023-03-10 03:30:31 +00:00
version = "1.0.12"
2021-06-19 19:42:42 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-10 03:30:31 +00:00
checksum = "9f746c4065a8fa3fe23974dd82f15431cc8d40779821001404d10d2e79ca7d79"
2021-06-19 19:42:42 +00:00
[[package]]
name = "percent-encoding"
2022-09-28 23:34:07 +00:00
version = "2.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e"
[[package]]
name = "pict-rs-proxy"
2023-07-15 02:39:22 +00:00
version = "0.5.0-alpha.1"
dependencies = [
2021-03-10 02:14:42 +00:00
"actix-rt",
"actix-web",
"anyhow",
2021-03-10 02:14:42 +00:00
"awc",
"clap",
"console-subscriber",
"dotenv",
"mime",
2021-01-05 17:03:18 +00:00
"minify-html",
"once_cell",
2021-09-19 18:21:23 +00:00
"opentelemetry",
"opentelemetry-otlp",
"ructe",
2024-02-01 22:32:17 +00:00
"rustls",
"rustls-pemfile",
"serde",
"serde_qs",
2020-06-14 16:16:12 +00:00
"thiserror",
2024-02-01 22:32:17 +00:00
"tokio",
2021-09-19 18:21:23 +00:00
"tracing",
"tracing-actix-web",
"tracing-awc",
"tracing-error",
"tracing-futures",
"tracing-log",
"tracing-opentelemetry",
"tracing-subscriber",
"url",
2024-02-01 22:32:17 +00:00
"webpki-roots 0.26.0",
]
2020-11-01 20:27:00 +00:00
[[package]]
name = "pin-project"
2023-05-25 18:41:40 +00:00
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-25 18:41:40 +00:00
checksum = "c95a7476719eab1e366eaf73d0260af3021184f18177925b07f54b30089ceead"
dependencies = [
2021-03-10 02:14:42 +00:00
"pin-project-internal",
]
[[package]]
name = "pin-project-internal"
2023-05-25 18:41:40 +00:00
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-25 18:41:40 +00:00
checksum = "39407670928234ebc5e6e580247dd567ad73a3578460c5990f9503df207e8f07"
dependencies = [
"proc-macro2",
"quote",
2023-05-25 18:41:40 +00:00
"syn 2.0.16",
]
[[package]]
name = "pin-project-lite"
version = "0.2.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116"
2020-12-01 17:57:19 +00:00
[[package]]
name = "pin-utils"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
[[package]]
name = "ppv-lite86"
2023-03-10 03:30:31 +00:00
version = "0.2.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-10 03:30:31 +00:00
checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
[[package]]
name = "proc-macro2"
2023-05-25 18:41:40 +00:00
version = "1.0.58"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-25 18:41:40 +00:00
checksum = "fa1fb82fc0c281dd9671101b66b771ebbe1eaf967b96ac8740dcba4b70005ca8"
dependencies = [
2022-06-06 21:03:09 +00:00
"unicode-ident",
]
[[package]]
name = "prost"
2023-05-25 18:41:40 +00:00
version = "0.11.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-25 18:41:40 +00:00
checksum = "0b82eaa1d779e9a4bc1c3217db8ffbeabaae1dca241bf70183242128d48681cd"
dependencies = [
"bytes",
2022-09-28 23:34:07 +00:00
"prost-derive",
]
[[package]]
name = "prost-derive"
2023-05-25 18:41:40 +00:00
version = "0.11.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-25 18:41:40 +00:00
checksum = "e5d2d8d10f3c6ded6da8b05b5fb3b8a5082514344d56c9f871412d29b4e075b4"
dependencies = [
"anyhow",
"itertools",
"proc-macro2",
"quote",
2023-05-25 18:41:40 +00:00
"syn 1.0.109",
]
[[package]]
name = "prost-types"
2023-05-25 18:41:40 +00:00
version = "0.11.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-25 18:41:40 +00:00
checksum = "213622a1460818959ac1181aaeb2dc9c7f63df720db7d788b3e24eacd1983e13"
dependencies = [
2022-09-28 23:34:07 +00:00
"prost",
2021-09-19 18:21:23 +00:00
]
[[package]]
name = "quote"
2023-05-25 18:41:40 +00:00
version = "1.0.27"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-25 18:41:40 +00:00
checksum = "8f4f29d145265ec1c483c7c654450edde0bfe043d3938d6972630663356d9500"
dependencies = [
"proc-macro2",
]
2021-02-10 20:37:44 +00:00
[[package]]
name = "rand"
2022-02-26 18:28:23 +00:00
version = "0.8.5"
2021-02-10 20:37:44 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-26 18:28:23 +00:00
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
2021-02-10 20:37:44 +00:00
dependencies = [
"libc",
2021-04-02 19:17:42 +00:00
"rand_chacha",
"rand_core",
2021-02-10 20:37:44 +00:00
]
[[package]]
name = "rand_chacha"
2021-06-19 19:42:42 +00:00
version = "0.3.1"
2021-02-10 20:37:44 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-19 19:42:42 +00:00
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
2021-02-10 20:37:44 +00:00
dependencies = [
"ppv-lite86",
2021-04-02 19:17:42 +00:00
"rand_core",
2021-02-10 20:37:44 +00:00
]
[[package]]
name = "rand_core"
2022-09-28 23:34:07 +00:00
version = "0.6.4"
2021-02-10 20:37:44 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
2021-02-10 20:37:44 +00:00
dependencies = [
2021-04-02 19:17:42 +00:00
"getrandom",
2021-02-10 20:37:44 +00:00
]
[[package]]
name = "redox_syscall"
2022-09-28 23:34:07 +00:00
version = "0.2.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
2021-03-10 02:14:42 +00:00
dependencies = [
2024-02-01 22:32:17 +00:00
"bitflags 1.3.2",
2021-03-10 02:14:42 +00:00
]
[[package]]
name = "regex"
2023-05-25 18:41:40 +00:00
version = "1.8.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-25 18:41:40 +00:00
checksum = "81ca098a9821bd52d6b24fd8b10bd081f47d39c22778cafaa75a2857a62c6390"
dependencies = [
2023-05-25 18:41:40 +00:00
"aho-corasick 1.0.1",
"memchr",
2023-05-25 18:41:40 +00:00
"regex-syntax 0.7.2",
]
2021-09-19 18:21:23 +00:00
[[package]]
name = "regex-automata"
version = "0.1.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
dependencies = [
2023-05-25 18:41:40 +00:00
"regex-syntax 0.6.29",
2021-09-19 18:21:23 +00:00
]
[[package]]
name = "regex-syntax"
2023-05-25 18:41:40 +00:00
version = "0.6.29"
2021-09-19 18:21:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-25 18:41:40 +00:00
checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
[[package]]
name = "regex-syntax"
version = "0.7.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "436b050e76ed2903236f032a59761c1eb99e1b0aead2c257922771dab1fc8c78"
2021-09-19 18:21:23 +00:00
2024-02-01 22:32:17 +00:00
[[package]]
name = "ring"
version = "0.17.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9babe80d5c16becf6594aa32ad2be8fe08498e7ae60b77de8df700e67f191d7e"
dependencies = [
"cc",
"getrandom",
"libc",
"spin",
"untrusted",
"windows-sys 0.48.0",
]
[[package]]
name = "rsass"
2023-03-10 03:30:31 +00:00
version = "0.27.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-10 03:30:31 +00:00
checksum = "a43695dd28122f6c684273de89796a56a98e02e9694b8ab57b160fdc6e6d69af"
dependencies = [
2022-09-28 23:34:07 +00:00
"arc-swap",
2022-02-11 17:20:51 +00:00
"fastrand",
"lazy_static",
2023-03-10 03:30:31 +00:00
"nom",
2020-12-01 17:57:19 +00:00
"num-bigint",
"num-integer",
"num-rational",
"num-traits",
2022-09-28 23:34:07 +00:00
"tracing",
]
[[package]]
name = "ructe"
2023-03-10 03:30:31 +00:00
version = "0.16.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-10 03:30:31 +00:00
checksum = "79c86c1631418815c5947a34be5872806586c65398754ec91cc2df35a8e26ba8"
dependencies = [
2023-05-25 18:41:40 +00:00
"base64 0.21.2",
"bytecount",
"itertools",
"md5",
"mime",
2023-03-10 03:30:31 +00:00
"nom",
"rsass",
]
2023-03-10 03:30:31 +00:00
[[package]]
name = "rustc-hash"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
2021-08-31 21:37:04 +00:00
[[package]]
name = "rustc_version"
2021-12-03 20:42:30 +00:00
version = "0.4.0"
2021-08-31 21:37:04 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-03 20:42:30 +00:00
checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
2021-08-31 21:37:04 +00:00
dependencies = [
2021-10-21 16:17:47 +00:00
"semver",
]
2023-03-10 03:30:31 +00:00
[[package]]
name = "rustix"
2023-05-25 18:41:40 +00:00
version = "0.37.19"
2023-03-10 03:30:31 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-25 18:41:40 +00:00
checksum = "acf8729d8542766f1b2cf77eb034d52f40d375bb8b615d0b147089946e16613d"
2023-03-10 03:30:31 +00:00
dependencies = [
2024-02-01 22:32:17 +00:00
"bitflags 1.3.2",
2023-03-10 03:30:31 +00:00
"errno",
"io-lifetimes",
"libc",
"linux-raw-sys",
2023-05-25 18:41:40 +00:00
"windows-sys 0.48.0",
2023-03-10 03:30:31 +00:00
]
2024-02-01 22:32:17 +00:00
[[package]]
name = "rustls"
version = "0.21.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f9d5a6813c0759e4609cd494e8e725babae6a2ca7b62a5536a13daaec6fcb7ba"
dependencies = [
"log",
"ring",
"rustls-webpki",
"sct",
]
[[package]]
name = "rustls-pemfile"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "35e4980fa29e4c4b212ffb3db068a564cbf560e51d3944b7c88bd8bf5bec64f4"
dependencies = [
"base64 0.21.2",
"rustls-pki-types",
]
[[package]]
name = "rustls-pki-types"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9e9d979b3ce68192e42760c7810125eb6cf2ea10efae545a156063e61f314e2a"
[[package]]
name = "rustls-webpki"
version = "0.101.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8b6275d1ee7a1cd780b64aca7726599a1dbc893b1e64144529e55c3c2f745765"
dependencies = [
"ring",
"untrusted",
]
2023-03-10 03:30:31 +00:00
[[package]]
name = "rustversion"
version = "1.0.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4f3208ce4d8448b3f3e7d168a73f5e0c43a61e32930de3bceeccedb388b6bf06"
[[package]]
name = "ryu"
2023-03-10 03:30:31 +00:00
version = "1.0.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-10 03:30:31 +00:00
checksum = "f91339c0467de62360649f8d3e185ca8de4224ff281f66000de5eb2a77a79041"
[[package]]
name = "scopeguard"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
2024-02-01 22:32:17 +00:00
[[package]]
name = "sct"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414"
dependencies = [
"ring",
"untrusted",
]
2021-08-31 21:37:04 +00:00
[[package]]
name = "semver"
2023-05-25 18:41:40 +00:00
version = "1.0.17"
2021-08-31 21:37:04 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-25 18:41:40 +00:00
checksum = "bebd363326d05ec3e2f532ab7660680f3b02130d780c299bca73469d521bc0ed"
2021-08-31 21:37:04 +00:00
[[package]]
name = "serde"
2023-05-25 18:41:40 +00:00
version = "1.0.163"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-25 18:41:40 +00:00
checksum = "2113ab51b87a539ae008b5c6c02dc020ffa39afd2d83cffcb3f4eb2722cebec2"
dependencies = [
"serde_derive",
]
[[package]]
name = "serde_derive"
2023-05-25 18:41:40 +00:00
version = "1.0.163"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-25 18:41:40 +00:00
checksum = "8c805777e3930c8883389c602315a24224bcc738b63905ef87cd1420353ea93e"
dependencies = [
"proc-macro2",
"quote",
2023-05-25 18:41:40 +00:00
"syn 2.0.16",
]
[[package]]
name = "serde_json"
2023-05-25 18:41:40 +00:00
version = "1.0.96"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-25 18:41:40 +00:00
checksum = "057d394a50403bcac12672b2b18fb387ab6d289d957dab67dd201875391e52f1"
dependencies = [
2022-02-11 17:20:51 +00:00
"itoa",
"ryu",
"serde",
]
[[package]]
name = "serde_qs"
2023-03-10 03:30:31 +00:00
version = "0.12.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-10 03:30:31 +00:00
checksum = "0431a35568651e363364210c91983c1da5eb29404d9f0928b67d4ebcfa7d330c"
dependencies = [
"actix-web",
"futures",
"percent-encoding",
"serde",
"thiserror",
]
[[package]]
name = "serde_urlencoded"
2022-01-18 17:36:30 +00:00
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-18 17:36:30 +00:00
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
dependencies = [
2020-12-01 17:57:19 +00:00
"form_urlencoded",
2022-02-11 17:20:51 +00:00
"itoa",
2020-12-01 17:57:19 +00:00
"ryu",
"serde",
]
[[package]]
2022-07-02 15:56:37 +00:00
name = "sha1"
2022-09-28 23:34:07 +00:00
version = "0.10.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "f04293dc80c3993519f2d7f6f511707ee7094fe0c6d3406feb330cdb3540eba3"
dependencies = [
2021-03-10 02:14:42 +00:00
"cfg-if",
2021-06-19 19:42:42 +00:00
"cpufeatures",
"digest",
]
2021-09-19 18:21:23 +00:00
[[package]]
name = "sharded-slab"
2021-10-21 16:17:47 +00:00
version = "0.1.4"
2021-09-19 18:21:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-21 16:17:47 +00:00
checksum = "900fba806f70c630b0a382d0d825e17a0f19fcd059a2ade1ff237bcddf446b31"
2021-09-19 18:21:23 +00:00
dependencies = [
"lazy_static",
]
[[package]]
name = "signal-hook-registry"
2023-03-10 03:30:31 +00:00
version = "1.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-10 03:30:31 +00:00
checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1"
dependencies = [
"libc",
]
[[package]]
name = "slab"
2023-03-10 03:30:31 +00:00
version = "0.4.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-10 03:30:31 +00:00
checksum = "6528351c9bc8ab22353f9d776db39a20288e8d6c37ef8cfe3317cf875eecfc2d"
2022-09-28 23:34:07 +00:00
dependencies = [
"autocfg",
]
[[package]]
name = "smallvec"
2023-03-10 03:30:31 +00:00
version = "1.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-10 03:30:31 +00:00
checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0"
[[package]]
name = "socket2"
2023-03-10 03:30:31 +00:00
version = "0.4.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-10 03:30:31 +00:00
checksum = "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662"
dependencies = [
"libc",
2021-03-10 02:14:42 +00:00
"winapi",
]
2024-02-01 22:32:17 +00:00
[[package]]
name = "spin"
version = "0.9.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
[[package]]
name = "strsim"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
[[package]]
name = "syn"
2023-03-10 03:30:31 +00:00
version = "1.0.109"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-10 03:30:31 +00:00
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
dependencies = [
"proc-macro2",
"quote",
2022-06-06 21:03:09 +00:00
"unicode-ident",
]
[[package]]
2023-05-25 18:41:40 +00:00
name = "syn"
version = "2.0.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-25 18:41:40 +00:00
checksum = "a6f671d4b5ffdb8eadec19c0ae67fe2639df8684bd7bc4b83d986b8db549cf01"
dependencies = [
2023-05-25 18:41:40 +00:00
"proc-macro2",
"quote",
"unicode-ident",
]
[[package]]
2023-05-25 18:41:40 +00:00
name = "sync_wrapper"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-25 18:41:40 +00:00
checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160"
[[package]]
name = "thiserror"
2023-05-25 18:41:40 +00:00
version = "1.0.40"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-25 18:41:40 +00:00
checksum = "978c9a314bd8dc99be594bc3c175faaa9794be04a5a5e153caba6915336cebac"
dependencies = [
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
2023-05-25 18:41:40 +00:00
version = "1.0.40"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-25 18:41:40 +00:00
checksum = "f9456a42c5b0d803c8cd86e73dd7cc9edd429499f37a3550d286d5e86720569f"
dependencies = [
"proc-macro2",
"quote",
2023-05-25 18:41:40 +00:00
"syn 2.0.16",
]
2021-09-19 18:21:23 +00:00
[[package]]
name = "thread_local"
2023-03-10 03:30:31 +00:00
version = "1.1.7"
2021-09-19 18:21:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-10 03:30:31 +00:00
checksum = "3fdd6f064ccff2d6567adcb3873ca630700f00b5ad3f060c25b5dcfd9a4ce152"
2021-09-19 18:21:23 +00:00
dependencies = [
2023-03-10 03:30:31 +00:00
"cfg-if",
2021-09-19 18:21:23 +00:00
"once_cell",
]
[[package]]
name = "time"
2023-05-25 18:41:40 +00:00
version = "0.3.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-25 18:41:40 +00:00
checksum = "8f3403384eaacbca9923fa06940178ac13e4edb725486d70e8e15881d0c836cc"
dependencies = [
2022-02-11 17:20:51 +00:00
"itoa",
2023-03-10 03:30:31 +00:00
"serde",
"time-core",
"time-macros",
]
[[package]]
name = "time-core"
2023-05-25 18:41:40 +00:00
version = "0.1.1"
2023-03-10 03:30:31 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-25 18:41:40 +00:00
checksum = "7300fbefb4dadc1af235a9cef3737cea692a9d97e1b9cbcd4ebdae6f8868e6fb"
2023-03-10 03:30:31 +00:00
[[package]]
name = "time-macros"
2023-05-25 18:41:40 +00:00
version = "0.2.9"
2023-03-10 03:30:31 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-25 18:41:40 +00:00
checksum = "372950940a5f07bf38dbe211d7283c9e6d7327df53794992d293e534c733d09b"
2023-03-10 03:30:31 +00:00
dependencies = [
"time-core",
]
[[package]]
name = "tinyvec"
version = "1.6.0"
2020-10-03 00:46:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
2020-10-03 00:46:54 +00:00
dependencies = [
"tinyvec_macros",
]
[[package]]
name = "tinyvec_macros"
2023-03-10 03:30:31 +00:00
version = "0.1.1"
2020-10-03 00:46:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-10 03:30:31 +00:00
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
2020-10-03 00:46:54 +00:00
[[package]]
name = "tokio"
2023-05-25 18:41:40 +00:00
version = "1.28.1"
2021-02-10 20:37:44 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-25 18:41:40 +00:00
checksum = "0aa32867d44e6f2ce3385e89dceb990188b8bb0fb25b0cf576647a6f98ac5105"
2021-02-10 20:37:44 +00:00
dependencies = [
2022-09-28 23:34:07 +00:00
"autocfg",
2021-03-10 02:14:42 +00:00
"bytes",
2021-02-10 20:37:44 +00:00
"libc",
2022-02-26 18:28:23 +00:00
"mio",
2021-02-10 20:37:44 +00:00
"parking_lot",
2021-03-10 02:14:42 +00:00
"pin-project-lite",
2021-02-10 20:37:44 +00:00
"signal-hook-registry",
2022-02-26 18:28:23 +00:00
"socket2",
2021-09-19 18:21:23 +00:00
"tokio-macros",
"tracing",
2023-05-25 18:41:40 +00:00
"windows-sys 0.48.0",
2021-02-10 20:37:44 +00:00
]
2021-09-19 18:21:23 +00:00
[[package]]
name = "tokio-io-timeout"
2022-01-18 17:36:30 +00:00
version = "1.2.0"
2021-09-19 18:21:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-18 17:36:30 +00:00
checksum = "30b74022ada614a1b4834de765f9bb43877f910cc8ce4be40e89042c9223a8bf"
2021-09-19 18:21:23 +00:00
dependencies = [
"pin-project-lite",
"tokio",
]
[[package]]
name = "tokio-macros"
2023-05-25 18:41:40 +00:00
version = "2.1.0"
2021-09-19 18:21:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-25 18:41:40 +00:00
checksum = "630bdcf245f78637c13ec01ffae6187cca34625e8c63150d424b59e55af2675e"
2021-09-19 18:21:23 +00:00
dependencies = [
"proc-macro2",
"quote",
2023-05-25 18:41:40 +00:00
"syn 2.0.16",
2021-09-19 18:21:23 +00:00
]
2024-02-01 22:32:17 +00:00
[[package]]
name = "tokio-rustls"
version = "0.24.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081"
dependencies = [
"rustls",
"tokio",
]
2021-09-19 18:21:23 +00:00
[[package]]
name = "tokio-stream"
2023-05-25 18:41:40 +00:00
version = "0.1.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-25 18:41:40 +00:00
checksum = "397c988d37662c7dda6d2208364a706264bf3d6138b11d436cbac0ad38832842"
dependencies = [
"futures-core",
2021-03-10 02:14:42 +00:00
"pin-project-lite",
"tokio",
]
2022-02-26 18:28:23 +00:00
[[package]]
name = "tokio-util"
2023-05-25 18:41:40 +00:00
version = "0.7.8"
2022-02-26 18:28:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-25 18:41:40 +00:00
checksum = "806fe8c2c87eccc8b3267cbae29ed3ab2d0bd37fca70ab622e46aaa9375ddb7d"
2022-02-26 18:28:23 +00:00
dependencies = [
"bytes",
"futures-core",
"futures-sink",
"pin-project-lite",
"tokio",
2022-04-04 01:29:20 +00:00
"tracing",
2022-02-26 18:28:23 +00:00
]
[[package]]
name = "tonic"
2023-03-10 03:30:31 +00:00
version = "0.8.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-10 03:30:31 +00:00
checksum = "8f219fad3b929bef19b1f86fbc0358d35daed8f2cac972037ac0dc10bbb8d5fb"
dependencies = [
"async-stream",
"async-trait",
"axum",
2023-03-10 03:30:31 +00:00
"base64 0.13.1",
"bytes",
"futures-core",
"futures-util",
"h2",
2024-02-01 22:32:17 +00:00
"http 0.2.9",
"http-body",
"hyper",
"hyper-timeout",
"percent-encoding",
"pin-project",
2022-09-28 23:34:07 +00:00
"prost",
"prost-derive",
"tokio",
"tokio-stream",
2022-09-28 23:34:07 +00:00
"tokio-util",
"tower",
"tower-layer",
"tower-service",
"tracing",
"tracing-futures",
]
[[package]]
2023-05-25 18:41:40 +00:00
name = "tonic"
version = "0.9.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-25 18:41:40 +00:00
checksum = "3082666a3a6433f7f511c7192923fa1fe07c69332d3c6a2e6bb040b569199d5a"
dependencies = [
2023-05-25 18:41:40 +00:00
"async-trait",
"axum",
"base64 0.21.2",
"bytes",
"futures-core",
"futures-util",
"h2",
2024-02-01 22:32:17 +00:00
"http 0.2.9",
2023-05-25 18:41:40 +00:00
"http-body",
"hyper",
"hyper-timeout",
"percent-encoding",
"pin-project",
"prost",
"tokio",
"tokio-stream",
"tower",
"tower-layer",
"tower-service",
"tracing",
2021-09-19 18:21:23 +00:00
]
[[package]]
name = "tower"
2022-07-02 15:56:37 +00:00
version = "0.4.13"
2021-09-19 18:21:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-02 15:56:37 +00:00
checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c"
2021-09-19 18:21:23 +00:00
dependencies = [
"futures-core",
"futures-util",
"indexmap",
"pin-project",
2021-10-21 16:17:47 +00:00
"pin-project-lite",
2021-09-19 18:21:23 +00:00
"rand",
"slab",
"tokio",
2022-09-28 23:34:07 +00:00
"tokio-util",
2021-09-19 18:21:23 +00:00
"tower-layer",
"tower-service",
"tracing",
]
[[package]]
name = "tower-layer"
2023-03-10 03:30:31 +00:00
version = "0.3.2"
2021-09-19 18:21:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-10 03:30:31 +00:00
checksum = "c20c8dbed6283a09604c3e69b4b7eeb54e298b8a600d4d5ecb5ad39de609f1d0"
2021-09-19 18:21:23 +00:00
[[package]]
name = "tower-service"
2022-07-02 15:56:37 +00:00
version = "0.3.2"
2021-09-19 18:21:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-02 15:56:37 +00:00
checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52"
2021-09-19 18:21:23 +00:00
2020-09-10 14:27:31 +00:00
[[package]]
name = "tracing"
2023-03-10 03:30:31 +00:00
version = "0.1.37"
2020-09-10 14:27:31 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-10 03:30:31 +00:00
checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8"
2020-09-10 14:27:31 +00:00
dependencies = [
2021-03-10 02:14:42 +00:00
"cfg-if",
2021-09-19 18:21:23 +00:00
"log",
2021-03-10 02:14:42 +00:00
"pin-project-lite",
2021-09-19 18:21:23 +00:00
"tracing-attributes",
2020-09-10 14:27:31 +00:00
"tracing-core",
]
2021-09-19 18:21:23 +00:00
[[package]]
name = "tracing-actix-web"
2023-05-25 18:41:40 +00:00
version = "0.7.5"
2021-10-27 16:43:22 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-25 18:41:40 +00:00
checksum = "ce52ffaf2d544e317d3bef63f49a6a22022866505fa4840a4339b1756834a2a9"
2021-09-19 18:21:23 +00:00
dependencies = [
"actix-web",
"opentelemetry",
2021-10-11 19:14:34 +00:00
"pin-project",
2021-09-19 18:21:23 +00:00
"tracing",
"tracing-opentelemetry",
"uuid",
]
[[package]]
name = "tracing-attributes"
2023-05-25 18:41:40 +00:00
version = "0.1.24"
2021-09-19 18:21:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-25 18:41:40 +00:00
checksum = "0f57e3ca2a01450b1a921183a9c9cbfda207fd822cef4ccb00a65402cbba7a74"
2021-09-19 18:21:23 +00:00
dependencies = [
"proc-macro2",
"quote",
2023-05-25 18:41:40 +00:00
"syn 2.0.16",
2021-09-19 18:21:23 +00:00
]
[[package]]
name = "tracing-awc"
2023-05-25 18:41:40 +00:00
version = "0.1.7"
2021-10-27 16:43:22 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-25 18:41:40 +00:00
checksum = "eaa1a68fce4d1a7fad459f81ddcafbdd7c6f6bcda5c7e07d5f42db637931fac7"
2021-09-19 18:21:23 +00:00
dependencies = [
"actix-http",
2021-12-03 20:42:30 +00:00
"actix-service",
2021-09-19 18:21:23 +00:00
"awc",
"bytes",
"futures-core",
"opentelemetry",
2021-12-03 20:42:30 +00:00
"pin-project-lite",
2021-09-19 18:21:23 +00:00
"tracing",
"tracing-opentelemetry",
]
2020-09-10 14:27:31 +00:00
[[package]]
name = "tracing-core"
2023-05-25 18:41:40 +00:00
version = "0.1.31"
2021-09-19 18:21:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-25 18:41:40 +00:00
checksum = "0955b8137a1df6f1a2e9a37d8a6656291ff0297c1a97c24e0d8425fe2312f79a"
2021-09-19 18:21:23 +00:00
dependencies = [
2022-07-02 15:56:37 +00:00
"once_cell",
2022-02-04 17:42:22 +00:00
"valuable",
2021-09-19 18:21:23 +00:00
]
[[package]]
name = "tracing-error"
2021-10-25 01:48:19 +00:00
version = "0.2.0"
2021-09-19 18:21:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-25 01:48:19 +00:00
checksum = "d686ec1c0f384b1277f097b2f279a2ecc11afe8c133c1aabf036a27cb4cd206e"
2021-09-19 18:21:23 +00:00
dependencies = [
"tracing",
"tracing-subscriber",
]
[[package]]
name = "tracing-futures"
version = "0.2.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "97d095ae15e245a057c8e8451bab9b3ee1e1f68e9ba2b4fbc18d0ac5237835f2"
dependencies = [
"pin-project",
"tracing",
]
[[package]]
name = "tracing-log"
version = "0.1.3"
2020-09-10 14:27:31 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "78ddad33d2d10b1ed7eb9d1f518a5674713876e97e5bb9b7345a7984fbb4f922"
2020-09-10 14:27:31 +00:00
dependencies = [
"lazy_static",
2021-09-19 18:21:23 +00:00
"log",
"tracing-core",
2020-09-10 14:27:31 +00:00
]
2021-09-19 18:21:23 +00:00
[[package]]
name = "tracing-opentelemetry"
2023-05-25 18:41:40 +00:00
version = "0.19.0"
2021-09-19 18:21:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-25 18:41:40 +00:00
checksum = "00a39dcf9bfc1742fa4d6215253b33a6e474be78275884c216fc2a06267b3600"
2021-09-19 18:21:23 +00:00
dependencies = [
2022-07-02 15:56:37 +00:00
"once_cell",
2021-09-19 18:21:23 +00:00
"opentelemetry",
"tracing",
"tracing-core",
"tracing-log",
"tracing-subscriber",
]
[[package]]
name = "tracing-subscriber"
2023-05-25 18:41:40 +00:00
version = "0.3.17"
2021-09-19 18:21:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-25 18:41:40 +00:00
checksum = "30a651bc37f915e81f087d86e62a18eec5f79550c7faff886f7090b4ea757c77"
2021-09-19 18:21:23 +00:00
dependencies = [
"matchers",
2023-03-10 03:30:31 +00:00
"nu-ansi-term",
2022-07-02 15:56:37 +00:00
"once_cell",
2021-09-19 18:21:23 +00:00
"regex",
"sharded-slab",
"smallvec",
"thread_local",
"tracing",
"tracing-core",
"tracing-log",
]
[[package]]
name = "try-lock"
2023-03-10 03:30:31 +00:00
version = "0.2.4"
2021-09-19 18:21:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-10 03:30:31 +00:00
checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed"
2021-09-19 18:21:23 +00:00
[[package]]
name = "typenum"
2023-03-10 03:30:31 +00:00
version = "1.16.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-10 03:30:31 +00:00
checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba"
[[package]]
name = "unicode-bidi"
2023-05-25 18:41:40 +00:00
version = "0.3.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-25 18:41:40 +00:00
checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460"
2022-06-06 21:03:09 +00:00
[[package]]
name = "unicode-ident"
2023-05-25 18:41:40 +00:00
version = "1.0.9"
2022-06-06 21:03:09 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-25 18:41:40 +00:00
checksum = "b15811caf2415fb889178633e7724bad2509101cde276048e013b9def5e51fa0"
2022-06-06 21:03:09 +00:00
[[package]]
name = "unicode-normalization"
2022-09-28 23:34:07 +00:00
version = "0.1.22"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921"
dependencies = [
2020-12-01 17:57:19 +00:00
"tinyvec",
]
2024-02-01 22:32:17 +00:00
[[package]]
name = "untrusted"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
[[package]]
name = "url"
2022-09-28 23:34:07 +00:00
version = "2.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:34:07 +00:00
checksum = "0d68c799ae75762b8c3fe375feb6600ef5602c883c5d21eb51c09f22b83c4643"
dependencies = [
2020-12-01 17:57:19 +00:00
"form_urlencoded",
"idna",
"percent-encoding",
]
2023-05-25 18:41:40 +00:00
[[package]]
name = "urlencoding"
version = "2.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e8db7427f936968176eaa7cdf81b7f98b980b18495ec28f1b5791ac3bfe3eea9"
[[package]]
name = "utf8parse"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a"
2021-09-19 18:21:23 +00:00
[[package]]
name = "uuid"
2023-05-25 18:41:40 +00:00
version = "1.3.3"
2021-09-19 18:21:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-25 18:41:40 +00:00
checksum = "345444e32442451b267fc254ae85a209c64be56d2890e601a0c37ff0c3c5ecd2"
2021-09-19 18:21:23 +00:00
dependencies = [
"getrandom",
]
2022-02-04 17:42:22 +00:00
[[package]]
name = "valuable"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d"
[[package]]
name = "version_check"
2021-12-30 17:06:40 +00:00
version = "0.9.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-30 17:06:40 +00:00
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
2021-09-19 18:21:23 +00:00
[[package]]
name = "want"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0"
dependencies = [
"log",
"try-lock",
]
2022-03-23 14:46:30 +00:00
[[package]]
name = "wasi"
version = "0.11.0+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
2024-02-01 22:32:17 +00:00
[[package]]
name = "webpki-roots"
version = "0.25.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1778a42e8b3b90bff8d0f5032bf22250792889a5cdc752aa0020c84abe3aaf10"
[[package]]
name = "webpki-roots"
version = "0.26.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0de2cfda980f21be5a7ed2eadb3e6fe074d56022bea2cdeb1a62eb220fc04188"
dependencies = [
"rustls-pki-types",
]
[[package]]
2023-05-25 18:41:40 +00:00
name = "winapi"
version = "0.3.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-25 18:41:40 +00:00
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
dependencies = [
2023-05-25 18:41:40 +00:00
"winapi-i686-pc-windows-gnu",
"winapi-x86_64-pc-windows-gnu",
]
[[package]]
2023-05-25 18:41:40 +00:00
name = "winapi-i686-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-25 18:41:40 +00:00
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
[[package]]
2023-05-25 18:41:40 +00:00
name = "winapi-x86_64-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-25 18:41:40 +00:00
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
[[package]]
2023-05-25 18:41:40 +00:00
name = "windows-sys"
version = "0.45.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-25 18:41:40 +00:00
checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
dependencies = [
2023-05-25 18:41:40 +00:00
"windows-targets 0.42.2",
]
[[package]]
2023-05-25 18:41:40 +00:00
name = "windows-sys"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-25 18:41:40 +00:00
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
dependencies = [
"windows-targets 0.48.0",
]
2021-09-19 18:21:23 +00:00
[[package]]
2023-05-25 18:41:40 +00:00
name = "windows-targets"
version = "0.42.2"
2021-09-19 18:21:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-25 18:41:40 +00:00
checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
2021-09-19 18:21:23 +00:00
dependencies = [
2023-05-25 18:41:40 +00:00
"windows_aarch64_gnullvm 0.42.2",
"windows_aarch64_msvc 0.42.2",
"windows_i686_gnu 0.42.2",
"windows_i686_msvc 0.42.2",
"windows_x86_64_gnu 0.42.2",
"windows_x86_64_gnullvm 0.42.2",
"windows_x86_64_msvc 0.42.2",
2021-09-19 18:21:23 +00:00
]
[[package]]
2023-05-25 18:41:40 +00:00
name = "windows-targets"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-25 18:41:40 +00:00
checksum = "7b1eb6f0cd7c80c79759c929114ef071b87354ce476d9d94271031c0497adfd5"
dependencies = [
2023-05-25 18:41:40 +00:00
"windows_aarch64_gnullvm 0.48.0",
"windows_aarch64_msvc 0.48.0",
"windows_i686_gnu 0.48.0",
"windows_i686_msvc 0.48.0",
"windows_x86_64_gnu 0.48.0",
"windows_x86_64_gnullvm 0.48.0",
"windows_x86_64_msvc 0.48.0",
]
[[package]]
2023-05-25 18:41:40 +00:00
name = "windows_aarch64_gnullvm"
version = "0.42.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-25 18:41:40 +00:00
checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
[[package]]
2023-05-25 18:41:40 +00:00
name = "windows_aarch64_gnullvm"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-25 18:41:40 +00:00
checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc"
[[package]]
2023-05-25 18:41:40 +00:00
name = "windows_aarch64_msvc"
version = "0.42.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-25 18:41:40 +00:00
checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
2022-02-26 18:28:23 +00:00
[[package]]
2023-05-25 18:41:40 +00:00
name = "windows_aarch64_msvc"
version = "0.48.0"
2022-02-26 18:28:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-25 18:41:40 +00:00
checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3"
2022-02-26 18:28:23 +00:00
2023-03-10 03:30:31 +00:00
[[package]]
2023-05-25 18:41:40 +00:00
name = "windows_i686_gnu"
version = "0.42.2"
2023-03-10 03:30:31 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-25 18:41:40 +00:00
checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
2023-03-10 03:30:31 +00:00
[[package]]
2023-05-25 18:41:40 +00:00
name = "windows_i686_gnu"
version = "0.48.0"
2023-03-10 03:30:31 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-25 18:41:40 +00:00
checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241"
2023-03-10 03:30:31 +00:00
[[package]]
2023-05-25 18:41:40 +00:00
name = "windows_i686_msvc"
version = "0.42.2"
2023-03-10 03:30:31 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-25 18:41:40 +00:00
checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
2023-03-10 03:30:31 +00:00
2022-02-26 18:28:23 +00:00
[[package]]
2023-05-25 18:41:40 +00:00
name = "windows_i686_msvc"
version = "0.48.0"
2022-02-26 18:28:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-25 18:41:40 +00:00
checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00"
2022-02-26 18:28:23 +00:00
[[package]]
2023-05-25 18:41:40 +00:00
name = "windows_x86_64_gnu"
version = "0.42.2"
2022-02-26 18:28:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-25 18:41:40 +00:00
checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
2022-02-26 18:28:23 +00:00
[[package]]
2023-05-25 18:41:40 +00:00
name = "windows_x86_64_gnu"
version = "0.48.0"
2022-02-26 18:28:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-25 18:41:40 +00:00
checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1"
2022-02-26 18:28:23 +00:00
[[package]]
2023-05-25 18:41:40 +00:00
name = "windows_x86_64_gnullvm"
version = "0.42.2"
2022-02-26 18:28:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-25 18:41:40 +00:00
checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
2022-02-26 18:28:23 +00:00
[[package]]
2023-03-10 03:30:31 +00:00
name = "windows_x86_64_gnullvm"
2023-05-25 18:41:40 +00:00
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953"
[[package]]
name = "windows_x86_64_msvc"
version = "0.42.2"
2022-02-26 18:28:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-25 18:41:40 +00:00
checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
2022-07-02 15:56:37 +00:00
[[package]]
2023-03-10 03:30:31 +00:00
name = "windows_x86_64_msvc"
2023-05-25 18:41:40 +00:00
version = "0.48.0"
2022-07-02 15:56:37 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-25 18:41:40 +00:00
checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a"