pict-rs/Cargo.lock

3149 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"
2022-02-26 18:22:30 +00:00
version = "0.5.0"
2020-09-10 16:12:42 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-26 18:22:30 +00:00
checksum = "57a7559404a7f3573127aab53c08ce37a6c6a315c374a31070f3c91cd1b4a7fe"
2020-09-10 16:12:42 +00:00
dependencies = [
"bitflags",
"bytes",
"futures-core",
"futures-sink",
"log",
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-06-06 21:04:00 +00:00
"tokio-util 0.7.3",
2020-09-10 16:12:42 +00:00
]
[[package]]
name = "actix-form-data"
2022-03-08 18:26:52 +00:00
version = "0.6.2"
2020-09-14 15:52:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-08 18:26:52 +00:00
checksum = "dd2788a4c359a372371292ef9903cf26759abf3ddf00ed710061808b1414fc75"
dependencies = [
"actix-multipart",
"actix-rt",
"actix-web",
2021-09-06 00:45:03 +00:00
"futures-util",
"mime",
"thiserror",
"tokio",
2020-06-14 18:56:42 +00:00
"tracing",
]
[[package]]
name = "actix-http"
2022-07-02 15:52:24 +00:00
version = "3.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-02 15:52:24 +00:00
checksum = "cfeeac0149fc76f58894a08f221282975f4c6659d2cb31ffd22a3be7a83c5771"
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",
2022-04-03 20:21:14 +00:00
"ahash",
2021-10-31 18:45:18 +00:00
"base64",
"bitflags",
"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",
2022-06-21 16:27:57 +00:00
"tracing",
]
[[package]]
name = "actix-macros"
2021-10-20 23:16:53 +00:00
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-20 23:16:53 +00:00
checksum = "465a6172cf69b960917811022d8f29bc0b7fa1398bc4f78b3c466673db1213b6"
dependencies = [
"quote",
"syn",
]
[[package]]
name = "actix-multipart"
2022-02-26 18:22:30 +00:00
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-26 18:22:30 +00:00
checksum = "c9edfb0e7663d7fe18c8d5b668c9c1bcf79176b1dcc9d4da9592503209a6bfb0"
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",
"httparse",
2021-04-02 18:11:20 +00:00
"local-waker",
"log",
"mime",
"twoway",
]
[[package]]
name = "actix-router"
2022-02-26 18:22:30 +00:00
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-26 18:22:30 +00:00
checksum = "eb60846b52c118f2f04a56cc90880a274271c489b2498623d58176f8ca21fa80"
dependencies = [
"bytestring",
2021-09-09 19:34:43 +00:00
"firestorm",
"http",
"log",
"regex",
2022-02-26 18:22:30 +00:00
"serde",
]
[[package]]
name = "actix-rt"
2022-03-09 00:48:08 +00:00
version = "2.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-09 00:48:08 +00:00
checksum = "7ea16c295198e958ef31930a6ef37d0fb64e9ca3b6116e6b93a8bdae96ee1000"
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"
version = "2.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0da34f8e659ea1b077bb4637948b815cd3768ad5a188fdcd74ff4d84240cd824"
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",
]
[[package]]
name = "actix-tls"
2022-02-26 18:22:30 +00:00
version = "3.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-26 18:22:30 +00:00
checksum = "9fde0cf292f7cdc7f070803cb9a0d45c018441321a78b1042ffbbb81ec333297"
dependencies = [
2020-09-14 15:52:18 +00:00
"actix-codec",
2021-02-10 22:57:42 +00:00
"actix-rt",
"actix-service",
2020-09-14 15:52:18 +00:00
"actix-utils",
2021-02-10 22:57:42 +00:00
"futures-core",
"http",
"log",
2021-11-23 00:24:05 +00:00
"pin-project-lite",
2021-12-03 20:21:31 +00:00
"tokio-rustls",
2022-06-06 21:04:00 +00:00
"tokio-util 0.7.3",
2021-12-28 17:03:53 +00:00
"webpki-roots",
]
2020-09-10 16:12:42 +00:00
[[package]]
name = "actix-utils"
2021-04-17 19:59:42 +00:00
version = "3.0.0"
2020-09-10 16:12:42 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-17 19:59:42 +00:00
checksum = "e491cbaac2e7fc788dfff99ff48ef317e23b3cf63dbaf7aaab6418f40f92aa94"
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"
2022-06-21 16:27:57 +00:00
version = "4.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-21 16:27:57 +00:00
checksum = "a27e8fe9ba4ae613c21f677c2cfaf0696c3744030c6f485b34634e502d6bb379"
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",
2022-04-03 20:21:14 +00:00
"ahash",
"bytes",
2022-02-26 18:22:30 +00:00
"bytestring",
2021-06-26 18:10:28 +00:00
"cfg-if",
"derive_more",
"encoding_rs",
"futures-core",
"futures-util",
2022-02-11 17:23:48 +00:00
"itoa",
2021-04-02 18:11:20 +00:00
"language-tags",
"log",
"mime",
2021-04-02 18:11:20 +00:00
"once_cell",
2021-12-03 20:21:31 +00:00
"pin-project-lite",
"regex",
2022-02-26 18:22:30 +00:00
"serde",
"serde_json",
"serde_urlencoded",
2021-02-10 22:57:42 +00:00
"smallvec",
"socket2",
2022-02-26 18:22:30 +00:00
"time",
"url",
]
2022-03-29 01:47:46 +00:00
[[package]]
name = "addr2line"
version = "0.17.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b9ecd88a8c8378ca913a680cd98f0f13ac67383d35993f86c90a70e3f137816b"
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",
]
[[package]]
name = "aho-corasick"
version = "0.7.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1e37cfd5e7657ada45f742d6e99ca5788580b5c529dc78faf11ece6dc702656f"
dependencies = [
"memchr",
]
2020-09-10 16:12:42 +00:00
[[package]]
name = "ansi_term"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2"
dependencies = [
2021-02-10 22:57:42 +00:00
"winapi",
2020-06-07 00:54:06 +00:00
]
[[package]]
name = "anyhow"
2022-06-21 16:27:57 +00:00
version = "1.0.58"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-21 16:27:57 +00:00
checksum = "bb07d2053ccdbe10e2af2995a2f116c1330396493dc1269f6a91d0ae82e19704"
2021-09-18 21:29:30 +00:00
[[package]]
name = "async-stream"
version = "0.3.3"
2021-09-18 21:29:30 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dad5c83079eae9969be7fadefe640a1c566901f05ff91ab221de4b6f68d9507e"
2021-09-18 21:29:30 +00:00
dependencies = [
"async-stream-impl",
"futures-core",
]
[[package]]
name = "async-stream-impl"
version = "0.3.3"
2021-09-18 21:29:30 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "10f203db73a71dfa2fb6dd22763990fa26f3d2625a6da2da900d23b87d26be27"
2021-09-18 21:29:30 +00:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "async-trait"
2022-06-06 21:04:00 +00:00
version = "0.1.56"
2021-09-18 21:29:30 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-06 21:04:00 +00:00
checksum = "96cf8829f67d2eab0b2dfa42c5d0ef737e0724e4a82b01b3e292456202b19716"
2021-09-18 21:29:30 +00:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "atty"
version = "0.2.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
dependencies = [
"hermit-abi",
"libc",
2021-02-10 22:57:42 +00:00
"winapi",
]
[[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"
[[package]]
name = "awc"
2022-03-08 17:43:06 +00:00
version = "3.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-08 17:43:06 +00:00
checksum = "65c60c44fbf3c8cee365e86b97d706e513b733c4eeb16437b45b88d2fffe889a"
dependencies = [
2020-09-14 15:52:18 +00:00
"actix-codec",
"actix-http",
"actix-rt",
"actix-service",
2021-11-16 21:39:18 +00:00
"actix-tls",
"actix-utils",
2022-04-03 20:21:14 +00:00
"ahash",
2021-10-31 18:45:18 +00:00
"base64",
"bytes",
2021-06-26 18:10:28 +00:00
"cfg-if",
"derive_more",
"futures-core",
2021-11-16 21:39:18 +00:00
"futures-util",
"h2",
"http",
2022-02-11 17:23:48 +00:00
"itoa",
"log",
"mime",
"percent-encoding",
2021-03-10 02:51:03 +00:00
"pin-project-lite",
"rand",
2021-12-03 20:21:31 +00:00
"rustls",
2022-02-26 18:22:30 +00:00
"serde",
"serde_json",
"serde_urlencoded",
2021-11-16 21:39:18 +00:00
"tokio",
]
[[package]]
name = "aws-creds"
2022-04-29 20:54:54 +00:00
version = "0.29.1"
2022-05-26 14:46:43 +00:00
source = "git+https://github.com/asonix/rust-s3?branch=asonix/generic-client#9e450d0038a29040ba5c47ffa570350c3b1ad976"
dependencies = [
"dirs",
2022-04-03 20:21:14 +00:00
"rust-ini",
2022-02-26 18:22:30 +00:00
"serde",
"serde-xml-rs",
"serde_derive",
2022-04-29 20:54:54 +00:00
"thiserror",
"url",
]
[[package]]
name = "aws-region"
2022-04-29 20:54:54 +00:00
version = "0.24.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-29 20:54:54 +00:00
checksum = "9bdd1c0f4aa70f72812a2f3ec325d6d6162fb80cff093f847b4c394fd78c3643"
dependencies = [
2022-04-29 20:54:54 +00:00
"thiserror",
]
2022-04-11 20:17:54 +00:00
[[package]]
name = "axum"
2022-07-02 15:52:24 +00:00
version = "0.5.11"
2022-04-11 20:17:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-02 15:52:24 +00:00
checksum = "c2cc6e8e8c993cb61a005fab8c1e5093a29199b7253b05a6883999312935c1ff"
2022-04-11 20:17:54 +00:00
dependencies = [
"async-trait",
"axum-core",
"bitflags",
"bytes",
"futures-util",
"http",
"http-body",
"hyper",
"itoa",
"matchit",
"memchr",
"mime",
"percent-encoding",
"pin-project-lite",
"serde",
"sync_wrapper",
"tokio",
"tower",
"tower-http",
"tower-layer",
"tower-service",
]
[[package]]
name = "axum-core"
2022-06-21 16:27:57 +00:00
version = "0.2.6"
2022-04-11 20:17:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-21 16:27:57 +00:00
checksum = "cf4d047478b986f14a13edad31a009e2e05cb241f9805d0d75e4cba4e129ad4d"
2022-04-11 20:17:54 +00:00
dependencies = [
"async-trait",
"bytes",
"futures-util",
"http",
"http-body",
"mime",
]
2022-03-29 01:47:46 +00:00
[[package]]
name = "backtrace"
2022-04-24 22:10:15 +00:00
version = "0.3.65"
2022-03-29 01:47:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-24 22:10:15 +00:00
checksum = "11a17d453482a265fd5f8479f2a3f405566e6ca627837aaddb85af8b1ab8ef61"
2022-03-29 01:47:46 +00:00
dependencies = [
"addr2line",
"cc",
"cfg-if",
"libc",
2022-04-24 22:10:15 +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"
version = "0.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd"
[[package]]
name = "bitflags"
version = "1.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
2022-02-26 18:22:30 +00:00
[[package]]
name = "block-buffer"
version = "0.7.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c0940dc441f31689269e10ac70eb1002a3a1d3ad1390e030043662eb7fe4688b"
dependencies = [
"block-padding",
"byte-tools",
"byteorder",
"generic-array 0.12.4",
]
2021-12-17 02:46:46 +00:00
[[package]]
name = "block-buffer"
2022-02-11 17:23:48 +00:00
version = "0.10.2"
2021-12-17 02:46:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-11 17:23:48 +00:00
checksum = "0bf7fe51849ea569fd452f37822f606a5cabb684dc918707a0193fd4664ff324"
2021-12-17 02:46:46 +00:00
dependencies = [
2022-02-26 18:22:30 +00:00
"generic-array 0.14.5",
]
[[package]]
name = "block-padding"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fa79dedbb091f449f1f39e53edf88d5dbe95f895dae6135a8d7b881fb5af73f5"
dependencies = [
"byte-tools",
2021-12-17 02:46:46 +00:00
]
[[package]]
name = "bumpalo"
2022-06-06 21:04:00 +00:00
version = "3.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-06 21:04:00 +00:00
checksum = "37ccbd214614c6783386c1af30caf03192f17891059cecc394b4fb119e363de3"
2022-02-26 18:22:30 +00:00
[[package]]
name = "byte-tools"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e3b5ca7a04898ad4bcd41c90c5285445ff5b791899bb1b0abdd2a2aa791211d7"
[[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"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c4872d67bab6358e59559027aa3b9157c53d9358c51423c17554809a8858e0f8"
[[package]]
name = "bytestring"
2022-06-21 16:27:57 +00:00
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-21 16:27:57 +00:00
checksum = "86b6a75fd3048808ef06af5cd79712be8111960adaf89d90250974b38fc3928a"
dependencies = [
"bytes",
]
2021-09-12 16:00:29 +00:00
[[package]]
name = "cc"
2022-02-26 18:22:30 +00:00
version = "1.0.73"
2021-09-12 16:00:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-26 18:22:30 +00:00
checksum = "2fff2a6927b3bb87f9595d67196a70493f627687a71d87a0d692242c33f58c11"
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"
2022-07-02 15:52:24 +00:00
version = "3.2.8"
2020-06-07 00:54:06 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-02 15:52:24 +00:00
checksum = "190814073e85d238f31ff738fcb0bf6910cedeb73376c87cd69291028966fd83"
2020-06-07 00:54:06 +00:00
dependencies = [
"atty",
"bitflags",
2022-03-25 03:06:29 +00:00
"clap_derive",
2022-04-24 22:10:15 +00:00
"clap_lex",
2022-03-25 03:06:29 +00:00
"indexmap",
2022-06-21 16:27:57 +00:00
"once_cell",
2020-06-07 00:54:06 +00:00
"strsim",
2022-03-25 03:06:29 +00:00
"termcolor",
2020-06-07 00:54:06 +00:00
"textwrap",
2022-03-25 03:06:29 +00:00
]
[[package]]
name = "clap_derive"
2022-07-02 15:52:24 +00:00
version = "3.2.7"
2022-03-25 03:06:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-02 15:52:24 +00:00
checksum = "759bf187376e1afa7b85b959e6a664a3e7a95203415dba952ad19139e798f902"
2022-03-25 03:06:29 +00:00
dependencies = [
"heck 0.4.0",
"proc-macro-error",
"proc-macro2",
"quote",
"syn",
2020-06-07 00:54:06 +00:00
]
2022-04-24 22:10:15 +00:00
[[package]]
name = "clap_lex"
2022-07-02 15:52:24 +00:00
version = "0.2.4"
2022-04-24 22:10:15 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-02 15:52:24 +00:00
checksum = "2850f2f5a82cbf437dd5af4d49848fbdfc27c157c3d010345776f952765261c5"
2022-04-24 22:10:15 +00:00
dependencies = [
"os_str_bytes",
]
2022-03-29 01:47:46 +00:00
[[package]]
name = "color-eyre"
version = "0.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8ebf286c900a6d5867aeff75cfee3192857bb7f24b547d4f0df2ed6baa812c90"
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",
]
[[package]]
name = "config"
2022-04-15 18:03:54 +00:00
version = "0.13.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-15 18:03:54 +00:00
checksum = "3ea917b74b6edfb5024e3b55d3c8f710b5f4ed92646429601a42e96f0812b31b"
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",
"toml",
"yaml-rust",
]
2021-12-17 02:46:46 +00:00
[[package]]
name = "console-api"
2022-05-26 14:46:43 +00:00
version = "0.3.0"
2021-12-17 02:46:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-26 14:46:43 +00:00
checksum = "06c5fd425783d81668ed68ec98408a80498fb4ae2fd607797539e1a9dfa3618f"
2021-12-17 02:46:46 +00:00
dependencies = [
2022-05-26 14:46:43 +00:00
"prost 0.10.4",
2022-04-15 18:03:54 +00:00
"prost-types 0.10.1",
2022-05-26 14:46:43 +00:00
"tonic 0.7.2",
2021-12-17 02:46:46 +00:00
"tracing-core",
]
[[package]]
name = "console-subscriber"
2022-05-26 14:46:43 +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-05-26 14:46:43 +00:00
checksum = "31432bc31ff8883bf6a693a79371862f73087822470c82d6a1ec778781ee3978"
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-04-15 18:03:54 +00:00
"prost-types 0.10.1",
2022-02-26 18:22:30 +00:00
"serde",
2021-12-17 02:46:46 +00:00
"serde_json",
"thread_local",
"tokio",
"tokio-stream",
2022-05-26 14:46:43 +00:00
"tonic 0.7.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"
version = "0.2.2"
2020-09-10 16:12:42 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "59a6001667ab124aebae2a495118e11d30984c3a653e99d86d58971708cf5e4b"
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"
2022-06-21 16:27:57 +00:00
version = "0.5.5"
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 = "4c02a4d71819009c192cf4872265391563fd6a84c81ff2c0f2a7026ca4c1d85c"
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"
2022-06-21 16:27:57 +00:00
version = "0.9.9"
2020-12-03 17:38:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-21 16:27:57 +00:00
checksum = "07db9d94cbd326813772c968ccd25999e5f8ae22f4f8d1b11effa37ef6ce281d"
2020-12-03 17:38:28 +00:00
dependencies = [
"autocfg",
2021-02-10 22:57:42 +00:00
"cfg-if",
"crossbeam-utils",
"memoffset",
2022-06-21 16:27:57 +00:00
"once_cell",
"scopeguard",
]
2020-12-03 17:38:28 +00:00
[[package]]
name = "crossbeam-utils"
2022-07-02 15:52:24 +00:00
version = "0.8.10"
2020-12-03 17:38:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-02 15:52:24 +00:00
checksum = "7d82ee10ce34d7bc12c2122495e7593a9c41347ecdd64185af4ecf72cb1a7f83"
2020-12-03 17:38:28 +00:00
dependencies = [
2021-02-10 22:57:42 +00:00
"cfg-if",
2022-06-21 16:27:57 +00:00
"once_cell",
2020-12-03 17:38:28 +00:00
]
2021-12-17 02:46:46 +00:00
[[package]]
name = "crypto-common"
2022-02-26 18:22:30 +00:00
version = "0.1.3"
2021-12-17 02:46:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-26 18:22:30 +00:00
checksum = "57952ca27b5e3606ff4dd79b0020231aaf9d6aa76dc05fd30137538c50bd3ce8"
2021-12-17 02:46:46 +00:00
dependencies = [
2022-02-26 18:22:30 +00:00
"generic-array 0.14.5",
"typenum",
2021-12-17 02:46:46 +00:00
]
[[package]]
name = "dashmap"
2022-05-28 17:39:23 +00:00
version = "5.3.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-28 17:39:23 +00:00
checksum = "3495912c9c1ccf2e18976439f4443f3fee0fd61f424ff99fde6a66b15ecb448f"
dependencies = [
"cfg-if",
2022-06-21 16:27:57 +00:00
"hashbrown",
2022-04-29 19:41:03 +00:00
"lock_api",
2022-05-28 17:39:23 +00:00
"parking_lot_core 0.9.3",
]
[[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",
"syn",
]
2022-02-26 18:22:30 +00:00
[[package]]
name = "digest"
version = "0.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f3d0c8c8752312f9713efd397ff63acb9f85585afbf179282e720e7704954dd5"
dependencies = [
"generic-array 0.12.4",
]
2021-12-17 02:46:46 +00:00
[[package]]
name = "digest"
2022-02-26 18:22:30 +00:00
version = "0.10.3"
2021-12-17 02:46:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-26 18:22:30 +00:00
checksum = "f2fb860ca6fafa5552fb6d0e816a69c8e49f0908bf524e30a90d97c85892d506"
2021-12-17 02:46:46 +00:00
dependencies = [
2022-02-11 17:23:48 +00:00
"block-buffer 0.10.2",
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 = "dirs"
version = "4.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ca3aa72a6f96ea37bbc5aa912f6788242832f75369bdfdadcb0e38423f100059"
dependencies = [
"dirs-sys",
]
[[package]]
name = "dirs-sys"
version = "0.3.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1b1d1d91c932ef41c0f2663aa8b0ca0342d444d842c06914aa0a7e352d0bada6"
dependencies = [
"libc",
"redox_users",
"winapi",
]
[[package]]
name = "dlv-list"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0688c2a7f92e427f44895cd63841bff7b29f8d7a1648b9e7e07a4a365b2e1257"
[[package]]
name = "either"
2022-07-02 15:52:24 +00:00
version = "1.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-02 15:52:24 +00:00
checksum = "3f107b87b6afc2a64fd13cac55fe06d6c8859f12d4b14cbcdd2c67d0976781be"
[[package]]
name = "encoding_rs"
2022-04-07 02:40:49 +00:00
version = "0.8.31"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-07 02:40:49 +00:00
checksum = "9852635589dc9f9ea1b6fe9f05b50ef208c85c834a562f0c6abb1c475736ec2b"
dependencies = [
2021-02-10 22:57:42 +00:00
"cfg-if",
]
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",
]
2022-02-26 18:22:30 +00:00
[[package]]
name = "fake-simd"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e88a8acf291dafb59c2d96e8f59828f3838bb1a70398823ade51a84de6a6deed"
[[package]]
name = "fastrand"
2022-01-24 04:39:03 +00:00
version = "1.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-24 04:39:03 +00:00
checksum = "c3fcf0cee53519c866c09b5de1f6c56ff9d647101f81c1964fa632e148896cdf"
dependencies = [
"instant",
]
2021-09-09 19:34:43 +00:00
[[package]]
name = "firestorm"
2022-05-26 14:46:43 +00:00
version = "0.5.1"
2021-09-09 19:34:43 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-26 14:46:43 +00:00
checksum = "2c5f6c2c942da57e2aaaa84b8a521489486f14e75e7fa91dab70aba913975f98"
2021-09-09 19:34:43 +00:00
2021-12-17 02:46:46 +00:00
[[package]]
name = "fixedbitset"
2022-01-06 18:35:13 +00:00
version = "0.4.1"
2021-12-17 02:46:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-06 18:35:13 +00:00
checksum = "279fb028e20b3c4c320317955b77c5e0c9701f05a1d309905d6fc702cdc5053e"
2021-12-17 02:46:46 +00:00
[[package]]
name = "flate2"
2022-06-06 21:04:00 +00:00
version = "1.0.24"
2021-12-17 02:46:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-06 21:04:00 +00:00
checksum = "f82b0f4c27ad9f8bfd1f3208d882da2b09c301bc1c828fd3a00d0216d2fbbff6"
2021-12-17 02:46:46 +00:00
dependencies = [
"crc32fast",
2022-04-24 22:10:15 +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"
2021-03-10 02:51:03 +00:00
version = "1.0.1"
2020-12-03 17:38:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-03-10 02:51:03 +00:00
checksum = "5fc25a87fa4fd2094bffb06925852034d90a17f0d1e05197d4956d3555752191"
2020-12-03 17:38:28 +00:00
dependencies = [
"matches",
"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"
2022-02-11 17:23:48 +00:00
version = "0.3.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-11 17:23:48 +00:00
checksum = "f73fe65f54d1e12b726f517d3e2135ca3125a437b6d998caf1962961f7172d9e"
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"
2022-02-11 17:23:48 +00:00
version = "0.3.21"
2021-09-14 01:22:42 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-11 17:23:48 +00:00
checksum = "c3083ce4b914124575708913bca19bfe887522d6e2e6d0952943f5eac4a74010"
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"
2022-02-11 17:23:48 +00:00
version = "0.3.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-11 17:23:48 +00:00
checksum = "0c09fd04b7e4073ac7156a9539b57a484a8ea920f79c7c675d05d289ab6110d3"
2021-09-14 01:22:42 +00:00
[[package]]
name = "futures-executor"
2022-02-11 17:23:48 +00:00
version = "0.3.21"
2021-09-14 01:22:42 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-11 17:23:48 +00:00
checksum = "9420b90cfa29e327d0429f19be13e7ddb68fa1cccb09d65e5706b8c7a749b8a6"
2021-09-14 01:22:42 +00:00
dependencies = [
"futures-core",
"futures-task",
"futures-util",
]
[[package]]
name = "futures-io"
2022-02-11 17:23:48 +00:00
version = "0.3.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-11 17:23:48 +00:00
checksum = "fc4045962a5a5e935ee2fdedaa4e08284547402885ab326734432bed5d12966b"
[[package]]
name = "futures-macro"
2022-02-11 17:23:48 +00:00
version = "0.3.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-11 17:23:48 +00:00
checksum = "33c1e13800337f4d4d7a316bf45a567dbcb6ffe087f16424852d97e97a91f512"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "futures-sink"
2022-02-11 17:23:48 +00:00
version = "0.3.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-11 17:23:48 +00:00
checksum = "21163e139fa306126e6eedaf49ecdb4588f939600f0b1e770f4205ee4b7fa868"
[[package]]
name = "futures-task"
2022-02-11 17:23:48 +00:00
version = "0.3.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-11 17:23:48 +00:00
checksum = "57c66a976bf5909d801bbef33416c41372779507e7a6b3a5e25e4749c58f776a"
[[package]]
name = "futures-util"
2022-02-11 17:23:48 +00:00
version = "0.3.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-11 17:23:48 +00:00
checksum = "d8b7abd5d659d9b90c8cba917f6ec750a74e2dc23902ef9cd4cc8c8b22e6036a"
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"
version = "0.12.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ffdf9f34f1447443d37393cc6c2b8313aebddcd96906caf34e54c68d8e57d7bd"
dependencies = [
"typenum",
]
2020-06-11 00:34:25 +00:00
[[package]]
name = "generic-array"
2022-01-06 18:35:13 +00:00
version = "0.14.5"
2020-06-11 00:34:25 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-06 18:35:13 +00:00
checksum = "fd48d33ec7f05fbfa152300fdad764757cbded343c1aa1cff2fbaf4134851803"
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"
2022-06-21 16:27:57 +00:00
version = "0.2.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-21 16:27:57 +00:00
checksum = "4eb1a864a501629691edf6c15a593b7a51eebaa1e8468e9ddc623de7c9b58ec6"
dependencies = [
2021-02-10 22:57:42 +00:00
"cfg-if",
"libc",
2022-06-21 16:27:57 +00:00
"wasi",
]
2022-03-29 01:47:46 +00:00
[[package]]
name = "gimli"
version = "0.26.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "78cc372d058dcf6d5ecd98510e7fbc9e5aec4d21de70f65fea8fecebcd881bd4"
[[package]]
name = "h2"
2022-04-03 20:21:14 +00:00
version = "0.3.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-03 20:21:14 +00:00
checksum = "37a82c6d637fc9515a4694bbf1cb2457b79d81ce52b3108bdeea58b07dd34a57"
dependencies = [
"bytes",
"fnv",
"futures-core",
"futures-sink",
"futures-util",
"http",
"indexmap",
"slab",
"tokio",
2022-06-06 21:04:00 +00:00
"tokio-util 0.7.3",
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-05-26 14:46:43 +00:00
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-26 14:46:43 +00:00
checksum = "db0d4cf898abf0081f964436dc980e96670a0f36863e4b83aaacdb65c9d7ccc3"
dependencies = [
2022-04-03 20:21:14 +00:00
"ahash",
]
2021-12-17 02:46:46 +00:00
[[package]]
name = "hdrhistogram"
2022-02-26 18:22:30 +00:00
version = "7.5.0"
2021-12-17 02:46:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-26 18:22:30 +00:00
checksum = "31672b7011be2c4f7456c4ddbcb40e7e9a4a9fad8efe49a6ebaf5f307d0109c0"
2021-12-17 02:46:46 +00:00
dependencies = [
"base64",
"byteorder",
"flate2",
2022-02-26 18:22:30 +00:00
"nom",
"num-traits",
2021-12-17 02:46:46 +00:00
]
[[package]]
name = "heck"
2021-06-19 19:39:41 +00:00
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-19 19:39:41 +00:00
checksum = "6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c"
dependencies = [
"unicode-segmentation",
]
2022-03-25 03:06:29 +00:00
[[package]]
name = "heck"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2540771e65fc8cb83cd6e8a237f70c319bd5c29f78ed1084ba5d50eeac86f7f9"
[[package]]
name = "hermit-abi"
2021-06-26 18:10:28 +00:00
version = "0.1.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-26 18:10:28 +00:00
checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
dependencies = [
"libc",
]
[[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-04-29 20:54:54 +00:00
"digest 0.10.3",
]
[[package]]
name = "http"
2022-06-21 16:27:57 +00:00
version = "0.2.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-21 16:27:57 +00:00
checksum = "75f43d41e26995c17e71ee126451dd3941010b0514a81a9d11f3b341debc2399"
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",
]
2022-04-11 20:17:54 +00:00
[[package]]
name = "http-range-header"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0bfe8eed0a9285ef776bb792479ea3834e8b94e13d615c2f66d03dd50a435a29"
[[package]]
name = "httparse"
2022-04-28 01:13:49 +00:00
version = "1.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-28 01:13:49 +00:00
checksum = "496ce29bb5a52785b44e0f7ca2847ae0bb839c9bd28f69acac9b99d461c0c04c"
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"
2022-05-28 17:39:23 +00:00
version = "0.14.19"
2021-09-18 21:29:30 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-28 17:39:23 +00:00
checksum = "42dc3c131584288d375f2d07f822b0cb012d8c6fb899a5b9fdb3cb7eb9b6004f"
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",
]
[[package]]
name = "hyper-rustls"
2021-12-03 20:21:31 +00:00
version = "0.23.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-03 20:21:31 +00:00
checksum = "d87c48c02e0dc5e3b849a2041db3029fd066650f8f717c07bf8ed78ccb895cac"
dependencies = [
2021-12-03 20:21:31 +00:00
"http",
"hyper",
2021-12-03 20:21:31 +00:00
"rustls",
"tokio",
2021-12-03 20:21:31 +00:00
"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"
2021-04-17 19:59:42 +00:00
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-17 19:59:42 +00:00
checksum = "418a0a6fab821475f634efe3ccc45c013f742efe03d853e8d3355d5cb850ecf8"
dependencies = [
"matches",
"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"
2022-07-02 15:52:24 +00:00
version = "1.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-02 15:52:24 +00:00
checksum = "10a35a97730320ffe8e2d410b5d3b69279b98d2c14bdb8b70ea89ecf7888d41e"
dependencies = [
"autocfg",
2022-06-21 16:27:57 +00:00
"hashbrown",
]
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"
version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8d75829ed9377bab6c90039fe47b9d84caceb4b5063266142e21bcce6550cda8"
dependencies = [
"bitflags",
"libc",
]
[[package]]
name = "ipnet"
2022-04-24 22:10:15 +00:00
version = "2.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-24 22:10:15 +00:00
checksum = "879d54834c8c76457ef4293a689b2a8c59b076067ad77b15efafbb05f92a592b"
2021-09-18 21:29:30 +00:00
[[package]]
name = "itertools"
2021-12-07 02:37:00 +00:00
version = "0.10.3"
2021-09-18 21:29:30 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-07 02:37:00 +00:00
checksum = "a9a9d19fa1e79b6215ff29b9d6880b706147f16e9b1dbb1e4e5947b5b02bc5e3"
2021-09-18 21:29:30 +00:00
dependencies = [
"either",
]
2021-12-17 02:46:46 +00:00
[[package]]
name = "itoa"
2022-05-26 14:46:43 +00:00
version = "1.0.2"
2021-12-17 02:46:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-26 14:46:43 +00:00
checksum = "112c678d4050afce233f4f2852bb2eb519230b3cf12f33585275537d7e41578d"
2021-12-17 02:46:46 +00:00
2021-09-12 16:00:29 +00:00
[[package]]
name = "js-sys"
2022-06-21 16:27:57 +00:00
version = "0.3.58"
2021-09-12 16:00:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-21 16:27:57 +00:00
checksum = "c3fac17f7123a73ca62df411b1bf727ccc805daa070338fda671c86dac1bdc27"
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"
2022-05-26 14:46:43 +00:00
version = "0.2.126"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-26 14:46:43 +00:00
checksum = "349d5a591cd28b49e1d1037471617a32ddcda5731b99419008085f72d5a53836"
[[package]]
name = "linked-hash-map"
2022-07-02 15:52:24 +00:00
version = "0.5.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-02 15:52:24 +00:00
checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f"
2021-04-02 18:11:20 +00:00
[[package]]
name = "local-channel"
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"
2022-04-03 20:21:14 +00:00
version = "0.4.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-03 20:21:14 +00:00
checksum = "327fa5b6a6940e4699ec49a9beae1ea4845c6bab9314e4f84ac68742139d8c53"
dependencies = [
2022-04-03 20:21:14 +00:00
"autocfg",
"scopeguard",
]
[[package]]
name = "log"
2022-05-26 14:46:43 +00:00
version = "0.4.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-26 14:46:43 +00:00
checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
dependencies = [
2021-02-10 22:57:42 +00:00
"cfg-if",
]
2022-02-26 18:22:30 +00:00
[[package]]
name = "maplit"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3e2e65a1a2e43cfcb47a895c4c8b10d1f4a61097f9f254f183aee60cad9c651d"
[[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 = [
"regex-automata",
]
[[package]]
name = "matches"
version = "0.1.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f"
2022-04-11 20:17:54 +00:00
[[package]]
name = "matchit"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "73cbba799671b762df5a175adf59ce145165747bb891505c43d09aefbbf38beb"
[[package]]
name = "maybe-async"
version = "0.2.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6007f9dad048e0a224f27ca599d669fca8cfa0dac804725aab542b2eb032bce6"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "md5"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "490cc448043f947bae3cbee9c203358d62dbee0db12107a74be5c30ccfd09771"
[[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"
2021-12-03 20:21:31 +00:00
version = "0.6.5"
2020-12-03 17:38:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-03 20:21:31 +00:00
checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce"
2020-12-03 17:38:28 +00:00
dependencies = [
"autocfg",
]
[[package]]
name = "mime"
version = "0.3.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2a60c7ce501c71e03a9c9c0d35b861413ae925bd979cc7a4e30d060069aaac8d"
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"
2022-04-11 20:17:54 +00:00
[[package]]
name = "miniz_oxide"
2022-06-06 21:04:00 +00:00
version = "0.5.3"
2022-04-11 20:17:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-06 21:04:00 +00:00
checksum = "6f5c75688da582b8ffc1f1799e9db273f32133c49e048f614d22ec3256773ccc"
2022-04-11 20:17:54 +00:00
dependencies = [
"adler",
]
[[package]]
name = "mio"
2022-06-21 16:27:57 +00:00
version = "0.8.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-21 16:27:57 +00:00
checksum = "57ee1c23c7c63b0c9250c339ffdc69255f110b298b901b9f6c82547b7b87caaf"
dependencies = [
"libc",
"log",
2022-06-21 16:27:57 +00:00
"wasi",
2022-05-26 14:46:43 +00:00
"windows-sys",
]
2021-09-18 21:29:30 +00:00
[[package]]
name = "multimap"
version = "0.8.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e5ce46fe64a9d73be07dcbe690a38ce1b293be448fd8ce1e6c1b8062c9f72c6a"
2021-12-17 02:46:46 +00:00
[[package]]
name = "nom"
version = "7.1.1"
2021-12-17 02:46:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a8903e5a29a317527874d0402f867152a3d21c908bb0b933e416c65e301d4c36"
2021-12-17 02:46:46 +00:00
dependencies = [
"memchr",
"minimal-lexical",
]
[[package]]
name = "num-traits"
2022-05-26 14:46:43 +00:00
version = "0.2.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-26 14:46:43 +00:00
checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd"
dependencies = [
"autocfg",
]
[[package]]
name = "num_cpus"
2021-12-28 17:03:53 +00:00
version = "1.13.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-28 17:03:53 +00:00
checksum = "19e64526ebdee182341572e50e9ad03965aa510cd94427a4549448f285e957a1"
dependencies = [
"hermit-abi",
"libc",
]
2022-01-24 04:39:03 +00:00
[[package]]
name = "num_threads"
2022-05-26 14:46:43 +00:00
version = "0.1.6"
2022-01-24 04:39:03 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-26 14:46:43 +00:00
checksum = "2819ce041d2ee131036f4fc9d6ae7ae125a3a40e97ba64d04fe799ad9dabbb44"
2022-01-24 04:39:03 +00:00
dependencies = [
"libc",
]
2022-03-29 01:47:46 +00:00
[[package]]
name = "object"
2022-05-26 14:46:43 +00:00
version = "0.28.4"
2022-03-29 01:47:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-26 14:46:43 +00:00
checksum = "e42c982f2d955fac81dd7e1d0e1426a7d702acd9c98d19ab01083a6a0328c424"
2022-03-29 01:47:46 +00:00
dependencies = [
"memchr",
]
[[package]]
name = "once_cell"
2022-05-26 14:46:43 +00:00
version = "1.12.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-26 14:46:43 +00:00
checksum = "7709cef83f0c1f58f666e746a08b21e0085f7440fa6a29cc194d68aac97a4225"
2022-02-26 18:22:30 +00:00
[[package]]
name = "opaque-debug"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2839e79665f131bdb5782e51f2c6c9599c133c6098982a54c794358bf432529c"
2021-09-18 21:29:30 +00:00
[[package]]
name = "opentelemetry"
2022-02-04 17:33:12 +00:00
version = "0.17.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-04 17:33:12 +00:00
checksum = "6105e89802af13fdf48c49d7646d3b533a70e536d818aae7e78ba0433d01acb8"
2021-09-18 21:29:30 +00:00
dependencies = [
"async-trait",
"crossbeam-channel",
2022-02-04 17:33:12 +00:00
"futures-channel",
"futures-executor",
"futures-util",
2021-09-18 21:29:30 +00:00
"js-sys",
"lazy_static",
"percent-encoding",
"pin-project",
"rand",
"thiserror",
"tokio",
"tokio-stream",
]
[[package]]
name = "opentelemetry-otlp"
2022-02-04 17:33:12 +00:00
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-04 17:33:12 +00:00
checksum = "9d1a6ca9de4c8b00aa7f1a153bd76cb263287155cec642680d79d98706f3d28a"
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-04-11 20:17:54 +00:00
"prost 0.9.0",
2021-09-18 21:29:30 +00:00
"thiserror",
"tokio",
2022-04-11 20:17:54 +00:00
"tonic 0.6.2",
2022-02-04 17:33:12 +00:00
"tonic-build",
2021-09-18 21:29:30 +00:00
]
[[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",
2022-06-21 16:27:57 +00:00
"hashbrown",
]
2022-03-25 03:06:29 +00:00
[[package]]
name = "os_str_bytes"
2022-05-26 14:46:43 +00:00
version = "6.1.0"
2022-03-25 03:06:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-26 14:46:43 +00:00
checksum = "21326818e99cfe6ce1e524c2a805c189a99b5ae555a35d19f9a284b427d86afa"
2022-03-25 03:06:29 +00:00
2022-03-29 01:47:46 +00:00
[[package]]
name = "owo-colors"
2022-04-24 22:10:15 +00:00
version = "3.4.0"
2022-03-29 01:47:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-24 22:10:15 +00:00
checksum = "decf7381921fea4dcb2549c5667eda59b3ec297ab7e2b5fc33eac69d2e7da87b"
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-02-11 17:23:48 +00:00
"parking_lot_core 0.8.5",
]
[[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",
2022-05-26 14:46:43 +00:00
"parking_lot_core 0.9.3",
]
[[package]]
name = "parking_lot_core"
version = "0.8.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d76e8e1493bcac0d2766c42737f34458f1c8c50c0d23bcb24ea953affb273216"
dependencies = [
2021-02-10 22:57:42 +00:00
"cfg-if",
2020-09-10 16:12:42 +00:00
"instant",
"libc",
"redox_syscall",
"smallvec",
2021-02-10 22:57:42 +00:00
"winapi",
]
2022-02-11 17:23:48 +00:00
[[package]]
name = "parking_lot_core"
2022-05-26 14:46:43 +00:00
version = "0.9.3"
2022-02-11 17:23:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-26 14:46:43 +00:00
checksum = "09a279cbf25cb0757810394fbc1e359949b59e348145c643a939a525692e6929"
2022-02-11 17:23:48 +00:00
dependencies = [
"cfg-if",
"libc",
"redox_syscall",
"smallvec",
"windows-sys",
]
2021-04-17 19:59:42 +00:00
[[package]]
name = "paste"
2022-04-03 20:21:14 +00:00
version = "1.0.7"
2021-04-17 19:59:42 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-03 20:21:14 +00:00
checksum = "0c520e05135d6e763148b6426a837e239041653ba7becd2e538c076c738025fc"
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"
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e"
2022-02-26 18:22:30 +00:00
[[package]]
name = "pest"
version = "2.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "10f4872ae94d7b90ae48754df22fd42ad52ce740b8f370b03da4835417403e53"
dependencies = [
"ucd-trie",
]
[[package]]
name = "pest_derive"
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "833d1ae558dc601e9a60366421196a8d94bc0ac980476d0b67e1d0988d72b2d0"
dependencies = [
"pest",
"pest_generator",
]
[[package]]
name = "pest_generator"
version = "2.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "99b8db626e31e5b81787b9783425769681b347011cc59471e33ea46d2ea0cf55"
dependencies = [
"pest",
"pest_meta",
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "pest_meta"
version = "2.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "54be6e404f5317079812fc8f9f5279de376d8856929e21c184ecf6bbd692a11d"
dependencies = [
"maplit",
"pest",
2022-06-21 16:27:57 +00:00
"sha-1",
2022-02-26 18:22:30 +00:00
]
2021-12-17 02:46:46 +00:00
[[package]]
name = "petgraph"
2022-06-06 21:04:00 +00:00
version = "0.6.2"
2021-12-17 02:46:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-06 21:04:00 +00:00
checksum = "e6d5014253a1331579ce62aa67443b4a658c5e7dd03d4bc6d302b94474888143"
2021-12-17 02:46:46 +00:00
dependencies = [
2022-02-04 17:33:12 +00:00
"fixedbitset",
2021-09-18 21:29:30 +00:00
"indexmap",
]
[[package]]
name = "pict-rs"
2022-06-21 16:27:40 +00:00
version = "0.4.0-alpha.3"
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",
2021-03-10 02:51:03 +00:00
"awc",
2021-10-31 18:45:18 +00:00
"base64",
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",
"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",
"reqwest",
"rust-s3",
2022-02-26 18:22:30 +00:00
"serde",
"serde_cbor",
"serde_json",
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-06-06 21:04:00 +00:00
"tokio-util 0.7.3",
"toml",
"tracing",
2021-09-14 01:22:42 +00:00
"tracing-actix-web",
"tracing-awc",
2021-09-14 01:22:42 +00:00
"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"
2022-07-02 15:52:24 +00:00
version = "1.0.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-02 15:52:24 +00:00
checksum = "78203e83c48cffbe01e4a2d35d566ca4de445d79a85372fc64e378bfc812a260"
dependencies = [
2021-03-10 02:51:03 +00:00
"pin-project-internal",
]
[[package]]
name = "pin-project-internal"
2022-07-02 15:52:24 +00:00
version = "1.0.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-02 15:52:24 +00:00
checksum = "710faf75e1b33345361201d36d04e98ac1ed8909151a017ed384700836104c74"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "pin-project-lite"
2022-04-28 01:13:49 +00:00
version = "0.2.9"
2020-12-03 17:38:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-28 01:13:49 +00:00
checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116"
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-01-06 18:35:13 +00:00
version = "0.2.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-06 18:35:13 +00:00
checksum = "eb9f9e6e233e5c4a35559a617bf40a4ec447db2e84c20b55a6f83167b7e57872"
2020-06-07 00:54:06 +00:00
[[package]]
name = "proc-macro-error"
2020-09-10 16:12:42 +00:00
version = "1.0.4"
2020-06-07 00:54:06 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-10 16:12:42 +00:00
checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
2020-06-07 00:54:06 +00:00
dependencies = [
"proc-macro-error-attr",
"proc-macro2",
"quote",
"syn",
"version_check",
]
[[package]]
name = "proc-macro-error-attr"
2020-09-10 16:12:42 +00:00
version = "1.0.4"
2020-06-07 00:54:06 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-10 16:12:42 +00:00
checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
2020-06-07 00:54:06 +00:00
dependencies = [
"proc-macro2",
"quote",
"version_check",
]
[[package]]
name = "proc-macro2"
2022-06-21 16:27:57 +00:00
version = "1.0.40"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-21 16:27:57 +00:00
checksum = "dd96a1e8ed2596c337f8eae5f24924ec83f5ad5ab21ea8e455d3566c69fbcaf7"
dependencies = [
2022-05-26 14:46:43 +00:00
"unicode-ident",
]
2021-12-17 02:46:46 +00:00
[[package]]
name = "prost"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "444879275cb4fd84958b1a1d5420d15e6fcf7c235fe47f053c9c2a80aceb6001"
dependencies = [
"bytes",
2022-04-11 20:17:54 +00:00
"prost-derive 0.9.0",
]
[[package]]
name = "prost"
2022-05-26 14:46:43 +00:00
version = "0.10.4"
2022-04-11 20:17:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-26 14:46:43 +00:00
checksum = "71adf41db68aa0daaefc69bb30bcd68ded9b9abaad5d1fbb6304c4fb390e083e"
2022-04-11 20:17:54 +00:00
dependencies = [
"bytes",
2022-04-15 18:03:54 +00:00
"prost-derive 0.10.1",
2021-12-17 02:46:46 +00:00
]
[[package]]
name = "prost-build"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "62941722fb675d463659e49c4f3fe1fe792ff24fe5bbaa9c08cd3b98a1c354f5"
dependencies = [
"bytes",
2022-03-25 03:06:29 +00:00
"heck 0.3.3",
2021-12-17 02:46:46 +00:00
"itertools",
"lazy_static",
"log",
"multimap",
2022-02-04 17:33:12 +00:00
"petgraph",
2022-04-11 20:17:54 +00:00
"prost 0.9.0",
"prost-types 0.9.0",
2021-12-17 02:46:46 +00:00
"regex",
2021-09-18 21:29:30 +00:00
"tempfile",
"which",
]
2021-12-17 02:46:46 +00:00
[[package]]
name = "prost-derive"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f9cc1a3263e07e0bf68e96268f37665207b49560d98739662cdfaae215c720fe"
dependencies = [
"anyhow",
"itertools",
"proc-macro2",
"quote",
"syn",
]
2022-04-11 20:17:54 +00:00
[[package]]
name = "prost-derive"
2022-04-15 18:03:54 +00:00
version = "0.10.1"
2022-04-11 20:17:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-15 18:03:54 +00:00
checksum = "7b670f45da57fb8542ebdbb6105a925fe571b67f9e7ed9f47a06a84e72b4e7cc"
2022-04-11 20:17:54 +00:00
dependencies = [
"anyhow",
"itertools",
"proc-macro2",
"quote",
"syn",
]
2021-12-17 02:46:46 +00:00
[[package]]
name = "prost-types"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "534b7a0e836e3c482d2693070f982e39e7611da9695d4d1f5a4b186b51faef0a"
dependencies = [
"bytes",
2022-04-11 20:17:54 +00:00
"prost 0.9.0",
]
[[package]]
name = "prost-types"
2022-04-15 18:03:54 +00:00
version = "0.10.1"
2022-04-11 20:17:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-15 18:03:54 +00:00
checksum = "2d0a014229361011dc8e69c8a1ec6c2e8d0f2af7c91e3ea3f5b2170298461e68"
2022-04-11 20:17:54 +00:00
dependencies = [
"bytes",
2022-05-26 14:46:43 +00:00
"prost 0.10.4",
2021-09-18 21:29:30 +00:00
]
[[package]]
name = "quote"
2022-06-21 16:27:57 +00:00
version = "1.0.20"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-21 16:27:57 +00:00
checksum = "3bcdf212e9776fbcb2d23ab029360416bb1706b1aea2d1a5ba002727cbcab804"
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"
2021-06-19 19:39:41 +00:00
version = "0.6.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-19 19:39:41 +00:00
checksum = "d34f1408f55294453790c48b2f1ebbb1c5b4b7563eb1f418bcfcfdbb06ebb4e7"
dependencies = [
"getrandom",
]
[[package]]
name = "redox_syscall"
2022-04-03 20:21:14 +00:00
version = "0.2.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-03 20:21:14 +00:00
checksum = "62f25bc4c7e55e0b0b7a1d43fb893f4fa1361d0abe38b9ce4f323c2adfe6ef42"
2021-03-10 02:51:03 +00:00
dependencies = [
"bitflags",
]
[[package]]
name = "redox_users"
2022-04-03 20:21:14 +00:00
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-03 20:21:14 +00:00
checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b"
dependencies = [
"getrandom",
"redox_syscall",
"thiserror",
]
[[package]]
name = "regex"
2022-05-26 14:46:43 +00:00
version = "1.5.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-26 14:46:43 +00:00
checksum = "d83f127d94bdbcda4c8cc2e50f6f84f4b611f69c902699ca385a39c3a75f9ff1"
dependencies = [
"aho-corasick",
"memchr",
"regex-syntax",
]
[[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 = [
"regex-syntax",
]
[[package]]
name = "regex-syntax"
2022-05-26 14:46:43 +00:00
version = "0.6.26"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-26 14:46:43 +00:00
checksum = "49b3de9ec5dc0a3417da371aab17d729997c15010e7fd24ff707773a33bddb64"
2021-09-18 21:29:30 +00:00
[[package]]
name = "remove_dir_all"
version = "0.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7"
dependencies = [
"winapi",
]
[[package]]
name = "reqwest"
2022-06-21 16:27:57 +00:00
version = "0.11.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-21 16:27:57 +00:00
checksum = "b75aa69a3f06bbcc66ede33af2af253c6f7a86b1ca0033f60c580a27074fbf92"
dependencies = [
2021-10-31 18:45:18 +00:00
"base64",
"bytes",
"encoding_rs",
"futures-core",
"futures-util",
"h2",
"http",
"http-body",
"hyper",
"hyper-rustls",
"ipnet",
"js-sys",
"lazy_static",
"log",
"mime",
"percent-encoding",
"pin-project-lite",
2021-12-03 20:21:31 +00:00
"rustls",
"rustls-pemfile",
2022-02-26 18:22:30 +00:00
"serde",
"serde_json",
"serde_urlencoded",
"tokio",
2021-12-03 20:21:31 +00:00
"tokio-rustls",
2022-06-21 16:27:57 +00:00
"tokio-util 0.7.3",
"tower-service",
"url",
"wasm-bindgen",
"wasm-bindgen-futures",
"web-sys",
2021-12-28 17:03:53 +00:00
"webpki-roots",
"winreg",
]
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 = [
"base64",
"bitflags",
"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",
]
[[package]]
name = "rust-s3"
2022-04-29 20:54:54 +00:00
version = "0.31.0"
2022-05-26 14:46:43 +00:00
source = "git+https://github.com/asonix/rust-s3?branch=asonix/generic-client#9e450d0038a29040ba5c47ffa570350c3b1ad976"
dependencies = [
"async-trait",
"aws-creds",
"aws-region",
2021-10-31 18:45:18 +00:00
"base64",
"cfg-if",
"hex",
"hmac",
"http",
"log",
"maybe-async",
"md5",
"percent-encoding",
"reqwest",
2022-02-26 18:22:30 +00:00
"serde",
"serde-xml-rs",
"serde_derive",
2022-04-29 20:54:54 +00:00
"sha2",
"thiserror",
2022-02-26 18:22:30 +00:00
"time",
"tokio",
"tokio-stream",
"url",
]
2022-03-29 01:47:46 +00:00
[[package]]
name = "rustc-demangle"
version = "0.1.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7ef03e0a2b150c7a90d01faf6254c9c48a41e95fb2a8c2ac1c6f0d2b9aefc342"
[[package]]
name = "rustc_version"
2021-12-03 20:21:31 +00:00
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-03 20:21:31 +00:00
checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
dependencies = [
2021-10-20 23:16:53 +00:00
"semver",
]
[[package]]
name = "rustls"
2022-05-26 14:46:43 +00:00
version = "0.20.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-26 14:46:43 +00:00
checksum = "5aab8ee6c7097ed6057f43c187a62418d0c05a4bd5f18b3571db50ee0f9ce033"
dependencies = [
"log",
"ring",
2021-12-03 20:21:31 +00:00
"sct",
2021-12-28 17:03:53 +00:00
"webpki",
]
2021-09-12 16:00:29 +00:00
[[package]]
2021-12-03 20:21:31 +00:00
name = "rustls-pemfile"
2022-06-21 16:27:57 +00:00
version = "1.0.0"
2021-09-12 16:00:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-21 16:27:57 +00:00
checksum = "e7522c9de787ff061458fe9a829dc790a3f5b22dc571694fc5883f448b94d9a9"
2021-09-12 16:00:29 +00:00
dependencies = [
2021-12-03 20:21:31 +00:00
"base64",
2021-09-12 16:00:29 +00:00
]
[[package]]
name = "ryu"
2022-05-26 14:46:43 +00:00
version = "1.0.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-26 14:46:43 +00:00
checksum = "f3f6f92acf49d1b98f7a81226834412ada05458b7364277387724a237f062695"
2021-10-13 04:16:31 +00:00
[[package]]
name = "scoped-tls"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ea6a9290e3c9cf0f18145ef7ffa62d68ee0bf5fcd651017e586dc7fd5da448c2"
[[package]]
name = "scopeguard"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
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"
2022-07-02 15:52:24 +00:00
version = "1.0.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-02 15:52:24 +00:00
checksum = "a2333e6df6d6598f2b1974829f853c2b4c5f4a6e503c10af918081aa6f8564e1"
[[package]]
name = "serde"
2022-07-02 15:52:24 +00:00
version = "1.0.138"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-02 15:52:24 +00:00
checksum = "1578c6245786b9d168c5447eeacfb96856573ca56c9d68fdcf394be134882a47"
dependencies = [
"serde_derive",
]
[[package]]
name = "serde-xml-rs"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "65162e9059be2f6a3421ebbb4fef3e74b7d9e7c60c50a0e292c6239f19f1edfa"
dependencies = [
"log",
2022-02-26 18:22:30 +00:00
"serde",
"thiserror",
"xml-rs",
]
[[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"
2022-07-02 15:52:24 +00:00
version = "1.0.138"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-02 15:52:24 +00:00
checksum = "023e9b1467aef8a10fb88f25611870ada9800ef7e22afce356bb0d2387b6f27c"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "serde_json"
2022-07-02 15:52:24 +00:00
version = "1.0.82"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-02 15:52:24 +00:00
checksum = "82c2c1fdcd807d1098552c5b9a36e425e42e9fbd7c6a37a8425f390f781f7fa7"
dependencies = [
2022-02-11 17:23:48 +00:00
"itoa",
"ryu",
2022-02-26 18:22:30 +00:00
"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]]
name = "sha-1"
version = "0.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f7d94d0bede923b3cea61f3f1ff57ff8cdfd77b400fb8f9998949e0cf04163df"
dependencies = [
"block-buffer 0.7.3",
"digest 0.8.1",
"fake-simd",
2022-04-29 20:54:54 +00:00
"opaque-debug",
]
[[package]]
2022-06-21 16:27:57 +00:00
name = "sha1"
version = "0.10.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-21 16:27:57 +00:00
checksum = "c77f4e7f65455545c2153c1253d25056825e77ee2533f0e41deb65a93a34852f"
dependencies = [
2021-02-10 22:57:42 +00:00
"cfg-if",
2021-06-19 19:39:41 +00:00
"cpufeatures",
2022-02-26 18:22:30 +00:00
"digest 0.10.3",
]
2021-12-17 02:46:46 +00:00
[[package]]
name = "sha2"
2022-02-26 18:22:30 +00:00
version = "0.10.2"
2021-12-17 02:46:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-26 18:22:30 +00:00
checksum = "55deaec60f81eefe3cce0dc50bda92d6d8e88f2a27df7c5033b42afeb1ed2676"
2021-12-17 02:46:46 +00:00
dependencies = [
"cfg-if",
"cpufeatures",
2022-02-26 18:22:30 +00:00
"digest 0.10.3",
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"
2021-06-19 19:39:41 +00:00
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-19 19:39:41 +00:00
checksum = "e51e73328dc4ac0c7ccbda3a494dfa03df1de2f46018127f60c693f2648455b0"
dependencies = [
"libc",
]
[[package]]
name = "slab"
2022-04-03 20:21:14 +00:00
version = "0.4.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-03 20:21:14 +00:00
checksum = "eb703cfe953bccee95685111adeedb76fabe4e97549a58d16f03ea7b9367bb32"
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"
2022-07-02 15:52:24 +00:00
version = "1.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-02 15:52:24 +00:00
checksum = "2fd0db749597d91ff862fd1d55ea87f7855a744a8425a64695b6fca237d1dad1"
[[package]]
name = "socket2"
2022-02-01 16:07:25 +00:00
version = "0.4.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-01 16:07:25 +00:00
checksum = "66d72b759436ae32898a2af0a14218dbf55efde3feeb170eb623637db85ee1e0"
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.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601"
[[package]]
name = "syn"
2022-06-21 16:27:57 +00:00
version = "1.0.98"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-21 16:27:57 +00:00
checksum = "c50aef8a904de4c23c788f104b7dddc7d6f79c647c7c8ce4cc8f73eb0ca773dd"
dependencies = [
"proc-macro2",
"quote",
2022-05-26 14:46:43 +00:00
"unicode-ident",
]
2022-04-11 20:17:54 +00:00
[[package]]
name = "sync_wrapper"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "20518fe4a4c9acf048008599e464deb21beeae3d3578418951a189c235a7a9a8"
2021-09-18 21:29:30 +00:00
[[package]]
name = "tempfile"
version = "3.3.0"
2021-09-18 21:29:30 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4"
2021-09-18 21:29:30 +00:00
dependencies = [
"cfg-if",
"fastrand",
2021-09-18 21:29:30 +00:00
"libc",
"redox_syscall",
"remove_dir_all",
"winapi",
]
2020-06-07 00:54:06 +00:00
[[package]]
2022-03-25 03:06:29 +00:00
name = "termcolor"
version = "1.1.3"
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 = "bab24d30b911b2376f3a13cc2cd443142f0c81dda04c118693e35b3835757755"
2020-06-07 00:54:06 +00:00
dependencies = [
2022-03-25 03:06:29 +00:00
"winapi-util",
2020-06-07 00:54:06 +00:00
]
2022-03-25 03:06:29 +00:00
[[package]]
name = "textwrap"
version = "0.15.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b1141d4d61095b28419e22cb0bbf02755f5e54e0526f97f1e3d1d160e60885fb"
[[package]]
name = "thiserror"
2022-05-26 14:46:43 +00:00
version = "1.0.31"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-26 14:46:43 +00:00
checksum = "bd829fe32373d27f76265620b5309d0340cb8550f523c1dda251d6298069069a"
dependencies = [
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
2022-05-26 14:46:43 +00:00
version = "1.0.31"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-26 14:46:43 +00:00
checksum = "0396bc89e626244658bef819e22d0cc459e795a5ebe878e6ec336d1674a8d79a"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "thread_local"
2022-01-24 04:39:03 +00:00
version = "1.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-24 04:39:03 +00:00
checksum = "5516c27b78311c50bf42c071425c560ac799b11c30b31f87e3081965fe5e0180"
dependencies = [
2021-02-10 22:57:42 +00:00
"once_cell",
]
2021-08-28 22:50:56 +00:00
[[package]]
name = "time"
2022-07-02 15:52:24 +00:00
version = "0.3.11"
2021-08-28 22:50:56 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-02 15:52:24 +00:00
checksum = "72c91f41dcb2f096c05f0873d667dceec1087ce5bcf984ec8ffb19acddbb3217"
2021-08-28 22:50:56 +00:00
dependencies = [
2022-02-11 17:23:48 +00:00
"itoa",
2021-08-28 22:50:56 +00:00
"libc",
2022-01-24 04:39:03 +00:00
"num_threads",
2022-02-26 18:22:30 +00:00
"serde",
"time-macros",
2021-08-28 22:50:56 +00:00
]
2022-02-26 18:22:30 +00:00
[[package]]
name = "time-macros"
2022-03-25 23:47:50 +00:00
version = "0.2.4"
2022-02-26 18:22:30 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-25 23:47:50 +00:00
checksum = "42657b1a6f4d817cda8e7a0ace261fe0cc946cf3a80314390b22cc61ae080792"
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"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
[[package]]
name = "tokio"
2022-06-06 21:04:00 +00:00
version = "1.19.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-06 21:04:00 +00:00
checksum = "c51a52ed6686dd62c320f9b89299e9dfb46f730c7a48e635c19f21d116cb1439"
dependencies = [
"bytes",
"libc",
"memchr",
2022-02-26 18:22:30 +00:00
"mio",
2021-09-18 21:29:30 +00:00
"num_cpus",
2021-02-10 22:57:42 +00:00
"once_cell",
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",
2021-02-10 22:57:42 +00:00
"winapi",
]
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"
2022-06-06 21:04:00 +00:00
version = "1.8.0"
2021-09-18 21:29:30 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-06 21:04:00 +00:00
checksum = "9724f9a975fb987ef7a3cd9be0350edcbe130698af5b8f7a631e23d42d052484"
2021-09-18 21:29:30 +00:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
2021-09-12 16:00:29 +00:00
[[package]]
name = "tokio-rustls"
2022-05-26 14:46:43 +00:00
version = "0.23.4"
2021-09-12 16:00:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-26 14:46:43 +00:00
checksum = "c43ee83903113e03984cb9e5cebe6c04a5116269e900e3ddba8f068a62adda59"
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-12-28 17:03:53 +00:00
"webpki",
2021-09-12 16:00:29 +00:00
]
2021-09-18 21:29:30 +00:00
[[package]]
name = "tokio-stream"
2022-06-06 21:04:00 +00:00
version = "0.1.9"
2021-09-18 21:29:30 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-06 21:04:00 +00:00
checksum = "df54d54117d6fdc4e4fea40fe1e4e566b3505700e148a6827e59b34b0d2600d9"
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"
2022-03-09 00:48:08 +00:00
version = "0.3.0"
2021-10-13 04:16:31 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-09 00:48:08 +00:00
checksum = "d3ad494f39874984d990ade7f6319dafbcd3301ff0b1841f8a55a1ebb3e742c8"
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",
]
[[package]]
name = "tokio-util"
2022-05-26 14:46:43 +00:00
version = "0.6.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-26 14:46:43 +00:00
checksum = "36943ee01a6d67977dd3f84a5a1d2efeb4ada3a1ae771cadfaa535d9d9fc6507"
dependencies = [
"bytes",
"futures-core",
"futures-sink",
"log",
2021-02-10 22:57:42 +00:00
"pin-project-lite",
"tokio",
]
2022-02-26 18:22:30 +00:00
[[package]]
name = "tokio-util"
2022-06-06 21:04:00 +00:00
version = "0.7.3"
2022-02-26 18:22:30 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-06 21:04:00 +00:00
checksum = "cc463cd8deddc3770d20f9852143d50bf6094e640b485cb2e189a2099085ff45"
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"
2022-04-15 18:03:54 +00:00
version = "0.5.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-15 18:03:54 +00:00
checksum = "8d82e1a7758622a465f8cee077614c73484dac5b836c02ff6a40d5d1010324d7"
dependencies = [
2022-02-26 18:22:30 +00:00
"serde",
]
2021-12-17 02:46:46 +00:00
[[package]]
name = "tonic"
version = "0.6.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ff08f4649d10a70ffa3522ca559031285d8e421d727ac85c60825761818f5d0a"
dependencies = [
"async-stream",
"async-trait",
"base64",
"bytes",
"futures-core",
"futures-util",
"h2",
"http",
"http-body",
"hyper",
"hyper-timeout",
"percent-encoding",
"pin-project",
2022-04-11 20:17:54 +00:00
"prost 0.9.0",
"prost-derive 0.9.0",
2021-09-18 21:29:30 +00:00
"tokio",
"tokio-stream",
2022-05-26 14:46:43 +00:00
"tokio-util 0.6.10",
2021-09-18 21:29:30 +00:00
"tower",
"tower-layer",
"tower-service",
"tracing",
"tracing-futures",
]
2022-04-11 20:17:54 +00:00
[[package]]
name = "tonic"
2022-05-26 14:46:43 +00:00
version = "0.7.2"
2022-04-11 20:17:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-26 14:46:43 +00:00
checksum = "5be9d60db39854b30b835107500cf0aca0b0d14d6e1c3de124217c23a29c2ddb"
2022-04-11 20:17:54 +00:00
dependencies = [
"async-stream",
"async-trait",
"axum",
"base64",
"bytes",
"futures-core",
"futures-util",
"h2",
"http",
"http-body",
"hyper",
"hyper-timeout",
"percent-encoding",
"pin-project",
2022-05-26 14:46:43 +00:00
"prost 0.10.4",
2022-04-15 18:03:54 +00:00
"prost-derive 0.10.1",
2022-04-11 20:17:54 +00:00
"tokio",
"tokio-stream",
2022-06-06 21:04:00 +00:00
"tokio-util 0.7.3",
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-build"
version = "0.6.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9403f1bafde247186684b230dc6f38b5cd514584e8bec1dd32514be4745fa757"
dependencies = [
"proc-macro2",
2022-02-04 17:33:12 +00:00
"prost-build",
2021-09-18 21:29:30 +00:00
"quote",
"syn",
]
[[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",
"indexmap",
"pin-project",
"pin-project-lite",
2021-09-18 21:29:30 +00:00
"rand",
"slab",
"tokio",
2022-06-06 21:04:00 +00:00
"tokio-util 0.7.3",
2021-09-18 21:29:30 +00:00
"tower-layer",
"tower-service",
"tracing",
]
2022-04-11 20:17:54 +00:00
[[package]]
name = "tower-http"
2022-06-06 21:04:00 +00:00
version = "0.3.4"
2022-04-11 20:17:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-06 21:04:00 +00:00
checksum = "3c530c8675c1dbf98facee631536fa116b5fb6382d7dd6dc1b118d970eafe3ba"
2022-04-11 20:17:54 +00:00
dependencies = [
"bitflags",
"bytes",
"futures-core",
"futures-util",
"http",
"http-body",
"http-range-header",
"pin-project-lite",
"tower",
"tower-layer",
"tower-service",
]
2021-09-18 21:29:30 +00:00
[[package]]
name = "tower-layer"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "343bc9466d3fe6b0f960ef45960509f84480bf4fd96f92901afe7ff3df9d3a62"
[[package]]
name = "tower-service"
2022-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-06-21 16:27:57 +00:00
version = "0.1.35"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-21 16:27:57 +00:00
checksum = "a400e31aa60b9d44a52a8ee0343b5b18566b03a8321e0d321f695cf56e940160"
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"
2022-07-02 15:52:24 +00:00
version = "0.6.0"
2021-12-13 17:21:31 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-02 15:52:24 +00:00
checksum = "f0b2cd6e5074ff67679a0ff68bc6333be78d29910ba7cd295d948aa5ff152032"
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",
"tracing-futures",
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"
2022-07-02 15:52:24 +00:00
version = "0.1.22"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-02 15:52:24 +00:00
checksum = "11c75893af559bc8e10716548bdef5cb2b983f8e637db9d0e15126b61b484ee2"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "tracing-awc"
2022-04-07 02:40:49 +00:00
version = "0.1.5"
2021-12-13 17:21:31 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-07 02:40:49 +00:00
checksum = "48723b87eafb89a0c219d5b2c1478711d69c8860503f79586a7e93231238bbb7"
dependencies = [
"actix-http",
2021-12-03 20:21:31 +00:00
"actix-service",
"awc",
"bytes",
"futures-core",
2021-09-25 20:42:06 +00:00
"opentelemetry",
2021-12-03 20:21:31 +00:00
"pin-project-lite",
"tracing",
2021-09-25 20:42:06 +00:00
"tracing-opentelemetry",
]
[[package]]
name = "tracing-core"
2022-07-02 15:52:24 +00:00
version = "0.1.28"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-02 15:52:24 +00:00
checksum = "7b7358be39f2f274f322d2aaed611acc57f382e8eb1e5b48cb9ae30933495ce7"
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"
2022-07-02 15:52:24 +00:00
version = "0.17.4"
2021-09-18 21:29:30 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-02 15:52:24 +00:00
checksum = "fbbe89715c1dbbb790059e2565353978564924ee85017b5fff365c872ff6721f"
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"
2022-07-02 15:52:24 +00:00
version = "0.3.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-02 15:52:24 +00:00
checksum = "3a713421342a5a666b7577783721d3117f1b69a393df803ee17bb73b1e122a59"
dependencies = [
2021-12-03 20:21:31 +00:00
"ansi_term",
"matchers",
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"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642"
[[package]]
name = "twoway"
2021-06-19 19:39:41 +00:00
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-19 19:39:41 +00:00
checksum = "c57ffb460d7c24cd6eda43694110189030a3d1dfe418416d9468fd1c1d290b47"
dependencies = [
"memchr",
"unchecked-index",
]
[[package]]
name = "typenum"
2021-12-28 17:03:53 +00:00
version = "1.15.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-28 17:03:53 +00:00
checksum = "dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987"
2022-02-26 18:22:30 +00:00
[[package]]
name = "ucd-trie"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "56dee185309b50d1f11bfedef0fe6d036842e3fb77413abef29f8f8d1c5d4c1c"
[[package]]
name = "unchecked-index"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eeba86d422ce181a719445e51872fa30f1f7413b62becb52e95ec91aa262d85c"
[[package]]
name = "unicode-bidi"
2022-04-28 01:13:49 +00:00
version = "0.3.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-28 01:13:49 +00:00
checksum = "099b7128301d285f79ddd55b9a83d5e6b9e97c92e0ea0daebee7263e932de992"
2022-05-26 14:46:43 +00:00
[[package]]
name = "unicode-ident"
2022-06-21 16:27:57 +00:00
version = "1.0.1"
2022-05-26 14:46:43 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-21 16:27:57 +00:00
checksum = "5bd2fe26506023ed7b5e1e315add59d6f584c621d037f9368fea9cfb988f368c"
2022-05-26 14:46:43 +00:00
[[package]]
name = "unicode-normalization"
2022-07-02 15:52:24 +00:00
version = "0.1.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-02 15:52:24 +00:00
checksum = "854cbdc4f7bc6ae19c820d44abdc3277ac3e1b2b93db20a636825d9322fb60e6"
dependencies = [
2020-12-03 17:38:28 +00:00
"tinyvec",
]
[[package]]
name = "unicode-segmentation"
2022-02-11 17:23:48 +00:00
version = "1.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-11 17:23:48 +00:00
checksum = "7e8820f5d777f6224dc4be3632222971ac30164d4a258d595640799554ebfd99"
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"
2021-06-19 19:39:41 +00:00
version = "2.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-19 19:39:41 +00:00
checksum = "a507c383b2d33b5fc35d1861e77e6b383d158b2da5e14fe51b83dfedf6fd578c"
dependencies = [
2020-12-03 17:38:28 +00:00
"form_urlencoded",
"idna",
"matches",
"percent-encoding",
2022-02-26 18:22:30 +00:00
"serde",
]
2022-04-24 22:11:32 +00:00
[[package]]
name = "uuid"
2022-06-21 16:27:57 +00:00
version = "1.1.2"
2022-04-24 22:11:32 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-21 16:27:57 +00:00
checksum = "dd6469f4314d5f1ffec476e05f17cc9a78bc7a27a6a857842170bdf8d6f98d2f"
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"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0"
dependencies = [
"log",
"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"
2022-06-21 16:27:57 +00:00
version = "0.2.81"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-21 16:27:57 +00:00
checksum = "7c53b543413a17a202f4be280a7e5c62a1c69345f5de525ee64f8cfdbc954994"
dependencies = [
2021-02-10 22:57:42 +00:00
"cfg-if",
"wasm-bindgen-macro",
]
[[package]]
name = "wasm-bindgen-backend"
2022-06-21 16:27:57 +00:00
version = "0.2.81"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-21 16:27:57 +00:00
checksum = "5491a68ab4500fa6b4d726bd67408630c3dbe9c4fe7bda16d5c82a1fd8c7340a"
dependencies = [
"bumpalo",
"lazy_static",
"log",
"proc-macro2",
"quote",
"syn",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-futures"
2022-06-21 16:27:57 +00:00
version = "0.4.31"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-21 16:27:57 +00:00
checksum = "de9a9cec1733468a8c657e57fa2413d2ae2c0129b95e87c5b72b8ace4d13f31f"
dependencies = [
"cfg-if",
"js-sys",
"wasm-bindgen",
"web-sys",
]
[[package]]
name = "wasm-bindgen-macro"
2022-06-21 16:27:57 +00:00
version = "0.2.81"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-21 16:27:57 +00:00
checksum = "c441e177922bc58f1e12c022624b6216378e5febc2f0533e41ba443d505b80aa"
dependencies = [
"quote",
"wasm-bindgen-macro-support",
]
[[package]]
name = "wasm-bindgen-macro-support"
2022-06-21 16:27:57 +00:00
version = "0.2.81"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-21 16:27:57 +00:00
checksum = "7d94ac45fcf608c1f45ef53e748d35660f168490c10b23704c7779ab8f5c3048"
dependencies = [
"proc-macro2",
"quote",
"syn",
"wasm-bindgen-backend",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-shared"
2022-06-21 16:27:57 +00:00
version = "0.2.81"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-21 16:27:57 +00:00
checksum = "6a89911bd99e5f3659ec4acf9c4d93b0a90fe4a2a11f15328472058edc5261be"
2021-09-12 16:00:29 +00:00
[[package]]
name = "web-sys"
2022-06-21 16:27:57 +00:00
version = "0.3.58"
2021-09-12 16:00:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-21 16:27:57 +00:00
checksum = "2fed94beee57daf8dd7d51f2b15dc2bcde92d7a72304cdf662a4371008b71b90"
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-04-11 20:17:54 +00:00
version = "0.22.3"
2021-09-12 16:00:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-11 20:17:54 +00:00
checksum = "44d8de8415c823c8abd270ad483c6feeac771fad964890779f9a8cb24fbbc1bf"
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
]
2021-09-18 21:29:30 +00:00
[[package]]
name = "which"
version = "4.2.5"
2021-09-18 21:29:30 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5c4fb54e6113b6a8772ee41c3404fb0301ac79604489467e0a9ce1f3e97c24ae"
2021-09-18 21:29:30 +00:00
dependencies = [
"either",
"lazy_static",
"libc",
]
[[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"
2022-03-25 03:06:29 +00:00
[[package]]
name = "winapi-util"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
dependencies = [
"winapi",
]
[[package]]
name = "winapi-x86_64-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
2022-02-11 17:23:48 +00:00
[[package]]
name = "windows-sys"
2022-05-26 14:46:43 +00:00
version = "0.36.1"
2022-02-11 17:23:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-26 14:46:43 +00:00
checksum = "ea04155a16a59f9eab786fe12a4a450e75cdb175f9e0d80da1e17db09f55b8d2"
2022-02-11 17:23:48 +00:00
dependencies = [
"windows_aarch64_msvc",
"windows_i686_gnu",
"windows_i686_msvc",
"windows_x86_64_gnu",
"windows_x86_64_msvc",
]
[[package]]
name = "windows_aarch64_msvc"
2022-05-26 14:46:43 +00:00
version = "0.36.1"
2022-02-11 17:23:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-26 14:46:43 +00:00
checksum = "9bb8c3fd39ade2d67e9874ac4f3db21f0d710bee00fe7cab16949ec184eeaa47"
2022-02-11 17:23:48 +00:00
[[package]]
name = "windows_i686_gnu"
2022-05-26 14:46:43 +00:00
version = "0.36.1"
2022-02-11 17:23:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-26 14:46:43 +00:00
checksum = "180e6ccf01daf4c426b846dfc66db1fc518f074baa793aa7d9b9aaeffad6a3b6"
2022-02-11 17:23:48 +00:00
[[package]]
name = "windows_i686_msvc"
2022-05-26 14:46:43 +00:00
version = "0.36.1"
2022-02-11 17:23:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-26 14:46:43 +00:00
checksum = "e2e7917148b2812d1eeafaeb22a97e4813dfa60a3f8f78ebe204bcc88f12f024"
2022-02-11 17:23:48 +00:00
[[package]]
name = "windows_x86_64_gnu"
2022-05-26 14:46:43 +00:00
version = "0.36.1"
2022-02-11 17:23:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-26 14:46:43 +00:00
checksum = "4dcd171b8776c41b97521e5da127a2d86ad280114807d0b2ab1e462bc764d9e1"
2022-02-11 17:23:48 +00:00
[[package]]
name = "windows_x86_64_msvc"
2022-05-26 14:46:43 +00:00
version = "0.36.1"
2022-02-11 17:23:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-26 14:46:43 +00:00
checksum = "c811ca4a8c853ef420abd8592ba53ddbbac90410fab6903b3e79972a631f7680"
2022-02-11 17:23:48 +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 = "xml-rs"
version = "0.8.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d2d7d3948613f75c98fd9328cfdcc45acc4d360655289d0a7d4ec931392200a3"
[[package]]
name = "yaml-rust"
version = "0.4.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85"
dependencies = [
"linked-hash-map",
]