pict-rs/Cargo.lock

2956 lines
69 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-09-21 03:42:14 +00:00
"tokio-util",
2020-09-10 16:12:42 +00:00
]
[[package]]
name = "actix-form-data"
version = "0.7.0-beta.0"
2022-09-24 22:18:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e721f3919cb43c566c0dbb6a9cb5ad5106ac42b6b3c0d21a7a3e762455de957a"
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-09-21 03:42:14 +00:00
version = "3.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-21 03:42:14 +00:00
checksum = "0c83abf9903e1f0ad9973cc4f7b9767fd5a03a583f51a5b7a339e07987cd2724"
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-09-21 03:42:14 +00:00
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-21 03:42:14 +00:00
checksum = "d66ff4d247d2b160861fa2866457e85706833527840e4133f8f49aa423a38799"
dependencies = [
"bytestring",
"http",
"regex",
2022-02-26 18:22:30 +00:00
"serde",
2022-09-21 03:42:14 +00:00
"tracing",
]
[[package]]
name = "actix-rt"
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-09-21 03:42:14 +00:00
"tokio-util",
2021-12-28 17:03:53 +00:00
"webpki-roots",
]
2020-09-10 16:12:42 +00:00
[[package]]
name = "actix-utils"
2022-11-26 17:17:47 +00:00
version = "3.0.1"
2020-09-10 16:12:42 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-26 17:17:47 +00:00
checksum = "88a1dcdff1466e3c2488e1cb5c36a71822750ad43839937f85d2f4d9f8b705d8"
2020-09-10 16:12:42 +00:00
dependencies = [
2021-04-02 18:11:20 +00:00
"local-waker",
2021-02-10 22:57:42 +00:00
"pin-project-lite",
2020-09-10 16:12:42 +00:00
]
[[package]]
name = "actix-web"
2022-09-21 03:42:14 +00:00
version = "4.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-21 03:42:14 +00:00
checksum = "d48f7b6534e06c7bfc72ee91db7917d4af6afe23e7d223b51e68fffbb21e96b9"
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-09-21 03:42:14 +00:00
"http",
2022-02-11 17:23:48 +00:00
"itoa",
2021-04-02 18:11:20 +00:00
"language-tags",
"log",
"mime",
2021-04-02 18:11:20 +00:00
"once_cell",
2021-12-03 20:21:31 +00:00
"pin-project-lite",
"regex",
2022-02-26 18:22:30 +00:00
"serde",
"serde_json",
"serde_urlencoded",
2021-02-10 22:57:42 +00:00
"smallvec",
"socket2",
2022-02-26 18:22:30 +00:00
"time",
"url",
]
2022-03-29 01:47:46 +00:00
[[package]]
name = "addr2line"
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"
2022-11-26 17:17:47 +00:00
version = "0.7.20"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-26 17:17:47 +00:00
checksum = "cc936419f96fa211c1b9166887b38e5e40b19958e5b895be7c1f93adec7071ac"
dependencies = [
"memchr",
]
[[package]]
name = "anyhow"
2022-11-26 17:17:47 +00:00
version = "1.0.66"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-26 17:17:47 +00:00
checksum = "216261ddc8289130e551ddcd5ce8a064710c0d064a4d2895c67151c92b5443f6"
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-11-26 17:17:47 +00:00
version = "0.1.58"
2021-09-18 21:29:30 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-26 17:17:47 +00:00
checksum = "1e805d94e6b5001b651426cf4cd446b1ab5f319d27bab5c644f61de0a804360c"
2021-09-18 21:29:30 +00:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[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"
version = "3.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "80ca7ff88063086d2e2c70b9f3b29b2fcd999bac68ac21731e66781970d68519"
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",
]
2022-04-11 20:17:54 +00:00
[[package]]
name = "axum"
2022-11-26 17:17:47 +00:00
version = "0.5.17"
2022-04-11 20:17:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-26 17:17:47 +00:00
checksum = "acee9fd5073ab6b045a275b3e709c163dd36c90685219cb21804a147b58dba43"
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-11-26 17:17:47 +00:00
version = "0.2.9"
2022-04-11 20:17:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-26 17:17:47 +00:00
checksum = "37e5939e02c56fecd5c017c37df4238c0a839fa76b7f97acdd7efb804fd181cc"
2022-04-11 20:17:54 +00:00
dependencies = [
"async-trait",
"bytes",
"futures-util",
"http",
"http-body",
"mime",
"tower-layer",
"tower-service",
2022-04-11 20:17:54 +00:00
]
2022-03-29 01:47:46 +00:00
[[package]]
name = "backtrace"
2022-07-17 16:16:44 +00:00
version = "0.3.66"
2022-03-29 01:47:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-17 16:16:44 +00:00
checksum = "cab84319d616cfb654d03394f38ab7e6f0919e181b1b57e1fd15e7fb4077d9a7"
2022-03-29 01:47:46 +00:00
dependencies = [
"addr2line",
"cc",
"cfg-if",
"libc",
2022-11-26 17:17:47 +00:00
"miniz_oxide 0.5.4",
2022-03-29 01:47:46 +00:00
"object",
"rustc-demangle",
]
2020-10-10 23:22:00 +00:00
[[package]]
name = "base64"
2022-11-26 17:17:47 +00:00
version = "0.13.1"
2020-10-10 23:22:00 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-26 17:17:47 +00:00
checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
2020-10-10 23:22:00 +00:00
[[package]]
name = "bitflags"
version = "1.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
2021-12-17 02:46:46 +00:00
[[package]]
name = "block-buffer"
version = "0.10.3"
2021-12-17 02:46:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "69cce20737498f97b993470a6e536b8523f0af7892a4f928cceb1ac5e52ebe7e"
2021-12-17 02:46:46 +00:00
dependencies = [
2022-08-19 19:13:06 +00:00
"generic-array",
2021-12-17 02:46:46 +00:00
]
[[package]]
name = "bumpalo"
2022-11-26 17:17:47 +00:00
version = "3.11.1"
2022-02-26 18:22:30 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-26 17:17:47 +00:00
checksum = "572f695136211188308f16ad2ca5c851a712c464060ae6974944458eb83880ba"
2022-02-26 18:22:30 +00:00
[[package]]
name = "byteorder"
2021-04-02 18:11:20 +00:00
version = "1.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-02 18:11:20 +00:00
checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
[[package]]
name = "bytes"
2022-11-26 17:17:47 +00:00
version = "1.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-26 17:17:47 +00:00
checksum = "dfb24e866b15a1af2a1b663f10c6b6b8f397a84aadb828f12e5b289ec23a3a3c"
[[package]]
name = "bytestring"
2022-11-26 17:17:47 +00:00
version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-26 17:17:47 +00:00
checksum = "f7f83e57d9154148e355404702e2694463241880b939570d7c97c014da7a69a1"
dependencies = [
"bytes",
]
2021-09-12 16:00:29 +00:00
[[package]]
name = "cc"
2022-11-26 17:17:47 +00:00
version = "1.0.77"
2021-09-12 16:00:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-26 17:17:47 +00:00
checksum = "e9f73505338f7d905b19d18738976aae232eb46b8efc15554ffc56deb5d9ebe4"
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-11-26 17:17:47 +00:00
version = "4.0.27"
2020-06-07 00:54:06 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-26 17:17:47 +00:00
checksum = "0acbd8d28a0a60d7108d7ae850af6ba34cf2d1257fc646980e5f97ce14275966"
2020-06-07 00:54:06 +00:00
dependencies = [
"bitflags",
2022-03-25 03:06:29 +00:00
"clap_derive",
2022-04-24 22:10:15 +00:00
"clap_lex",
2022-11-26 17:17:47 +00:00
"is-terminal",
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",
]
[[package]]
name = "clap_derive"
2022-11-26 17:17:47 +00:00
version = "4.0.21"
2022-03-25 03:06:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-26 17:17:47 +00:00
checksum = "0177313f9f02afc995627906bbd8967e2be069f5261954222dac78290c2b9014"
2022-03-25 03:06:29 +00:00
dependencies = [
2022-09-21 03:42:14 +00:00
"heck",
2022-03-25 03:06:29 +00:00
"proc-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-09-28 23:23:41 +00:00
version = "0.3.0"
2022-04-24 22:10:15 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:23:41 +00:00
checksum = "0d4198f73e42b4936b35b5bb248d81d2b595ecb170da0bac7655c54eedfa8da8"
2022-04-24 22:10:15 +00:00
dependencies = [
"os_str_bytes",
]
2022-03-29 01:47:46 +00:00
[[package]]
name = "color-eyre"
2022-07-17 16:16:44 +00:00
version = "0.6.2"
2022-03-29 01:47:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-17 16:16:44 +00:00
checksum = "5a667583cca8c4f8436db8de46ea8233c42a7d9ae424a82d338f2e4675229204"
2022-03-29 01:47:46 +00:00
dependencies = [
"backtrace",
"color-spantrace",
"eyre",
"indenter",
"once_cell",
"owo-colors",
"tracing-error",
]
[[package]]
name = "color-spantrace"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1ba75b3d9449ecdccb27ecbc479fdc0b87fa2dd43d2f8298f9bf0e59aacc8dce"
dependencies = [
"once_cell",
"owo-colors",
"tracing-core",
"tracing-error",
]
[[package]]
name = "config"
2022-08-19 19:13:06 +00:00
version = "0.13.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-19 19:13:06 +00:00
checksum = "11f1667b8320afa80d69d8bbe40830df2c8a06003d86f73d8e003b2c48df416d"
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-08-19 19:13:06 +00:00
version = "0.4.0"
2021-12-17 02:46:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-19 19:13:06 +00:00
checksum = "e57ff02e8ad8e06ab9731d5dc72dc23bef9200778eae1a89d555d8c42e5d4a86"
2021-12-17 02:46:46 +00:00
dependencies = [
2022-09-21 03:42:14 +00:00
"prost",
"prost-types",
"tonic",
2021-12-17 02:46:46 +00:00
"tracing-core",
]
[[package]]
name = "console-subscriber"
version = "0.1.8"
2021-12-17 02:46:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "22a3a81dfaf6b66bce5d159eddae701e3a002f194d378cbf7be5f053c281d9be"
2021-12-17 02:46:46 +00:00
dependencies = [
"console-api",
2022-01-24 04:39:03 +00:00
"crossbeam-channel",
2022-02-26 18:22:30 +00:00
"crossbeam-utils",
2021-12-17 02:46:46 +00:00
"futures",
"hdrhistogram",
"humantime",
2022-09-21 03:42:14 +00:00
"prost-types",
2022-02-26 18:22:30 +00:00
"serde",
2021-12-17 02:46:46 +00:00
"serde_json",
"thread_local",
"tokio",
"tokio-stream",
2022-09-21 03:42:14 +00:00
"tonic",
2021-12-17 02:46:46 +00:00
"tracing",
"tracing-core",
"tracing-subscriber",
]
2021-04-02 18:11:20 +00:00
[[package]]
name = "convert_case"
version = "0.4.0"
2020-09-10 16:12:42 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-02 18:11:20 +00:00
checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e"
2020-09-10 16:12:42 +00:00
[[package]]
2021-06-19 19:39:41 +00:00
name = "cpufeatures"
version = "0.2.5"
2020-09-10 16:12:42 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "28d997bd5e24a5928dd43e46dc529867e207907fe0b239c3477d924f7f2ca320"
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-08-19 19:13:06 +00:00
version = "0.5.6"
2021-09-18 21:29:30 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-19 19:13:06 +00:00
checksum = "c2dd04ddaf88237dc3b8d8f9a3c1004b506b54b3313403944054d23c0870c521"
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-11-26 17:17:47 +00:00
version = "0.9.13"
2020-12-03 17:38:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-26 17:17:47 +00:00
checksum = "01a9af1f4c2ef74bb8aa1f7e19706bc72d03598c8a570bb5de72243c7a9d9d5a"
2020-12-03 17:38:28 +00:00
dependencies = [
"autocfg",
2021-02-10 22:57:42 +00:00
"cfg-if",
"crossbeam-utils",
"memoffset",
"scopeguard",
]
2020-12-03 17:38:28 +00:00
[[package]]
name = "crossbeam-utils"
2022-11-26 17:17:47 +00:00
version = "0.8.14"
2020-12-03 17:38:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-26 17:17:47 +00:00
checksum = "4fb766fa798726286dbbb842f174001dab8abc7b627a1dd86e0b7222a95d929f"
2020-12-03 17:38:28 +00:00
dependencies = [
2021-02-10 22:57:42 +00:00
"cfg-if",
2020-12-03 17:38:28 +00:00
]
2021-12-17 02:46:46 +00:00
[[package]]
name = "crypto-common"
2022-07-17 16:16:44 +00:00
version = "0.1.6"
2021-12-17 02:46:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-17 16:16:44 +00:00
checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
2021-12-17 02:46:46 +00:00
dependencies = [
2022-08-19 19:13:06 +00:00
"generic-array",
2022-02-26 18:22:30 +00:00
"typenum",
2021-12-17 02:46:46 +00:00
]
[[package]]
name = "dashmap"
version = "5.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "907076dfda823b0b36d2a1bb5f90c96660a5bbcd7729e10727f07858f22c4edc"
dependencies = [
"cfg-if",
2022-06-21 16:27:57 +00:00
"hashbrown",
2022-04-29 19:41:03 +00:00
"lock_api",
"once_cell",
2022-11-26 17:17:47 +00:00
"parking_lot_core 0.9.4",
]
[[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",
]
2021-12-17 02:46:46 +00:00
[[package]]
name = "digest"
2022-11-26 17:17:47 +00:00
version = "0.10.6"
2021-12-17 02:46:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-26 17:17:47 +00:00
checksum = "8168378f4e5023e7218c89c891c0fd8ecdb5e5e4f18cb78f38cf245dd021e76f"
2021-12-17 02:46:46 +00:00
dependencies = [
2022-08-19 19:13:06 +00:00
"block-buffer",
2021-12-17 02:46:46 +00:00
"crypto-common",
2022-04-29 20:54:54 +00:00
"subtle",
2021-12-17 02:46:46 +00:00
]
[[package]]
name = "dlv-list"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0688c2a7f92e427f44895cd63841bff7b29f8d7a1648b9e7e07a4a365b2e1257"
[[package]]
name = "either"
2022-08-19 19:13:06 +00:00
version = "1.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-19 19:13:06 +00:00
checksum = "90e5c1c8368803113bf0c9584fc495a58b86dc8a29edbf8fe877d21d9507e797"
[[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-11-26 17:17:47 +00:00
[[package]]
name = "errno"
version = "0.2.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f639046355ee4f37944e44f60642c6f3a7efa3cf6b78c78a0d989a8ce6c396a1"
dependencies = [
"errno-dragonfly",
"libc",
"winapi",
]
[[package]]
name = "errno-dragonfly"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf"
dependencies = [
"cc",
"libc",
]
2022-03-29 01:47:46 +00:00
[[package]]
name = "eyre"
2022-04-07 02:40:49 +00:00
version = "0.6.8"
2022-03-29 01:47:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-07 02:40:49 +00:00
checksum = "4c2b6b5a29c02cdc822728b7d7b8ae1bab3e3b05d44522770ddd49722eeac7eb"
2022-03-29 01:47:46 +00:00
dependencies = [
"indenter",
"once_cell",
]
[[package]]
name = "fastrand"
2022-08-19 19:13:06 +00:00
version = "1.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-19 19:13:06 +00:00
checksum = "a7a407cfaa3385c4ae6b23e84623d48c2798d06e3e6a1878f7f59f17b3f86499"
dependencies = [
"instant",
]
2021-12-17 02:46:46 +00:00
[[package]]
name = "fixedbitset"
2022-07-17 16:16:44 +00:00
version = "0.4.2"
2021-12-17 02:46:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-17 16:16:44 +00:00
checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80"
2021-12-17 02:46:46 +00:00
[[package]]
name = "flate2"
2022-11-26 17:17:47 +00:00
version = "1.0.25"
2021-12-17 02:46:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-26 17:17:47 +00:00
checksum = "a8a2db397cb1c8772f31494cb8917e48cd1e64f0fa7efac59fbd741a0a8ce841"
2021-12-17 02:46:46 +00:00
dependencies = [
"crc32fast",
2022-11-26 17:17:47 +00:00
"miniz_oxide 0.6.2",
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"
version = "1.1.0"
2020-12-03 17:38:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a9c384f161156f5260c24a097c56119f9be8c798586aecc13afbcbe7b7e26bf8"
2020-12-03 17:38:28 +00:00
dependencies = [
"percent-encoding",
]
[[package]]
name = "fs2"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9564fc758e15025b46aa6643b1b77d047d1a56a1aea6e01002ac0c7026876213"
dependencies = [
"libc",
2021-02-10 22:57:42 +00:00
"winapi",
]
[[package]]
name = "futures"
2022-11-26 17:17:47 +00:00
version = "0.3.25"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-26 17:17:47 +00:00
checksum = "38390104763dc37a5145a53c29c63c1290b5d316d6086ec32c293f6736051bb0"
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-11-26 17:17:47 +00:00
version = "0.3.25"
2021-09-14 01:22:42 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-26 17:17:47 +00:00
checksum = "52ba265a92256105f45b719605a571ffe2d1f0fea3807304b522c1d778f79eed"
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-11-26 17:17:47 +00:00
version = "0.3.25"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-26 17:17:47 +00:00
checksum = "04909a7a7e4633ae6c4a9ab280aeb86da1236243a77b694a49eacd659a4bd3ac"
2021-09-14 01:22:42 +00:00
[[package]]
name = "futures-executor"
2022-11-26 17:17:47 +00:00
version = "0.3.25"
2021-09-14 01:22:42 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-26 17:17:47 +00:00
checksum = "7acc85df6714c176ab5edf386123fafe217be88c0840ec11f199441134a074e2"
2021-09-14 01:22:42 +00:00
dependencies = [
"futures-core",
"futures-task",
"futures-util",
]
[[package]]
name = "futures-io"
2022-11-26 17:17:47 +00:00
version = "0.3.25"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-26 17:17:47 +00:00
checksum = "00f5fb52a06bdcadeb54e8d3671f8888a39697dcb0b81b23b55174030427f4eb"
[[package]]
name = "futures-macro"
2022-11-26 17:17:47 +00:00
version = "0.3.25"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-26 17:17:47 +00:00
checksum = "bdfb8ce053d86b91919aad980c220b1fb8401a9394410e1c289ed7e66b61835d"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "futures-sink"
2022-11-26 17:17:47 +00:00
version = "0.3.25"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-26 17:17:47 +00:00
checksum = "39c15cf1a4aa79df40f1bb462fb39676d0ad9e366c2a33b590d7c66f4f81fcf9"
[[package]]
name = "futures-task"
2022-11-26 17:17:47 +00:00
version = "0.3.25"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-26 17:17:47 +00:00
checksum = "2ffb393ac5d9a6eaa9d3fdf37ae2776656b706e200c8e16b1bdb227f5198e6ea"
[[package]]
name = "futures-util"
2022-11-26 17:17:47 +00:00
version = "0.3.25"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-26 17:17:47 +00:00
checksum = "197676987abd2f9cadff84926f410af1c183608d36641465df73ae8211dc65d6"
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"
2022-08-19 19:13:06 +00:00
version = "0.14.6"
2020-06-11 00:34:25 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-19 19:13:06 +00:00
checksum = "bff49e947297f3312447abdca79f45f4738097cc82b06e72054d2223f601f1b9"
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-11-26 17:17:47 +00:00
version = "0.2.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-26 17:17:47 +00:00
checksum = "c05aeb6a22b8f62540c194aac980f2115af067bfe15a0734d7277a768d396b31"
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"
2022-07-17 16:16:44 +00:00
version = "0.26.2"
2022-03-29 01:47:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-17 16:16:44 +00:00
checksum = "22030e2c5a68ec659fde1e949a745124b48e6fa8b045b7ed5bd1fe4ccc5c4e5d"
2022-03-29 01:47:46 +00:00
[[package]]
name = "h2"
2022-11-26 17:17:47 +00:00
version = "0.3.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-26 17:17:47 +00:00
checksum = "5f9f29bc9dda355256b2916cf526ab02ce0aeaaaf2bad60d65ef3f12f11dd0f4"
dependencies = [
"bytes",
"fnv",
"futures-core",
"futures-sink",
"futures-util",
"http",
"indexmap",
"slab",
"tokio",
2022-09-21 03:42:14 +00:00
"tokio-util",
2020-09-10 16:12:42 +00:00
"tracing",
]
[[package]]
name = "half"
version = "1.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eabb4a44450da02c90444cf74558da904edde8fb4e9035a9a6a4e15445af0bd7"
[[package]]
name = "hashbrown"
2022-07-17 16:16:44 +00:00
version = "0.12.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-17 16:16:44 +00:00
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
dependencies = [
2022-04-03 20:21:14 +00:00
"ahash",
]
2021-12-17 02:46:46 +00:00
[[package]]
name = "hdrhistogram"
2022-09-21 03:42:14 +00:00
version = "7.5.2"
2021-12-17 02:46:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-21 03:42:14 +00:00
checksum = "7f19b9f54f7c7f55e31401bb647626ce0cf0f67b0004982ce815b3ee72a02aa8"
2021-12-17 02:46:46 +00:00
dependencies = [
"base64",
"byteorder",
"flate2",
2022-02-26 18:22:30 +00:00
"nom",
"num-traits",
2021-12-17 02:46:46 +00:00
]
2022-03-25 03:06:29 +00:00
[[package]]
name = "heck"
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",
]
2022-11-26 17:17:47 +00:00
[[package]]
name = "hermit-abi"
version = "0.2.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7"
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-08-19 19:13:06 +00:00
"digest",
]
[[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"
version = "1.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904"
2021-09-18 21:29:30 +00:00
[[package]]
name = "httpdate"
2021-11-23 00:24:05 +00:00
version = "1.0.2"
2021-09-18 21:29:30 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-11-23 00:24:05 +00:00
checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421"
2021-09-18 21:29:30 +00:00
2021-12-17 02:46:46 +00:00
[[package]]
name = "humantime"
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
2021-09-18 21:29:30 +00:00
[[package]]
name = "hyper"
2022-11-26 17:17:47 +00:00
version = "0.14.23"
2021-09-18 21:29:30 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-26 17:17:47 +00:00
checksum = "034711faac9d2166cb1baf1a2fb0b60b1f277f8492fd72176c17f3515e1abd3c"
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-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"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6"
dependencies = [
"unicode-bidi",
"unicode-normalization",
]
2022-03-29 01:47:46 +00:00
[[package]]
name = "indenter"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ce23b50ad8242c51a442f3ff322d56b02f08852c77e4c0b4d3fd684abc89c683"
[[package]]
name = "indexmap"
2022-11-26 17:17:47 +00:00
version = "1.9.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-26 17:17:47 +00:00
checksum = "1885e79c1fc4b10f0e172c475f458b7f7b93061064d98c3293e98c5ba0c8b399"
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",
]
2022-11-26 17:17:47 +00:00
[[package]]
name = "io-lifetimes"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e394faa0efb47f9f227f1cd89978f854542b318a6f64fa695489c9c993056656"
dependencies = [
"libc",
"windows-sys",
]
2021-10-13 04:16:31 +00:00
[[package]]
name = "io-uring"
2022-11-26 17:17:47 +00:00
version = "0.5.9"
2021-10-13 04:16:31 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-26 17:17:47 +00:00
checksum = "7ba34abb5175052fc1a2227a10d2275b7386c9990167de9786c0b88d8b062330"
2021-10-13 04:16:31 +00:00
dependencies = [
"bitflags",
"libc",
]
2022-11-26 17:17:47 +00:00
[[package]]
name = "is-terminal"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "aae5bc6e2eb41c9def29a3e0f1306382807764b9b53112030eff57435667352d"
dependencies = [
"hermit-abi 0.2.6",
"io-lifetimes",
"rustix",
"windows-sys",
]
2021-09-18 21:29:30 +00:00
[[package]]
name = "itertools"
2022-09-21 03:42:14 +00:00
version = "0.10.5"
2021-09-18 21:29:30 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-21 03:42:14 +00:00
checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
2021-09-18 21:29:30 +00:00
dependencies = [
"either",
]
2021-12-17 02:46:46 +00:00
[[package]]
name = "itoa"
2022-10-15 16:13:24 +00:00
version = "1.0.4"
2021-12-17 02:46:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-15 16:13:24 +00:00
checksum = "4217ad341ebadf8d8e724e264f13e593e0648f5b3e94b3896a5df283be015ecc"
2021-12-17 02:46:46 +00:00
2021-09-12 16:00:29 +00:00
[[package]]
name = "js-sys"
2022-09-21 03:42:14 +00:00
version = "0.3.60"
2021-09-12 16:00:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-21 03:42:14 +00:00
checksum = "49409df3e3bf0856b916e2ceaca09ee28e6871cf7d9ce97a692cacfdb2a25a47"
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-11-26 17:17:47 +00:00
version = "0.2.137"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-26 17:17:47 +00:00
checksum = "fc7fcc620a3bff7cdd7a365be3376c97191aeaccc2a603e600951e452615bf89"
[[package]]
name = "linked-hash-map"
2022-07-02 15:52:24 +00:00
version = "0.5.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-02 15:52:24 +00:00
checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f"
2022-11-26 17:17:47 +00:00
[[package]]
name = "linux-raw-sys"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8f9f08d8963a6c613f4b1a78f4f4a4dbfadf8e6545b2d72861731e4858b8b47f"
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-09-21 03:42:14 +00:00
version = "0.4.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-21 03:42:14 +00:00
checksum = "435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df"
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",
]
[[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",
]
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 = "md-5"
version = "0.10.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6365506850d44bff6e2fbcb5176cf63650e48bd45ef2fe2665ae1570e0f4b9ca"
dependencies = [
"digest",
]
[[package]]
name = "memchr"
2022-05-26 14:46:43 +00:00
version = "2.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-26 14:46:43 +00:00
checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
2020-12-03 17:38:28 +00:00
[[package]]
name = "memoffset"
2022-11-26 17:17:47 +00:00
version = "0.7.1"
2020-12-03 17:38:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-26 17:17:47 +00:00
checksum = "5de893c32cde5f383baa4c04c5d6dbdd735cfd4a794b0debdb2bb1b421da5ff4"
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"
version = "0.5.4"
2022-04-11 20:17:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "96590ba8f175222643a85693f33d26e9c8a015f599c216509b1a6894af675d34"
2022-04-11 20:17:54 +00:00
dependencies = [
"adler",
]
2022-11-26 17:17:47 +00:00
[[package]]
name = "miniz_oxide"
version = "0.6.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b275950c28b37e794e8c55d88aeb5e139d0ce23fdbbeda68f8d7174abdf9e8fa"
dependencies = [
"adler",
]
[[package]]
name = "mio"
2022-11-26 17:17:47 +00:00
version = "0.8.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-26 17:17:47 +00:00
checksum = "e5d732bc30207a6423068df043e3d02e0735b155ad7ce1a6f76fe2baa5b158de"
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",
]
2022-10-15 16:13:24 +00:00
[[package]]
name = "nu-ansi-term"
version = "0.46.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84"
dependencies = [
"overload",
"winapi",
]
[[package]]
name = "num-traits"
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"
2022-11-26 17:17:47 +00:00
version = "1.14.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-26 17:17:47 +00:00
checksum = "f6058e64324c71e02bc2b150e4f3bc8286db6c83092132ffa3f6b1eab0f9def5"
2022-01-24 04:39:03 +00:00
dependencies = [
2022-11-26 17:17:47 +00:00
"hermit-abi 0.1.19",
2022-01-24 04:39:03 +00:00
"libc",
]
2022-03-29 01:47:46 +00:00
[[package]]
name = "object"
2022-07-17 16:16:44 +00:00
version = "0.29.0"
2022-03-29 01:47:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-17 16:16:44 +00:00
checksum = "21158b2c33aa6d4561f1c0a6ea283ca92bc54802a93b263e910746d679a7eb53"
2022-03-29 01:47:46 +00:00
dependencies = [
"memchr",
]
[[package]]
name = "once_cell"
2022-11-26 17:17:47 +00:00
version = "1.16.0"
2022-02-26 18:22:30 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-26 17:17:47 +00:00
checksum = "86f0b0d4bf799edbc74508c1e8bf170ff5f41238e5f8225603ca7caaae2b7860"
2022-02-26 18:22:30 +00:00
2021-09-18 21:29:30 +00:00
[[package]]
name = "opentelemetry"
2022-09-21 03:42:14 +00:00
version = "0.18.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-21 03:42:14 +00:00
checksum = "69d6c3d7288a106c0a363e4b0e8d308058d56902adefb16f4936f417ffef086e"
2021-09-18 21:29:30 +00:00
dependencies = [
2022-09-21 03:42:14 +00:00
"opentelemetry_api",
"opentelemetry_sdk",
2021-09-18 21:29:30 +00:00
]
[[package]]
name = "opentelemetry-otlp"
2022-09-21 03:42:14 +00:00
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-21 03:42:14 +00:00
checksum = "d1c928609d087790fc936a1067bdc310ae702bdf3b090c3f281b713622c8bbde"
2021-09-18 21:29:30 +00:00
dependencies = [
"async-trait",
"futures",
2022-02-04 17:33:12 +00:00
"futures-util",
2021-09-18 21:29:30 +00:00
"http",
"opentelemetry",
2022-09-21 03:42:14 +00:00
"opentelemetry-proto",
"prost",
2021-09-18 21:29:30 +00:00
"thiserror",
"tokio",
2022-09-21 03:42:14 +00:00
"tonic",
]
[[package]]
name = "opentelemetry-proto"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d61a2f56df5574508dd86aaca016c917489e589ece4141df1b5e349af8d66c28"
dependencies = [
"futures",
"futures-util",
"opentelemetry",
"prost",
"tonic",
2022-02-04 17:33:12 +00:00
"tonic-build",
2021-09-18 21:29:30 +00:00
]
2022-09-21 03:42:14 +00:00
[[package]]
name = "opentelemetry_api"
version = "0.18.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c24f96e21e7acc813c7a8394ee94978929db2bcc46cf6b5014fc612bf7760c22"
dependencies = [
"fnv",
"futures-channel",
"futures-util",
"indexmap",
"js-sys",
"once_cell",
"pin-project-lite",
"thiserror",
]
[[package]]
name = "opentelemetry_sdk"
version = "0.18.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1ca41c4933371b61c2a2f214bf16931499af4ec90543604ec828f7a625c09113"
dependencies = [
"async-trait",
"crossbeam-channel",
"dashmap",
"fnv",
"futures-channel",
"futures-executor",
"futures-util",
"once_cell",
"opentelemetry_api",
"percent-encoding",
"rand",
"thiserror",
"tokio",
"tokio-stream",
]
[[package]]
name = "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-11-26 17:17:47 +00:00
version = "6.4.1"
2022-03-25 03:06:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-26 17:17:47 +00:00
checksum = "9b7820b9daea5457c9f21c69448905d723fbd21136ccf521748f23fd49e723ee"
2022-03-25 03:06:29 +00:00
2022-10-15 16:13:24 +00:00
[[package]]
name = "overload"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39"
2022-03-29 01:47:46 +00:00
[[package]]
name = "owo-colors"
version = "3.5.0"
2022-03-29 01:47:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c1b04fb49957986fdce4d6ee7a65027d55d4b6d2265e5848bbb507b58ccfdb6f"
2022-03-29 01:47:46 +00:00
[[package]]
name = "parking_lot"
version = "0.11.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99"
dependencies = [
2020-09-10 16:12:42 +00:00
"instant",
"lock_api",
2022-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-11-26 17:17:47 +00:00
"parking_lot_core 0.9.4",
]
[[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-11-26 17:17:47 +00:00
version = "0.9.4"
2022-02-11 17:23:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-26 17:17:47 +00:00
checksum = "4dc9e0dc2adc1c69d09143aff38d3d30c5c3f0df0dad82e6d25547af174ebec0"
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"
version = "1.0.9"
2021-04-17 19:59:42 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b1de2e551fb905ac83f73f7aedf2f0cb4a0da7e35efa24a202a936269f1f18e1"
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.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e"
2022-02-26 18:22:30 +00:00
[[package]]
name = "pest"
2022-11-26 17:17:47 +00:00
version = "2.5.0"
2022-02-26 18:22:30 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-26 17:17:47 +00:00
checksum = "5f400b0f7905bf702f9f3dc3df5a121b16c54e9e8012c082905fdf09a931861a"
2022-02-26 18:22:30 +00:00
dependencies = [
2022-08-19 19:13:06 +00:00
"thiserror",
2022-02-26 18:22:30 +00:00
"ucd-trie",
]
[[package]]
name = "pest_derive"
2022-11-26 17:17:47 +00:00
version = "2.5.0"
2022-02-26 18:22:30 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-26 17:17:47 +00:00
checksum = "423c2ba011d6e27b02b482a3707c773d19aec65cc024637aec44e19652e66f63"
2022-02-26 18:22:30 +00:00
dependencies = [
"pest",
"pest_generator",
]
[[package]]
name = "pest_generator"
2022-11-26 17:17:47 +00:00
version = "2.5.0"
2022-02-26 18:22:30 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-26 17:17:47 +00:00
checksum = "3e64e6c2c85031c02fdbd9e5c72845445ca0a724d419aa0bc068ac620c9935c1"
2022-02-26 18:22:30 +00:00
dependencies = [
"pest",
"pest_meta",
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "pest_meta"
2022-11-26 17:17:47 +00:00
version = "2.5.0"
2022-02-26 18:22:30 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-26 17:17:47 +00:00
checksum = "57959b91f0a133f89a68be874a5c88ed689c19cd729ecdb5d762ebf16c64d662"
2022-02-26 18:22:30 +00:00
dependencies = [
2022-08-19 19:13:06 +00:00
"once_cell",
2022-02-26 18:22:30 +00:00
"pest",
2022-09-21 03:42:14 +00:00
"sha1",
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-10-15 19:06:57 +00:00
version = "0.4.0-beta.7"
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",
"hex",
2022-09-25 01:33:59 +00:00
"md-5",
"mime",
"num_cpus",
2020-06-14 15:07:31 +00:00
"once_cell",
2021-09-18 21:29:30 +00:00
"opentelemetry",
"opentelemetry-otlp",
"pin-project-lite",
2022-11-26 17:17:47 +00:00
"quick-xml 0.26.0",
"rusty-s3",
2022-02-26 18:22:30 +00:00
"serde",
"serde_cbor",
"serde_json",
"serde_urlencoded",
2022-04-29 20:54:54 +00:00
"sha2",
"sled",
2021-10-19 01:29:06 +00:00
"storage-path-generator",
"thiserror",
2022-02-26 18:22:30 +00:00
"time",
"tokio",
2021-10-13 04:16:31 +00:00
"tokio-uring",
2022-09-21 03:42:14 +00:00
"tokio-util",
"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-08-19 19:13:06 +00:00
version = "1.0.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-19 19:13:06 +00:00
checksum = "ad29a609b6bcd67fee905812e544992d216af9d755757c05ed2d0e15a74c6ecc"
dependencies = [
2021-03-10 02:51:03 +00:00
"pin-project-internal",
]
[[package]]
name = "pin-project-internal"
2022-08-19 19:13:06 +00:00
version = "1.0.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-19 19:13:06 +00:00
checksum = "069bdb1e05adc7a8990dce9cc75370895fbe4e3d58b9b73bf1aee56359344a55"
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-11-26 17:17:47 +00:00
version = "0.2.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-26 17:17:47 +00:00
checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
2022-09-21 03:42:14 +00:00
[[package]]
name = "prettyplease"
2022-10-15 19:06:23 +00:00
version = "0.1.21"
2022-09-21 03:42:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-15 19:06:23 +00:00
checksum = "c142c0e46b57171fe0c528bee8c5b7569e80f0c17e377cd0e30ea57dbc11bb51"
2022-09-21 03:42:14 +00:00
dependencies = [
"proc-macro2",
"syn",
]
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-10-15 19:06:23 +00:00
version = "1.0.47"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-15 19:06:23 +00:00
checksum = "5ea3d908b0e36316caf9e9e2c4625cdde190a7e6f440d794667ed17a1855e725"
dependencies = [
2022-05-26 14:46:43 +00:00
"unicode-ident",
]
2022-04-11 20:17:54 +00:00
[[package]]
name = "prost"
2022-11-26 17:17:47 +00:00
version = "0.11.2"
2022-04-11 20:17:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-26 17:17:47 +00:00
checksum = "a0841812012b2d4a6145fae9a6af1534873c32aa67fff26bd09f8fa42c83f95a"
2022-04-11 20:17:54 +00:00
dependencies = [
"bytes",
2022-09-21 03:42:14 +00:00
"prost-derive",
2021-12-17 02:46:46 +00:00
]
[[package]]
name = "prost-build"
2022-11-26 17:17:47 +00:00
version = "0.11.2"
2021-12-17 02:46:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-26 17:17:47 +00:00
checksum = "1d8b442418ea0822409d9e7d047cbf1e7e9e1760b172bf9982cf29d517c93511"
2021-12-17 02:46:46 +00:00
dependencies = [
"bytes",
2022-09-21 03:42:14 +00:00
"heck",
2021-12-17 02:46:46 +00:00
"itertools",
"lazy_static",
"log",
"multimap",
2022-02-04 17:33:12 +00:00
"petgraph",
2022-11-26 17:17:47 +00:00
"prettyplease",
2022-09-21 03:42:14 +00:00
"prost",
"prost-types",
2021-12-17 02:46:46 +00:00
"regex",
2022-11-26 17:17:47 +00:00
"syn",
2021-09-18 21:29:30 +00:00
"tempfile",
"which",
]
2022-04-11 20:17:54 +00:00
[[package]]
name = "prost-derive"
2022-11-26 17:17:47 +00:00
version = "0.11.2"
2022-04-11 20:17:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-26 17:17:47 +00:00
checksum = "164ae68b6587001ca506d3bf7f1000bfa248d0e1217b618108fba4ec1d0cc306"
2022-04-11 20:17:54 +00:00
dependencies = [
"anyhow",
"itertools",
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "prost-types"
2022-11-26 17:17:47 +00:00
version = "0.11.2"
2022-04-11 20:17:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-26 17:17:47 +00:00
checksum = "747761bc3dc48f9a34553bf65605cf6cb6288ba219f3450b4275dbd81539551a"
2022-04-11 20:17:54 +00:00
dependencies = [
"bytes",
2022-09-21 03:42:14 +00:00
"prost",
2021-09-18 21:29:30 +00:00
]
[[package]]
name = "quick-xml"
version = "0.24.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "37dddbbe9df96afafcb8027fcf263971b726530e12f0787f620a7ba5b4846081"
dependencies = [
"memchr",
"serde",
]
2022-09-28 01:31:21 +00:00
[[package]]
name = "quick-xml"
2022-11-26 17:17:47 +00:00
version = "0.26.0"
2022-09-28 01:31:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-26 17:17:47 +00:00
checksum = "7f50b1c63b38611e7d4d7f68b82d3ad0cc71a2ad2e7f61fc10f1328d917c93cd"
2022-09-28 01:31:21 +00:00
dependencies = [
"memchr",
"serde",
]
[[package]]
name = "quote"
2022-08-19 19:13:06 +00:00
version = "1.0.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-19 19:13:06 +00:00
checksum = "bbe448f377a7d6961e30f5955f9b8d106c3f5e449d493ee1b125c1d43c2b5179"
dependencies = [
"proc-macro2",
]
[[package]]
name = "rand"
2022-02-26 18:22:30 +00:00
version = "0.8.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-26 18:22:30 +00:00
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
dependencies = [
"libc",
"rand_chacha",
"rand_core",
]
[[package]]
name = "rand_chacha"
2021-06-19 19:39:41 +00:00
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-19 19:39:41 +00:00
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
dependencies = [
"ppv-lite86",
"rand_core",
]
[[package]]
name = "rand_core"
2022-09-21 03:42:14 +00:00
version = "0.6.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-21 03:42:14 +00:00
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
dependencies = [
"getrandom",
]
[[package]]
name = "redox_syscall"
2022-08-19 19:13:06 +00:00
version = "0.2.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-19 19:13:06 +00:00
checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
2021-03-10 02:51:03 +00:00
dependencies = [
"bitflags",
]
[[package]]
name = "regex"
2022-11-26 17:17:47 +00:00
version = "1.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-26 17:17:47 +00:00
checksum = "e076559ef8e241f2ae3479e36f97bd5741c0330689e217ad51ce2c76808b868a"
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-11-26 17:17:47 +00:00
version = "0.6.28"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-26 17:17:47 +00:00
checksum = "456c603be3e8d448b072f410900c09faf164fbce2d480456f50eea6e25f9c848"
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",
]
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",
]
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",
]
2022-11-26 17:17:47 +00:00
[[package]]
name = "rustix"
version = "0.36.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0b1fbb4dfc4eb1d390c02df47760bb19a84bb80b301ecc947ab5406394d8223e"
dependencies = [
"bitflags",
"errno",
"io-lifetimes",
"libc",
"linux-raw-sys",
"windows-sys",
]
[[package]]
name = "rustls"
2022-11-26 17:17:47 +00:00
version = "0.20.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-26 17:17:47 +00:00
checksum = "539a2bfe908f471bfa933876bd1eb6a19cf2176d375f82ef7f99530a40e48c2c"
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]]
name = "rusty-s3"
version = "0.3.2"
2021-09-12 16:00:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "13332fd1e9538328a80183b9c0bde0cd7065ad2c4405f56b855a51a0a37fffd4"
2021-09-12 16:00:29 +00:00
dependencies = [
2021-12-03 20:21:31 +00:00
"base64",
"hmac",
"md-5",
"percent-encoding",
2022-09-28 01:31:21 +00:00
"quick-xml 0.24.1",
"serde",
"serde_json",
"sha2",
"time",
"url",
"zeroize",
2021-09-12 16:00:29 +00:00
]
[[package]]
name = "ryu"
2022-08-19 19:13:06 +00:00
version = "1.0.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-19 19:13:06 +00:00
checksum = "4501abdff3ae82a1c1b477a17252eb69cee9e66eb915c1abaa4f44d873df9f09"
2021-10-13 04:16:31 +00:00
[[package]]
name = "scoped-tls"
2022-11-26 17:17:47 +00:00
version = "1.0.1"
2021-10-13 04:16:31 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-26 17:17:47 +00:00
checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294"
2021-10-13 04:16:31 +00:00
[[package]]
name = "scopeguard"
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-09-21 03:42:14 +00:00
version = "1.0.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-21 03:42:14 +00:00
checksum = "e25dfac463d778e353db5be2449d1cce89bd6fd23c9f1ea21310ce6e5a1b29c4"
[[package]]
name = "serde"
2022-11-26 17:17:47 +00:00
version = "1.0.147"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-26 17:17:47 +00:00
checksum = "d193d69bae983fc11a79df82342761dfbf28a99fc8d203dca4c3c1b590948965"
dependencies = [
"serde_derive",
]
[[package]]
name = "serde_cbor"
version = "0.11.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2bef2ebfde456fb76bbcf9f59315333decc4fda0b2b44b420243c11e0f5ec1f5"
dependencies = [
"half",
"serde",
]
[[package]]
name = "serde_derive"
2022-11-26 17:17:47 +00:00
version = "1.0.147"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-26 17:17:47 +00:00
checksum = "4f1d362ca8fc9c3e3a7484440752472d68a6caa98f1ab81d99b5dfe517cec852"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "serde_json"
2022-11-26 17:17:47 +00:00
version = "1.0.89"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-26 17:17:47 +00:00
checksum = "020ff22c755c2ed3f8cf162dbb41a7268d934702f3ed3631656ea597e08fc3db"
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]]
2022-06-21 16:27:57 +00:00
name = "sha1"
2022-09-21 03:42:14 +00:00
version = "0.10.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-21 03:42:14 +00:00
checksum = "f04293dc80c3993519f2d7f6f511707ee7094fe0c6d3406feb330cdb3540eba3"
dependencies = [
2021-02-10 22:57:42 +00:00
"cfg-if",
2021-06-19 19:39:41 +00:00
"cpufeatures",
2022-08-19 19:13:06 +00:00
"digest",
]
2021-12-17 02:46:46 +00:00
[[package]]
name = "sha2"
2022-09-21 03:42:14 +00:00
version = "0.10.6"
2021-12-17 02:46:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-21 03:42:14 +00:00
checksum = "82e6b795fe2e3b1e845bafcb27aa35405c4d47cdfc92af5fc8d3002f76cebdc0"
2021-12-17 02:46:46 +00:00
dependencies = [
"cfg-if",
"cpufeatures",
2022-08-19 19:13:06 +00:00
"digest",
2021-12-17 02:46:46 +00:00
]
[[package]]
name = "sharded-slab"
2021-10-14 00:06:53 +00:00
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-14 00:06:53 +00:00
checksum = "900fba806f70c630b0a382d0d825e17a0f19fcd059a2ade1ff237bcddf446b31"
dependencies = [
"lazy_static",
]
[[package]]
name = "signal-hook-registry"
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-08-19 19:13:06 +00:00
version = "0.4.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-19 19:13:06 +00:00
checksum = "4614a76b2a8be0058caa9dbbaf66d988527d86d003c11a94fbd335d7661edcef"
dependencies = [
"autocfg",
]
2020-09-10 16:12:42 +00:00
[[package]]
name = "sled"
2021-09-12 16:00:29 +00:00
version = "0.34.7"
2020-09-10 16:12:42 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-12 16:00:29 +00:00
checksum = "7f96b4737c2ce5987354855aed3797279def4ebf734436c6aa4552cf8e169935"
2020-09-10 16:12:42 +00:00
dependencies = [
"crc32fast",
"crossbeam-epoch",
"crossbeam-utils",
2020-09-10 16:12:42 +00:00
"fs2",
"fxhash",
"libc",
"log",
2022-02-11 17:23:48 +00:00
"parking_lot 0.11.2",
2021-10-14 00:06:53 +00:00
"rio",
2020-09-10 16:12:42 +00:00
]
[[package]]
name = "smallvec"
2022-10-15 16:13:24 +00:00
version = "1.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-15 16:13:24 +00:00
checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0"
[[package]]
name = "socket2"
version = "0.4.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "02e2d2db9033d13a1567121ddd7a095ee144db4e1ca1b1bda3419bc0da294ebd"
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-11-26 17:17:47 +00:00
version = "1.0.103"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-26 17:17:47 +00:00
checksum = "a864042229133ada95abf3b54fdc62ef5ccabe9515b64717bcb9a1919e59445d"
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
]
[[package]]
name = "thiserror"
2022-09-28 01:31:21 +00:00
version = "1.0.37"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 01:31:21 +00:00
checksum = "10deb33631e3c9018b9baf9dcbbc4f737320d2b576bac10f6aefa048fa407e3e"
dependencies = [
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
2022-09-28 01:31:21 +00:00
version = "1.0.37"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 01:31:21 +00:00
checksum = "982d17546b47146b28f7c22e3d08465f6b8903d0ea13c1660d9d84a6e7adcdbb"
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-11-26 17:17:47 +00:00
version = "0.3.17"
2021-08-28 22:50:56 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-26 17:17:47 +00:00
checksum = "a561bf4617eebd33bca6434b988f39ed798e527f51a1e797d0ee4f61c0a38376"
2021-08-28 22:50:56 +00:00
dependencies = [
2022-02-11 17:23:48 +00:00
"itoa",
2022-02-26 18:22:30 +00:00
"serde",
2022-11-26 17:17:47 +00:00
"time-core",
2022-02-26 18:22:30 +00:00
"time-macros",
2021-08-28 22:50:56 +00:00
]
2022-11-26 17:17:47 +00:00
[[package]]
name = "time-core"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2e153e1f1acaef8acc537e68b44906d2db6436e2b35ac2c6b42640fff91f00fd"
2022-02-26 18:22:30 +00:00
[[package]]
name = "time-macros"
2022-11-26 17:17:47 +00:00
version = "0.2.6"
2022-02-26 18:22:30 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-26 17:17:47 +00:00
checksum = "d967f99f534ca7e495c575c62638eebc2898a8c84c119b89e250477bc4ba16b2"
dependencies = [
"time-core",
]
2022-02-26 18:22:30 +00:00
[[package]]
name = "tinyvec"
2022-04-28 01:13:49 +00:00
version = "1.6.0"
2020-10-10 23:22:00 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-28 01:13:49 +00:00
checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
2020-10-10 23:22:00 +00:00
dependencies = [
"tinyvec_macros",
]
[[package]]
name = "tinyvec_macros"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
[[package]]
name = "tokio"
2022-11-26 17:17:47 +00:00
version = "1.22.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-26 17:17:47 +00:00
checksum = "d76ce4a75fb488c605c54bf610f221cea8b0dafb53333c1a67e8ee199dcd2ae3"
dependencies = [
2022-07-17 16:16:44 +00:00
"autocfg",
"bytes",
"libc",
"memchr",
2022-02-26 18:22:30 +00:00
"mio",
2021-09-18 21:29:30 +00:00
"num_cpus",
2022-06-06 21:04:00 +00:00
"parking_lot 0.12.1",
2021-02-10 22:57:42 +00:00
"pin-project-lite",
"signal-hook-registry",
2022-02-26 18:22:30 +00:00
"socket2",
2021-09-18 21:29:30 +00:00
"tokio-macros",
2021-12-17 02:46:46 +00:00
"tracing",
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-10-15 16:13:24 +00:00
version = "0.1.11"
2021-09-18 21:29:30 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-15 16:13:24 +00:00
checksum = "d660770404473ccd7bc9f8b28494a811bc18542b915c0855c51e8f419d5223ce"
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",
]
2022-02-26 18:22:30 +00:00
[[package]]
name = "tokio-util"
version = "0.7.4"
2022-02-26 18:22:30 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0bb2e075f03b3d66d8d8785356224ba688d2906a371015e225beeb65ca92c740"
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",
]
2022-04-11 20:17:54 +00:00
[[package]]
name = "tonic"
2022-09-28 23:23:41 +00:00
version = "0.8.2"
2022-04-11 20:17:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:23:41 +00:00
checksum = "55b9af819e54b8f33d453655bef9b9acc171568fb49523078d0cc4e7484200ec"
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-09-21 03:42:14 +00:00
"prost",
"prost-derive",
2022-04-11 20:17:54 +00:00
"tokio",
"tokio-stream",
2022-09-21 03:42:14 +00:00
"tokio-util",
2022-04-11 20:17:54 +00:00
"tower",
"tower-layer",
"tower-service",
"tracing",
"tracing-futures",
]
2021-12-17 02:46:46 +00:00
[[package]]
name = "tonic-build"
2022-09-28 23:23:41 +00:00
version = "0.8.2"
2021-12-17 02:46:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 23:23:41 +00:00
checksum = "48c6fd7c2581e36d63388a9e04c350c21beb7a8b059580b2e93993c526899ddc"
2021-12-17 02:46:46 +00:00
dependencies = [
2022-09-21 03:42:14 +00:00
"prettyplease",
2021-12-17 02:46:46 +00:00
"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-09-21 03:42:14 +00:00
"tokio-util",
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"
2022-10-15 16:13:24 +00:00
version = "0.3.2"
2021-09-18 21:29:30 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-15 16:13:24 +00:00
checksum = "c20c8dbed6283a09604c3e69b4b7eeb54e298b8a600d4d5ecb5ad39de609f1d0"
2021-09-18 21:29:30 +00:00
[[package]]
name = "tower-service"
2022-06-21 16:27:57 +00:00
version = "0.3.2"
2021-09-18 21:29:30 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-21 16:27:57 +00:00
checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52"
2021-09-18 21:29:30 +00:00
[[package]]
name = "tracing"
2022-10-15 16:13:24 +00:00
version = "0.1.37"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-15 16:13:24 +00:00
checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8"
dependencies = [
2021-02-10 22:57:42 +00:00
"cfg-if",
2021-09-14 01:22:42 +00:00
"log",
2021-02-10 22:57:42 +00:00
"pin-project-lite",
"tracing-attributes",
"tracing-core",
]
2021-09-14 01:22:42 +00:00
[[package]]
name = "tracing-actix-web"
2022-11-26 17:17:47 +00:00
version = "0.6.2"
2021-12-13 17:21:31 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-26 17:17:47 +00:00
checksum = "d725b8fa6ef307b3f4856913523337de45c47cc79271bafd7acfb39559e3a2da"
2021-09-14 01:22:42 +00:00
dependencies = [
"actix-web",
2021-09-19 19:36:53 +00:00
"opentelemetry",
2021-10-11 17:13:46 +00:00
"pin-project",
2021-09-14 01:22:42 +00:00
"tracing",
2021-09-19 19:36:53 +00:00
"tracing-opentelemetry",
2022-07-02 15:52:24 +00:00
"uuid",
2021-09-14 01:22:42 +00:00
]
[[package]]
name = "tracing-attributes"
2022-10-15 16:13:24 +00:00
version = "0.1.23"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-15 16:13:24 +00:00
checksum = "4017f8f45139870ca7e672686113917c71c7a6e02d4924eda67186083c03081a"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "tracing-awc"
2022-09-21 03:42:14 +00:00
version = "0.1.6"
2021-12-13 17:21:31 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-21 03:42:14 +00:00
checksum = "ab0b57d9e4b25f3d5f17d705c11c13c333b26dc062c02a9dedfe6a26f750a99e"
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-10-15 16:13:24 +00:00
version = "0.1.30"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-15 16:13:24 +00:00
checksum = "24eb03ba0eab1fd845050058ce5e616558e8f8d8fca633e6b163fe25c797213a"
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-09-21 03:42:14 +00:00
version = "0.18.0"
2021-09-18 21:29:30 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-21 03:42:14 +00:00
checksum = "21ebb87a95ea13271332df069020513ab70bdb5637ca42d6e492dc3bbbad48de"
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-10-15 16:13:24 +00:00
version = "0.3.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-15 16:13:24 +00:00
checksum = "a6176eae26dd70d0c919749377897b54a9276bd7061339665dd68777926b5a70"
dependencies = [
"matchers",
2022-10-15 16:13:24 +00:00
"nu-ansi-term",
2022-07-02 15:52:24 +00:00
"once_cell",
"regex",
2022-03-28 04:27:07 +00:00
"serde",
"serde_json",
"sharded-slab",
"smallvec",
2020-09-10 16:12:42 +00:00
"thread_local",
2020-10-10 23:22:00 +00:00
"tracing",
"tracing-core",
"tracing-log",
2022-03-28 04:27:07 +00:00
"tracing-serde",
]
2021-09-18 21:29:30 +00:00
[[package]]
name = "try-lock"
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.5"
2022-02-26 18:22:30 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9e79c4d996edb816c91e4308506774452e55e95c3c9de07b6729e17e15a5ef81"
2022-02-26 18:22:30 +00:00
[[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-10-15 16:13:24 +00:00
version = "1.0.5"
2022-05-26 14:46:43 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-15 16:13:24 +00:00
checksum = "6ceab39d59e4c9499d4e5a8ee0e2735b891bb7308ac83dfb4e80cad195c9f6f3"
2022-05-26 14:46:43 +00:00
[[package]]
name = "unicode-normalization"
2022-09-21 03:42:14 +00:00
version = "0.1.22"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-21 03:42:14 +00:00
checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921"
dependencies = [
2020-12-03 17:38:28 +00:00
"tinyvec",
]
2021-09-12 16:00:29 +00:00
[[package]]
name = "untrusted"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
[[package]]
name = "url"
version = "2.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0d68c799ae75762b8c3fe375feb6600ef5602c883c5d21eb51c09f22b83c4643"
dependencies = [
2020-12-03 17:38:28 +00:00
"form_urlencoded",
"idna",
"percent-encoding",
2022-02-26 18:22:30 +00:00
"serde",
]
2022-04-24 22:11:32 +00:00
[[package]]
name = "uuid"
2022-11-26 17:17:47 +00:00
version = "1.2.2"
2022-04-24 22:11:32 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-26 17:17:47 +00:00
checksum = "422ee0de9031b5b948b97a8fc04e3aa35230001a722ddd27943e0be31564ce4c"
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-09-21 03:42:14 +00:00
version = "0.2.83"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-21 03:42:14 +00:00
checksum = "eaf9f5aceeec8be17c128b2e93e031fb8a4d469bb9c4ae2d7dc1888b26887268"
dependencies = [
2021-02-10 22:57:42 +00:00
"cfg-if",
"wasm-bindgen-macro",
]
[[package]]
name = "wasm-bindgen-backend"
2022-09-21 03:42:14 +00:00
version = "0.2.83"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-21 03:42:14 +00:00
checksum = "4c8ffb332579b0557b52d268b91feab8df3615f265d5270fec2a8c95b17c1142"
dependencies = [
"bumpalo",
"log",
2022-08-19 19:13:06 +00:00
"once_cell",
"proc-macro2",
"quote",
"syn",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-macro"
2022-09-21 03:42:14 +00:00
version = "0.2.83"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-21 03:42:14 +00:00
checksum = "052be0f94026e6cbc75cdefc9bae13fd6052cdcaf532fa6c45e7ae33a1e6c810"
dependencies = [
"quote",
"wasm-bindgen-macro-support",
]
[[package]]
name = "wasm-bindgen-macro-support"
2022-09-21 03:42:14 +00:00
version = "0.2.83"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-21 03:42:14 +00:00
checksum = "07bc0c051dc5f23e307b13285f9d75df86bfdf816c5721e573dec1f9b8aa193c"
dependencies = [
"proc-macro2",
"quote",
"syn",
"wasm-bindgen-backend",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-shared"
2022-09-21 03:42:14 +00:00
version = "0.2.83"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-21 03:42:14 +00:00
checksum = "1c38c045535d93ec4f0b4defec448e4291638ee608530863b1e2ba115d4fff7f"
2021-09-12 16:00:29 +00:00
[[package]]
name = "web-sys"
2022-09-21 03:42:14 +00:00
version = "0.3.60"
2021-09-12 16:00:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-21 03:42:14 +00:00
checksum = "bcda906d8be16e728fd5adc5b729afad4e444e106ab28cd1c7256e54fa61510f"
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-09-28 01:31:21 +00:00
version = "0.22.5"
2021-09-12 16:00:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 01:31:21 +00:00
checksum = "368bfe657969fb01238bb756d351dcade285e0f6fcbd36dcb23359a5169975be"
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.3.0"
2021-09-18 21:29:30 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1c831fbbee9e129a8cf93e7747a82da9d95ba8e16621cae60ec2cdc849bacb7b"
2021-09-18 21:29:30 +00:00
dependencies = [
"either",
"libc",
"once_cell",
2021-09-18 21:29:30 +00:00
]
[[package]]
name = "winapi"
2020-09-10 16:12:42 +00:00
version = "0.3.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-10 16:12:42 +00:00
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
dependencies = [
"winapi-i686-pc-windows-gnu",
"winapi-x86_64-pc-windows-gnu",
]
[[package]]
name = "winapi-i686-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
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-11-26 17:17:47 +00:00
version = "0.42.0"
2022-02-11 17:23:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-26 17:17:47 +00:00
checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7"
2022-02-11 17:23:48 +00:00
dependencies = [
2022-11-26 17:17:47 +00:00
"windows_aarch64_gnullvm",
2022-02-11 17:23:48 +00:00
"windows_aarch64_msvc",
"windows_i686_gnu",
"windows_i686_msvc",
"windows_x86_64_gnu",
2022-11-26 17:17:47 +00:00
"windows_x86_64_gnullvm",
2022-02-11 17:23:48 +00:00
"windows_x86_64_msvc",
]
2022-11-26 17:17:47 +00:00
[[package]]
name = "windows_aarch64_gnullvm"
version = "0.42.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "41d2aa71f6f0cbe00ae5167d90ef3cfe66527d6f613ca78ac8024c3ccab9a19e"
2022-02-11 17:23:48 +00:00
[[package]]
name = "windows_aarch64_msvc"
2022-11-26 17:17:47 +00:00
version = "0.42.0"
2022-02-11 17:23:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-26 17:17:47 +00:00
checksum = "dd0f252f5a35cac83d6311b2e795981f5ee6e67eb1f9a7f64eb4500fbc4dcdb4"
2022-02-11 17:23:48 +00:00
[[package]]
name = "windows_i686_gnu"
2022-11-26 17:17:47 +00:00
version = "0.42.0"
2022-02-11 17:23:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-26 17:17:47 +00:00
checksum = "fbeae19f6716841636c28d695375df17562ca208b2b7d0dc47635a50ae6c5de7"
2022-02-11 17:23:48 +00:00
[[package]]
name = "windows_i686_msvc"
2022-11-26 17:17:47 +00:00
version = "0.42.0"
2022-02-11 17:23:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-26 17:17:47 +00:00
checksum = "84c12f65daa39dd2babe6e442988fc329d6243fdce47d7d2d155b8d874862246"
2022-02-11 17:23:48 +00:00
[[package]]
name = "windows_x86_64_gnu"
2022-11-26 17:17:47 +00:00
version = "0.42.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bf7b1b21b5362cbc318f686150e5bcea75ecedc74dd157d874d754a2ca44b0ed"
[[package]]
name = "windows_x86_64_gnullvm"
version = "0.42.0"
2022-02-11 17:23:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-26 17:17:47 +00:00
checksum = "09d525d2ba30eeb3297665bd434a54297e4170c7f1a44cad4ef58095b4cd2028"
2022-02-11 17:23:48 +00:00
[[package]]
name = "windows_x86_64_msvc"
2022-11-26 17:17:47 +00:00
version = "0.42.0"
2022-02-11 17:23:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-26 17:17:47 +00:00
checksum = "f40009d85759725a34da6d89a94e63d7bdc50a862acf0dbc7c8e488f1edcb6f5"
2022-02-11 17:23:48 +00:00
[[package]]
name = "yaml-rust"
version = "0.4.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85"
dependencies = [
"linked-hash-map",
]
[[package]]
name = "zeroize"
version = "1.5.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c394b5bd0c6f669e7275d9c20aa90ae064cb22e75a1cad54e1b34088034b149f"