pict-rs-proxy/Cargo.lock

2147 lines
51 KiB
Plaintext
Raw Normal View History

# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
2021-06-19 19:42:42 +00:00
version = 3
2021-02-10 20:37:44 +00:00
[[package]]
name = "actix-codec"
2021-06-19 19:42:42 +00:00
version = "0.4.0"
2021-02-10 20:37:44 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-19 19:42:42 +00:00
checksum = "1d5dbeb2d9e51344cb83ca7cc170f1217f9fe25bfc50160e6e200b5c31c1019a"
2021-02-10 20:37:44 +00:00
dependencies = [
"bitflags",
2021-03-10 02:14:42 +00:00
"bytes",
2021-02-10 20:37:44 +00:00
"futures-core",
"futures-sink",
"log",
2021-03-10 02:14:42 +00:00
"pin-project-lite",
"tokio",
"tokio-util",
]
[[package]]
name = "actix-http"
2021-10-21 16:17:47 +00:00
version = "3.0.0-beta.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-21 16:17:47 +00:00
checksum = "c9b510d35f13987537289f38bf136e7e702a5c87cc28760310cc459544f40afd"
dependencies = [
2021-03-10 02:14:42 +00:00
"actix-codec",
"actix-rt",
"actix-service",
2021-02-10 20:37:44 +00:00
"actix-tls",
2021-03-10 02:14:42 +00:00
"actix-utils",
2021-02-10 20:37:44 +00:00
"ahash",
2021-04-02 19:17:42 +00:00
"base64",
2021-02-10 20:37:44 +00:00
"bitflags",
2021-03-10 02:14:42 +00:00
"bytes",
2021-02-10 20:37:44 +00:00
"bytestring",
"derive_more",
"encoding_rs",
"futures-core",
"futures-util",
2021-03-10 02:14:42 +00:00
"h2",
"http",
"httparse",
2021-10-21 16:17:47 +00:00
"httpdate",
2020-09-10 14:27:31 +00:00
"itoa",
"language-tags",
2021-04-02 19:17:42 +00:00
"local-channel",
"log",
"mime",
2021-03-10 02:14:42 +00:00
"once_cell",
"percent-encoding",
2021-03-10 02:14:42 +00:00
"pin-project",
2021-04-02 19:17:42 +00:00
"pin-project-lite",
"rand",
"sha-1",
2021-02-10 20:37:44 +00:00
"smallvec",
2021-03-10 02:14:42 +00:00
"tokio",
]
2021-02-10 20:37:44 +00:00
[[package]]
name = "actix-macros"
2021-10-21 16:17:47 +00:00
version = "0.2.3"
2021-02-10 20:37:44 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-21 16:17:47 +00:00
checksum = "465a6172cf69b960917811022d8f29bc0b7fa1398bc4f78b3c466673db1213b6"
2021-02-10 20:37:44 +00:00
dependencies = [
"quote",
"syn",
]
[[package]]
name = "actix-router"
2021-09-19 18:21:23 +00:00
version = "0.5.0-beta.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-19 18:21:23 +00:00
checksum = "36b95ce0d76d1aa2f98b681702807475ade0f99bd4552546a6843a966d42ea3d"
dependencies = [
"bytestring",
2021-09-19 18:21:23 +00:00
"firestorm",
"http",
"log",
"regex",
"serde",
]
[[package]]
name = "actix-rt"
2021-10-21 16:17:47 +00:00
version = "2.3.0"
2021-02-10 20:37:44 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-21 16:17:47 +00:00
checksum = "ea360596a50aa9af459850737f99293e5cb9114ae831118cb6026b3bbc7583ad"
2021-02-10 20:37:44 +00:00
dependencies = [
2021-03-10 02:14:42 +00:00
"actix-macros",
2021-02-10 20:37:44 +00:00
"futures-core",
2021-03-10 02:14:42 +00:00
"tokio",
]
[[package]]
name = "actix-server"
2021-10-21 16:17:47 +00:00
version = "2.0.0-beta.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-21 16:17:47 +00:00
checksum = "7367665785765b066ad16e1086d26a087f696bc7c42b6f93004ced6cfcf1eeca"
dependencies = [
2021-03-10 02:14:42 +00:00
"actix-rt",
"actix-service",
"actix-utils",
2021-02-10 20:37:44 +00:00
"futures-core",
"log",
2021-03-10 02:14:42 +00:00
"mio",
"num_cpus",
2021-03-10 02:14:42 +00:00
"tokio",
]
[[package]]
2021-02-10 20:37:44 +00:00
name = "actix-service"
2021-10-11 19:14:34 +00:00
version = "2.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-11 19:14:34 +00:00
checksum = "8d3dc6a618b082974a08d7a4781d24d4691cba51500059bfebe6656a61ebfe1e"
dependencies = [
2021-02-10 20:37:44 +00:00
"futures-core",
2021-06-19 19:42:42 +00:00
"paste",
2021-03-10 02:14:42 +00:00
"pin-project-lite",
]
[[package]]
name = "actix-tls"
2021-10-21 16:17:47 +00:00
version = "3.0.0-beta.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-21 16:17:47 +00:00
checksum = "e4af84e13e4600829858a3e68079be710d1ada461431e1e4c5ae663479ea0a3c"
dependencies = [
2021-03-10 02:14:42 +00:00
"actix-codec",
"actix-rt",
"actix-service",
"actix-utils",
2021-02-10 20:37:44 +00:00
"derive_more",
"futures-core",
"http",
"log",
2021-03-10 02:14:42 +00:00
"tokio-util",
]
2021-02-10 20:37:44 +00:00
[[package]]
name = "actix-utils"
2021-06-19 19:42:42 +00:00
version = "3.0.0"
2021-02-10 20:37:44 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-19 19:42:42 +00:00
checksum = "e491cbaac2e7fc788dfff99ff48ef317e23b3cf63dbaf7aaab6418f40f92aa94"
2021-02-10 20:37:44 +00:00
dependencies = [
2021-04-02 19:17:42 +00:00
"local-waker",
2021-03-10 02:14:42 +00:00
"pin-project-lite",
2021-02-10 20:37:44 +00:00
]
[[package]]
name = "actix-web"
2021-10-21 16:17:47 +00:00
version = "4.0.0-beta.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-21 16:17:47 +00:00
checksum = "e8a4b9d00991d8da308070a5cea7f1bbaa153a91c3fb5567937d99b9f46d601e"
dependencies = [
2021-03-10 02:14:42 +00:00
"actix-codec",
"actix-http",
"actix-macros",
"actix-router",
2021-03-10 02:14:42 +00:00
"actix-rt",
"actix-server",
2021-03-10 02:14:42 +00:00
"actix-service",
"actix-utils",
"actix-web-codegen",
2021-02-10 20:37:44 +00:00
"ahash",
2021-03-10 02:14:42 +00:00
"bytes",
2021-06-26 17:27:54 +00:00
"cfg-if",
"derive_more",
2021-02-10 20:37:44 +00:00
"either",
"encoding_rs",
"futures-core",
"futures-util",
2021-06-19 19:42:42 +00:00
"itoa",
2021-04-02 19:17:42 +00:00
"language-tags",
"log",
"mime",
2021-04-02 19:17:42 +00:00
"once_cell",
2021-06-19 19:42:42 +00:00
"paste",
2021-03-10 02:14:42 +00:00
"pin-project",
"regex",
"serde",
"serde_json",
"serde_urlencoded",
2021-02-10 20:37:44 +00:00
"smallvec",
"socket2",
"time",
"url",
]
[[package]]
name = "actix-web-codegen"
2021-10-21 16:17:47 +00:00
version = "0.5.0-beta.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-21 16:17:47 +00:00
checksum = "dfe80a8828fa88a0420dc8fdd4c16b8207326c917f17701881b063eadc2a8d3b"
dependencies = [
2021-09-19 18:21:23 +00:00
"actix-router",
"proc-macro2",
"quote",
"syn",
]
2021-02-10 20:37:44 +00:00
[[package]]
name = "ahash"
2021-10-21 16:17:47 +00:00
version = "0.7.6"
2021-02-10 20:37:44 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-21 16:17:47 +00:00
checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47"
2021-02-10 20:37:44 +00:00
dependencies = [
2021-04-02 19:17:42 +00:00
"getrandom",
2021-02-10 20:37:44 +00:00
"once_cell",
"version_check",
]
[[package]]
name = "aho-corasick"
2021-09-19 18:21:23 +00:00
version = "0.7.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-19 18:21:23 +00:00
checksum = "1e37cfd5e7657ada45f742d6e99ca5788580b5c529dc78faf11ece6dc702656f"
dependencies = [
"memchr",
]
[[package]]
name = "ansi_term"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b"
dependencies = [
2021-03-10 02:14:42 +00:00
"winapi",
]
2021-09-19 18:21:23 +00:00
[[package]]
name = "ansi_term"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2"
dependencies = [
"winapi",
]
[[package]]
name = "anyhow"
2021-09-19 18:21:23 +00:00
version = "1.0.44"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-19 18:21:23 +00:00
checksum = "61604a8f862e1d5c3229fdd78f8b02c68dcf73a4c4b05fd636d12240aaa242c1"
[[package]]
name = "arrayvec"
2020-11-01 20:27:00 +00:00
version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-01 20:27:00 +00:00
checksum = "23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b"
2021-09-19 18:21:23 +00:00
[[package]]
name = "async-stream"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "171374e7e3b2504e0e5236e3b59260560f9fe94bfe9ac39ba5e4e929c5590625"
dependencies = [
"async-stream-impl",
"futures-core",
]
[[package]]
name = "async-stream-impl"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "648ed8c8d2ce5409ccd57453d9d1b214b342a0d69376a6feda1fd6cae3299308"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "async-trait"
version = "0.1.51"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "44318e776df68115a881de9a8fd1b9e53368d7a4a5ce4cc48517da3393233a5e"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "atty"
version = "0.2.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
dependencies = [
"hermit-abi",
"libc",
2021-03-10 02:14:42 +00:00
"winapi",
]
[[package]]
name = "autocfg"
2020-09-10 14:27:31 +00:00
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-10 14:27:31 +00:00
checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a"
[[package]]
name = "awc"
2021-10-21 16:17:47 +00:00
version = "3.0.0-beta.9"
2021-02-10 20:37:44 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-21 16:17:47 +00:00
checksum = "774d647a23d085bf35c83b6da5a6bd966fdc4af92ffce865befa9f3a8cf73015"
2021-02-10 20:37:44 +00:00
dependencies = [
2021-03-10 02:14:42 +00:00
"actix-codec",
"actix-http",
"actix-rt",
"actix-service",
2021-04-02 19:17:42 +00:00
"base64",
2021-03-10 02:14:42 +00:00
"bytes",
2021-06-26 17:27:54 +00:00
"cfg-if",
2021-02-10 20:37:44 +00:00
"derive_more",
"futures-core",
2021-03-10 02:14:42 +00:00
"itoa",
2021-02-10 20:37:44 +00:00
"log",
"mime",
"percent-encoding",
2021-03-10 02:14:42 +00:00
"pin-project-lite",
2021-04-02 19:17:42 +00:00
"rand",
"serde",
"serde_json",
"serde_urlencoded",
]
2020-11-01 20:27:00 +00:00
[[package]]
name = "base64"
version = "0.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd"
[[package]]
name = "bitflags"
2021-08-31 21:37:04 +00:00
version = "1.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-31 21:37:04 +00:00
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
2021-04-02 19:17:42 +00:00
[[package]]
name = "bitvec"
version = "0.19.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8942c8d352ae1838c9dda0b0ca2ab657696ef2232a20147cf1b30ae1a9cb4321"
dependencies = [
"funty",
"radium",
"tap",
"wyz",
]
[[package]]
name = "block-buffer"
2020-09-10 14:27:31 +00:00
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-10 14:27:31 +00:00
checksum = "4152116fd6e9dadb291ae18fc1ec3575ed6d84c29642d97890f4b4a3417297e4"
dependencies = [
"generic-array",
]
[[package]]
name = "bumpalo"
2021-10-21 16:17:47 +00:00
version = "3.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-21 16:17:47 +00:00
checksum = "8f1e260c3a9040a7c19a12468758f4c16f31a81a1fe087482be9570ec864bb6c"
[[package]]
name = "bytecount"
2020-12-03 18:48:52 +00:00
version = "0.6.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-03 18:48:52 +00:00
checksum = "72feb31ffc86498dacdbd0fcebb56138e7177a8cc5cea4516031d15ae85a742e"
2021-02-10 20:37:44 +00:00
[[package]]
name = "bytes"
2021-08-31 21:37:04 +00:00
version = "1.1.0"
2021-02-10 20:37:44 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-31 21:37:04 +00:00
checksum = "c4872d67bab6358e59559027aa3b9157c53d9358c51423c17554809a8858e0f8"
2021-02-10 20:37:44 +00:00
[[package]]
name = "bytestring"
2021-02-10 20:37:44 +00:00
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-10 20:37:44 +00:00
checksum = "90706ba19e97b90786e19dc0d5e2abd80008d99d4c0c5d1ad0b5e72cec7c494d"
dependencies = [
2021-03-10 02:14:42 +00:00
"bytes",
]
2020-11-01 20:27:00 +00:00
[[package]]
name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
[[package]]
name = "clap"
2020-09-10 14:27:31 +00:00
version = "2.33.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-10 14:27:31 +00:00
checksum = "37e58ac78573c40708d45522f0d80fa2f01cc4f9b4e2bf749807255454312002"
dependencies = [
2021-09-19 18:21:23 +00:00
"ansi_term 0.11.0",
"atty",
"bitflags",
"strsim",
"textwrap",
"unicode-width",
"vec_map",
]
2021-04-02 19:17:42 +00:00
[[package]]
name = "convert_case"
version = "0.4.0"
2020-09-10 14:27:31 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-02 19:17:42 +00:00
checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e"
2020-09-10 14:27:31 +00:00
[[package]]
2021-06-19 19:42:42 +00:00
name = "cpufeatures"
2021-08-31 21:37:04 +00:00
version = "0.2.1"
2020-09-10 14:27:31 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-31 21:37:04 +00:00
checksum = "95059428f66df56b63431fdb4e1947ed2190586af5c5a8a8b71122bdf5a7f469"
2021-06-19 19:42:42 +00:00
dependencies = [
"libc",
]
2020-09-10 14:27:31 +00:00
2021-09-19 18:21:23 +00:00
[[package]]
name = "crossbeam-channel"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "06ed27e177f16d65f0f0c22a213e17c696ace5dd64b14258b52f9417ccb52db4"
dependencies = [
"cfg-if",
"crossbeam-utils",
]
[[package]]
name = "crossbeam-utils"
version = "0.8.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d82cfc11ce7f2c3faef78d8a684447b40d503d9681acebed6cb728d45940c4db"
dependencies = [
"cfg-if",
"lazy_static",
]
[[package]]
name = "derive_more"
2021-08-31 21:37:04 +00:00
version = "0.99.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-31 21:37:04 +00:00
checksum = "40eebddd2156ce1bb37b20bbe5151340a31828b1f2d22ba4141f3531710e38df"
dependencies = [
2021-04-02 19:17:42 +00:00
"convert_case",
"proc-macro2",
"quote",
2021-10-21 16:17:47 +00:00
"rustc_version",
"syn",
]
[[package]]
name = "digest"
2020-09-10 14:27:31 +00:00
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-10 14:27:31 +00:00
checksum = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066"
dependencies = [
"generic-array",
]
[[package]]
name = "dotenv"
2020-09-10 14:27:31 +00:00
version = "0.15.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-10 14:27:31 +00:00
checksum = "77c90badedccf4105eca100756a0b1289e191f6fcbdadd3cee1d2f614f97da8f"
[[package]]
name = "either"
2020-10-03 00:46:54 +00:00
version = "1.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-03 00:46:54 +00:00
checksum = "e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457"
[[package]]
name = "encoding_rs"
2021-10-21 16:17:47 +00:00
version = "0.8.29"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-21 16:17:47 +00:00
checksum = "a74ea89a0a1b98f6332de42c95baff457ada66d1cb4030f9ff151b2041a1c746"
dependencies = [
2021-03-10 02:14:42 +00:00
"cfg-if",
]
[[package]]
2021-09-19 18:21:23 +00:00
name = "firestorm"
version = "0.4.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-19 18:21:23 +00:00
checksum = "31586bda1b136406162e381a3185a506cdfc1631708dd40cba2f6628d8634499"
[[package]]
name = "fixedbitset"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "37ab347416e802de484e4d03c7316c48f1ecb56574dfd4a46a80f173ce1de04d"
[[package]]
name = "fnv"
version = "1.0.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
2020-12-01 17:57:19 +00:00
[[package]]
name = "form_urlencoded"
2021-03-10 02:14:42 +00:00
version = "1.0.1"
2020-12-01 17:57:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-03-10 02:14:42 +00:00
checksum = "5fc25a87fa4fd2094bffb06925852034d90a17f0d1e05197d4956d3555752191"
2020-12-01 17:57:19 +00:00
dependencies = [
"matches",
"percent-encoding",
]
2021-04-02 19:17:42 +00:00
[[package]]
name = "funty"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fed34cd105917e91daa4da6b3728c47b068749d6a62c59811f06ed2ac71d9da7"
2021-09-19 18:21:23 +00:00
[[package]]
name = "futures"
version = "0.3.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a12aa0eb539080d55c3f2d45a67c3b58b6b0773c1a3ca2dfec66d58c97fd66ca"
dependencies = [
"futures-channel",
"futures-core",
"futures-executor",
"futures-io",
"futures-sink",
"futures-task",
"futures-util",
]
[[package]]
name = "futures-channel"
version = "0.3.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5da6ba8c3bb3c165d3c7319fc1cc8304facf1fb8db99c5de877183c08a273888"
dependencies = [
"futures-core",
"futures-sink",
]
[[package]]
name = "futures-core"
2021-08-31 21:37:04 +00:00
version = "0.3.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-31 21:37:04 +00:00
checksum = "88d1c26957f23603395cd326b0ffe64124b818f4449552f960d815cfba83a53d"
2021-09-19 18:21:23 +00:00
[[package]]
name = "futures-executor"
version = "0.3.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "45025be030969d763025784f7f355043dc6bc74093e4ecc5000ca4dc50d8745c"
dependencies = [
"futures-core",
"futures-task",
"futures-util",
]
[[package]]
name = "futures-io"
version = "0.3.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "522de2a0fe3e380f1bc577ba0474108faf3f6b18321dbf60b3b9c39a75073377"
[[package]]
name = "futures-macro"
version = "0.3.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "18e4a4b95cea4b4ccbcf1c5675ca7c4ee4e9e75eb79944d07defde18068f79bb"
dependencies = [
"autocfg",
"proc-macro-hack",
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "futures-sink"
2021-08-31 21:37:04 +00:00
version = "0.3.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-31 21:37:04 +00:00
checksum = "36ea153c13024fe480590b3e3d4cad89a0cfacecc24577b68f86c6ced9c2bc11"
[[package]]
name = "futures-task"
2021-08-31 21:37:04 +00:00
version = "0.3.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-31 21:37:04 +00:00
checksum = "1d3d00f4eddb73e498a54394f228cd55853bdf059259e8e7bc6e69d408892e99"
[[package]]
name = "futures-util"
2021-08-31 21:37:04 +00:00
version = "0.3.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-31 21:37:04 +00:00
checksum = "36568465210a3a6ee45e1f165136d68671471a501e632e9a98d96872222b5481"
dependencies = [
2021-06-19 19:42:42 +00:00
"autocfg",
2021-09-19 18:21:23 +00:00
"futures-channel",
"futures-core",
2021-09-19 18:21:23 +00:00
"futures-io",
"futures-macro",
"futures-sink",
"futures-task",
2021-09-19 18:21:23 +00:00
"memchr",
2021-03-10 02:14:42 +00:00
"pin-project-lite",
"pin-utils",
2021-09-19 18:21:23 +00:00
"proc-macro-hack",
"proc-macro-nested",
"slab",
]
[[package]]
name = "generic-array"
2020-09-10 14:27:31 +00:00
version = "0.14.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-10 14:27:31 +00:00
checksum = "501466ecc8a30d1d3b7fc9229b122b2ce8ed6e9d9223f1138d4babb253e51817"
dependencies = [
"typenum",
2020-09-10 14:27:31 +00:00
"version_check",
]
2021-02-10 20:37:44 +00:00
[[package]]
name = "getrandom"
2021-06-19 19:42:42 +00:00
version = "0.2.3"
2021-02-10 20:37:44 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-19 19:42:42 +00:00
checksum = "7fcd999463524c52659517fe2cea98493cfe485d10565e7b0fb07dbba7ad2753"
2021-02-10 20:37:44 +00:00
dependencies = [
2021-03-10 02:14:42 +00:00
"cfg-if",
"libc",
2021-04-02 19:17:42 +00:00
"wasi",
]
[[package]]
name = "h2"
2021-10-25 01:48:19 +00:00
version = "0.3.7"
2021-02-10 20:37:44 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-25 01:48:19 +00:00
checksum = "7fd819562fcebdac5afc5c113c3ec36f902840b70fd4fc458799c8ce4607ae55"
2021-02-10 20:37:44 +00:00
dependencies = [
2021-03-10 02:14:42 +00:00
"bytes",
2021-02-10 20:37:44 +00:00
"fnv",
"futures-core",
"futures-sink",
"futures-util",
"http",
"indexmap",
"slab",
2021-03-10 02:14:42 +00:00
"tokio",
"tokio-util",
2020-09-10 14:27:31 +00:00
"tracing",
]
2020-09-10 14:27:31 +00:00
[[package]]
name = "hashbrown"
2021-08-31 21:37:04 +00:00
version = "0.11.2"
2020-09-10 14:27:31 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-31 21:37:04 +00:00
checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e"
2020-09-10 14:27:31 +00:00
[[package]]
name = "heck"
2021-06-19 19:42:42 +00:00
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-19 19:42:42 +00:00
checksum = "6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c"
dependencies = [
"unicode-segmentation",
]
[[package]]
name = "hermit-abi"
2021-06-26 17:27:54 +00:00
version = "0.1.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-26 17:27:54 +00:00
checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
dependencies = [
"libc",
]
[[package]]
name = "http"
2021-09-25 20:57:15 +00:00
version = "0.2.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-25 20:57:15 +00:00
checksum = "1323096b05d41827dadeaee54c9981958c0f94e670bc94ed80037d1a7b8b186b"
dependencies = [
2021-03-10 02:14:42 +00:00
"bytes",
"fnv",
"itoa",
]
2021-09-19 18:21:23 +00:00
[[package]]
name = "http-body"
2021-10-25 01:48:19 +00:00
version = "0.4.4"
2021-09-19 18:21:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-25 01:48:19 +00:00
checksum = "1ff4f84919677303da5f147645dbea6b1881f368d03ac84e1dc09031ebd7b2c6"
2021-09-19 18:21:23 +00:00
dependencies = [
"bytes",
"http",
"pin-project-lite",
]
[[package]]
name = "httparse"
2021-08-31 21:37:04 +00:00
version = "1.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-31 21:37:04 +00:00
checksum = "acd94fdbe1d4ff688b67b04eee2e17bd50995534a61539e45adfefb45e5e5503"
[[package]]
2021-09-19 18:21:23 +00:00
name = "httpdate"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6456b8a6c8f33fee7d958fcd1b60d55b11940a79e63ae87013e6d22e26034440"
[[package]]
name = "hyper"
2021-10-25 01:48:19 +00:00
version = "0.14.14"
2021-09-19 18:21:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-25 01:48:19 +00:00
checksum = "2b91bb1f221b6ea1f1e4371216b70f40748774c2fb5971b450c07773fb92d26b"
2021-09-19 18:21:23 +00:00
dependencies = [
"bytes",
"futures-channel",
"futures-core",
"futures-util",
"h2",
"http",
"http-body",
"httparse",
"httpdate",
"itoa",
"pin-project-lite",
"socket2",
"tokio",
"tower-service",
"tracing",
"want",
]
[[package]]
name = "hyper-timeout"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-19 18:21:23 +00:00
checksum = "bbb958482e8c7be4bc3cf272a766a2b0bf1a6755e7a6ae777f017a31d11b13b1"
dependencies = [
"hyper",
"pin-project-lite",
"tokio",
"tokio-io-timeout",
]
[[package]]
name = "idna"
2021-06-19 19:42:42 +00:00
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-19 19:42:42 +00:00
checksum = "418a0a6fab821475f634efe3ccc45c013f742efe03d853e8d3355d5cb850ecf8"
dependencies = [
"matches",
"unicode-bidi",
"unicode-normalization",
]
[[package]]
name = "indexmap"
2021-08-31 21:37:04 +00:00
version = "1.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-31 21:37:04 +00:00
checksum = "bc633605454125dec4b66843673f01c7df2b89479b32e0ed634e43a91cff62a5"
dependencies = [
"autocfg",
2020-09-10 14:27:31 +00:00
"hashbrown",
]
2020-09-10 14:27:31 +00:00
[[package]]
name = "instant"
2021-10-21 16:17:47 +00:00
version = "0.1.12"
2020-09-10 14:27:31 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-21 16:17:47 +00:00
checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
2020-10-03 00:46:54 +00:00
dependencies = [
2021-03-10 02:14:42 +00:00
"cfg-if",
]
[[package]]
name = "itertools"
2021-06-19 19:42:42 +00:00
version = "0.10.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-19 19:42:42 +00:00
checksum = "69ddb889f9d0d08a67338271fa9b62996bc788c7796a5c18cf057420aaed5eaf"
dependencies = [
"either",
]
[[package]]
name = "itoa"
2021-08-31 21:37:04 +00:00
version = "0.4.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-31 21:37:04 +00:00
checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4"
2021-09-19 18:21:23 +00:00
[[package]]
name = "js-sys"
version = "0.3.55"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7cc9ffccd38c451a86bf13657df244e9c3f37493cce8e5e21e940963777acc84"
dependencies = [
"wasm-bindgen",
]
[[package]]
name = "language-tags"
2021-06-19 19:42:42 +00:00
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-19 19:42:42 +00:00
checksum = "d4345964bb142484797b161f473a503a434de77149dd8c7427788c6e13379388"
[[package]]
name = "lazy_static"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
[[package]]
name = "lexical-core"
2021-06-19 19:42:42 +00:00
version = "0.7.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-19 19:42:42 +00:00
checksum = "6607c62aa161d23d17a9072cc5da0be67cdfc89d3afb1e8d9c842bebc2525ffe"
dependencies = [
"arrayvec",
"bitflags",
2021-03-10 02:14:42 +00:00
"cfg-if",
"ryu",
"static_assertions",
]
[[package]]
name = "libc"
2021-10-25 01:48:19 +00:00
version = "0.2.105"
2021-04-02 19:17:42 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-25 01:48:19 +00:00
checksum = "869d572136620d55835903746bcb5cdc54cb2851fd0aeec53220b4bb65ef3013"
2021-04-02 19:17:42 +00:00
[[package]]
name = "local-channel"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6246c68cf195087205a0512559c97e15eaf95198bf0e206d662092cdcb03fe9f"
dependencies = [
"futures-core",
"futures-sink",
"futures-util",
"local-waker",
]
[[package]]
name = "local-waker"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-02 19:17:42 +00:00
checksum = "84f9a2d3e27ce99ce2c3aad0b09b1a7b916293ea9b2bf624c13fe646fadd8da4"
[[package]]
name = "lock_api"
2021-08-31 21:37:04 +00:00
version = "0.4.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-31 21:37:04 +00:00
checksum = "712a4d093c9976e24e7dbca41db895dabcbac38eb5f4045393d17a95bdfb1109"
dependencies = [
"scopeguard",
]
[[package]]
name = "log"
2021-02-10 20:37:44 +00:00
version = "0.4.14"
2020-06-19 19:13:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-10 20:37:44 +00:00
checksum = "51b9bbe6c47d51fc3e1a9b945965946b4c44142ab8792c50835a980d362c2710"
2020-06-19 19:13:49 +00:00
dependencies = [
2021-03-10 02:14:42 +00:00
"cfg-if",
2020-06-19 19:13:49 +00:00
]
2021-09-19 18:21:23 +00:00
[[package]]
name = "matchers"
2021-10-25 01:48:19 +00:00
version = "0.1.0"
2021-09-19 18:21:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-25 01:48:19 +00:00
checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558"
2021-09-19 18:21:23 +00:00
dependencies = [
"regex-automata",
]
[[package]]
name = "matches"
2021-08-31 21:37:04 +00:00
version = "0.1.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-31 21:37:04 +00:00
checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f"
[[package]]
name = "md5"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "490cc448043f947bae3cbee9c203358d62dbee0db12107a74be5c30ccfd09771"
[[package]]
name = "memchr"
2021-09-19 18:21:23 +00:00
version = "2.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-19 18:21:23 +00:00
checksum = "308cc39be01b73d0d18f82a0e7b2a3df85245f84af96fdddc5d202d27e47b86a"
[[package]]
name = "mime"
version = "0.3.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2a60c7ce501c71e03a9c9c0d35b861413ae925bd979cc7a4e30d060069aaac8d"
2021-01-05 17:03:18 +00:00
[[package]]
name = "minify-html"
2021-10-25 01:48:19 +00:00
version = "0.6.10"
2021-01-05 17:03:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-25 01:48:19 +00:00
checksum = "1cac5b6b3e2eebc4c99750325b106990cf5334afcdcde6b4479e5f2c6be5ceb8"
2021-01-05 17:03:18 +00:00
dependencies = [
"aho-corasick",
"lazy_static",
"memchr",
]
[[package]]
name = "mio"
2021-10-21 16:17:47 +00:00
version = "0.7.14"
2021-02-10 20:37:44 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-21 16:17:47 +00:00
checksum = "8067b404fe97c70829f082dec8bcf4f71225d7eaea1d8645349cb76fa06205cc"
2021-02-10 20:37:44 +00:00
dependencies = [
"libc",
"log",
2021-03-10 02:14:42 +00:00
"miow",
2021-02-10 20:37:44 +00:00
"ntapi",
2021-03-10 02:14:42 +00:00
"winapi",
]
2021-02-10 20:37:44 +00:00
[[package]]
name = "miow"
2021-04-02 19:17:42 +00:00
version = "0.3.7"
2021-02-10 20:37:44 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-02 19:17:42 +00:00
checksum = "b9f1c5b025cda876f66ef43a113f91ebc9f4ccef34843000e0adf6ebbab84e21"
2021-02-10 20:37:44 +00:00
dependencies = [
2021-03-10 02:14:42 +00:00
"winapi",
]
2021-09-19 18:21:23 +00:00
[[package]]
name = "multimap"
version = "0.8.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e5ce46fe64a9d73be07dcbe690a38ce1b293be448fd8ce1e6c1b8062c9f72c6a"
[[package]]
name = "nom"
2021-09-19 18:21:23 +00:00
version = "6.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-19 18:21:23 +00:00
checksum = "e7413f999671bd4745a7b624bd370a569fb6bc574b23c83a3c5ed2e453f3d5e2"
dependencies = [
2021-04-02 19:17:42 +00:00
"bitvec",
"funty",
"lexical-core",
"memchr",
"version_check",
]
2020-12-01 17:57:19 +00:00
[[package]]
name = "nom_locate"
2021-08-31 21:37:04 +00:00
version = "3.0.2"
2020-12-01 17:57:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-31 21:37:04 +00:00
checksum = "4689294073dda8a54e484212171efdcb6b12b1908fd70c3dc3eec15b8833b06d"
2020-12-01 17:57:19 +00:00
dependencies = [
"bytecount",
"memchr",
"nom",
]
2021-02-10 20:37:44 +00:00
[[package]]
name = "ntapi"
version = "0.3.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f6bb902e437b6d86e03cce10a7e2af662292c5dfef23b65899ea3ac9354ad44"
dependencies = [
2021-03-10 02:14:42 +00:00
"winapi",
2021-02-10 20:37:44 +00:00
]
2020-12-01 17:57:19 +00:00
[[package]]
name = "num-bigint"
2021-09-06 20:06:30 +00:00
version = "0.4.2"
2020-12-01 17:57:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-06 20:06:30 +00:00
checksum = "74e768dff5fb39a41b3bcd30bb25cf989706c90d028d1ad71971987aa309d535"
2020-12-01 17:57:19 +00:00
dependencies = [
"autocfg",
"num-integer",
"num-traits",
]
[[package]]
name = "num-integer"
2020-11-01 20:27:00 +00:00
version = "0.1.44"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-01 20:27:00 +00:00
checksum = "d2cc698a63b549a70bc047073d2949cce27cd1c7b0a4a862d08a8031bc2801db"
dependencies = [
"autocfg",
"num-traits",
]
[[package]]
name = "num-rational"
2021-04-02 19:17:42 +00:00
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-02 19:17:42 +00:00
checksum = "d41702bd167c2df5520b384281bc111a4b5efcf7fbc4c9c222c815b07e0a6a6a"
dependencies = [
"autocfg",
"num-integer",
"num-traits",
]
[[package]]
name = "num-traits"
2020-11-01 20:27:00 +00:00
version = "0.2.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-01 20:27:00 +00:00
checksum = "9a64b1ec5cda2586e284722486d802acf1f7dbdc623e2bfc57e65ca1cd099290"
dependencies = [
"autocfg",
]
[[package]]
name = "num_cpus"
version = "1.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "05499f3756671c15885fee9034446956fff3f243d6077b91e5767df161f766b3"
dependencies = [
"hermit-abi",
"libc",
]
[[package]]
name = "once_cell"
2021-06-19 19:42:42 +00:00
version = "1.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-19 19:42:42 +00:00
checksum = "692fcb63b64b1758029e0a96ee63e049ce8c5948587f2f7208df04625e5f6b56"
[[package]]
name = "opaque-debug"
2020-09-10 14:27:31 +00:00
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-10 14:27:31 +00:00
checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5"
2021-09-19 18:21:23 +00:00
[[package]]
name = "opentelemetry"
version = "0.16.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e1cf9b1c4e9a6c4de793c632496fa490bdc0e1eea73f0c91394f7b6990935d22"
dependencies = [
"async-trait",
"crossbeam-channel",
"futures",
"js-sys",
"lazy_static",
"percent-encoding",
"pin-project",
"rand",
"thiserror",
"tokio",
"tokio-stream",
]
[[package]]
name = "opentelemetry-otlp"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f19d4b43842433c420c548c985d158f5628bba5b518e0be64627926d19889992"
dependencies = [
"async-trait",
"futures",
"http",
"opentelemetry",
"prost",
"thiserror",
"tokio",
"tonic",
"tonic-build",
]
[[package]]
name = "parking_lot"
2021-08-31 21:37:04 +00:00
version = "0.11.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-31 21:37:04 +00:00
checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99"
dependencies = [
2020-09-10 14:27:31 +00:00
"instant",
"lock_api",
"parking_lot_core",
]
[[package]]
name = "parking_lot_core"
2021-08-31 21:37:04 +00:00
version = "0.8.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-31 21:37:04 +00:00
checksum = "d76e8e1493bcac0d2766c42737f34458f1c8c50c0d23bcb24ea953affb273216"
dependencies = [
2021-03-10 02:14:42 +00:00
"cfg-if",
2020-09-10 14:27:31 +00:00
"instant",
"libc",
"redox_syscall",
"smallvec",
2021-03-10 02:14:42 +00:00
"winapi",
]
2021-06-19 19:42:42 +00:00
[[package]]
name = "paste"
version = "1.0.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "acbf547ad0c65e31259204bd90935776d1c693cec2f4ff7abb7a1bbbd40dfe58"
[[package]]
name = "percent-encoding"
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e"
2021-08-31 21:37:04 +00:00
[[package]]
name = "pest"
version = "2.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "10f4872ae94d7b90ae48754df22fd42ad52ce740b8f370b03da4835417403e53"
dependencies = [
"ucd-trie",
]
2021-09-19 18:21:23 +00:00
[[package]]
name = "petgraph"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "467d164a6de56270bd7c4d070df81d07beace25012d5103ced4e9ff08d6afdb7"
dependencies = [
"fixedbitset",
"indexmap",
]
[[package]]
name = "pict-rs-proxy"
2021-10-21 16:20:30 +00:00
version = "0.3.0-alpha.12"
dependencies = [
2021-03-10 02:14:42 +00:00
"actix-rt",
"actix-web",
"anyhow",
2021-03-10 02:14:42 +00:00
"awc",
"dotenv",
"mime",
2021-01-05 17:03:18 +00:00
"minify-html",
"once_cell",
2021-09-19 18:21:23 +00:00
"opentelemetry",
"opentelemetry-otlp",
"ructe",
"serde",
"structopt",
2020-06-14 16:16:12 +00:00
"thiserror",
2021-09-19 18:21:23 +00:00
"tracing",
"tracing-actix-web",
"tracing-awc",
"tracing-error",
"tracing-futures",
"tracing-log",
"tracing-opentelemetry",
"tracing-subscriber",
"url",
]
2020-11-01 20:27:00 +00:00
[[package]]
name = "pin-project"
2021-08-31 21:37:04 +00:00
version = "1.0.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-31 21:37:04 +00:00
checksum = "576bc800220cc65dac09e99e97b08b358cfab6e17078de8dc5fee223bd2d0c08"
dependencies = [
2021-03-10 02:14:42 +00:00
"pin-project-internal",
]
[[package]]
name = "pin-project-internal"
2021-08-31 21:37:04 +00:00
version = "1.0.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-31 21:37:04 +00:00
checksum = "6e8fe8163d14ce7f0cdac2e040116f22eac817edabff0be91e8aff7e9accf389"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "pin-project-lite"
2021-06-26 17:27:54 +00:00
version = "0.2.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-26 17:27:54 +00:00
checksum = "8d31d11c69a6b52a174b42bdc0c30e5e11670f90788b2c471c31c1d17d449443"
2020-12-01 17:57:19 +00:00
[[package]]
name = "pin-utils"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
[[package]]
name = "ppv-lite86"
2021-10-25 01:48:19 +00:00
version = "0.2.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-25 01:48:19 +00:00
checksum = "ed0cfbc8191465bed66e1718596ee0b0b35d5ee1f41c5df2189d0fe8bde535ba"
[[package]]
name = "proc-macro-error"
2020-09-10 14:27:31 +00:00
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-10 14:27:31 +00:00
checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
dependencies = [
"proc-macro-error-attr",
"proc-macro2",
"quote",
"syn",
"version_check",
]
[[package]]
name = "proc-macro-error-attr"
2020-09-10 14:27:31 +00:00
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-10 14:27:31 +00:00
checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
dependencies = [
"proc-macro2",
"quote",
"version_check",
]
[[package]]
name = "proc-macro-hack"
2020-11-01 20:27:00 +00:00
version = "0.5.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-01 20:27:00 +00:00
checksum = "dbf0c48bc1d91375ae5c3cd81e3722dff1abcf81a30960240640d223f59fe0e5"
2021-09-19 18:21:23 +00:00
[[package]]
name = "proc-macro-nested"
version = "0.1.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bc881b2c22681370c6a780e47af9840ef841837bc98118431d4e1868bd0c1086"
[[package]]
name = "proc-macro2"
2021-10-21 16:17:47 +00:00
version = "1.0.30"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-21 16:17:47 +00:00
checksum = "edc3358ebc67bc8b7fa0c007f945b0b18226f78437d61bec735a9eb96b61ee70"
dependencies = [
"unicode-xid",
]
2021-09-19 18:21:23 +00:00
[[package]]
name = "prost"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "de5e2533f59d08fcf364fd374ebda0692a70bd6d7e66ef97f306f45c6c5d8020"
dependencies = [
"bytes",
"prost-derive",
]
[[package]]
name = "prost-build"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "355f634b43cdd80724ee7848f95770e7e70eefa6dcf14fea676216573b8fd603"
dependencies = [
"bytes",
"heck",
"itertools",
"log",
"multimap",
"petgraph",
"prost",
"prost-types",
"tempfile",
"which",
]
[[package]]
name = "prost-derive"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "600d2f334aa05acb02a755e217ef1ab6dea4d51b58b7846588b747edec04efba"
dependencies = [
"anyhow",
"itertools",
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "prost-types"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "603bbd6394701d13f3f25aada59c7de9d35a6a5887cfc156181234a44002771b"
dependencies = [
"bytes",
"prost",
]
[[package]]
name = "quote"
2021-10-11 19:14:34 +00:00
version = "1.0.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-11 19:14:34 +00:00
checksum = "38bc8cc6a5f2e3655e0899c1b848643b2562f853f114bfec7be120678e3ace05"
dependencies = [
"proc-macro2",
]
[[package]]
2021-04-02 19:17:42 +00:00
name = "radium"
version = "0.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-02 19:17:42 +00:00
checksum = "941ba9d78d8e2f7ce474c015eea4d9c6d25b6a3327f9832ee29a4de27f91bbb8"
2021-02-10 20:37:44 +00:00
[[package]]
name = "rand"
2021-06-19 19:42:42 +00:00
version = "0.8.4"
2021-02-10 20:37:44 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-19 19:42:42 +00:00
checksum = "2e7573632e6454cf6b99d7aac4ccca54be06da05aca2ef7423d22d27d4d4bcd8"
2021-02-10 20:37:44 +00:00
dependencies = [
"libc",
2021-04-02 19:17:42 +00:00
"rand_chacha",
"rand_core",
"rand_hc",
2021-02-10 20:37:44 +00:00
]
[[package]]
name = "rand_chacha"
2021-06-19 19:42:42 +00:00
version = "0.3.1"
2021-02-10 20:37:44 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-19 19:42:42 +00:00
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
2021-02-10 20:37:44 +00:00
dependencies = [
"ppv-lite86",
2021-04-02 19:17:42 +00:00
"rand_core",
2021-02-10 20:37:44 +00:00
]
[[package]]
name = "rand_core"
2021-06-19 19:42:42 +00:00
version = "0.6.3"
2021-02-10 20:37:44 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-19 19:42:42 +00:00
checksum = "d34f1408f55294453790c48b2f1ebbb1c5b4b7563eb1f418bcfcfdbb06ebb4e7"
2021-02-10 20:37:44 +00:00
dependencies = [
2021-04-02 19:17:42 +00:00
"getrandom",
2021-02-10 20:37:44 +00:00
]
[[package]]
name = "rand_hc"
2021-06-19 19:42:42 +00:00
version = "0.3.1"
2021-02-10 20:37:44 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-19 19:42:42 +00:00
checksum = "d51e9f596de227fda2ea6c84607f5558e196eeaf43c986b724ba4fb8fdf497e7"
2021-02-10 20:37:44 +00:00
dependencies = [
2021-04-02 19:17:42 +00:00
"rand_core",
]
[[package]]
name = "redox_syscall"
2021-08-31 21:37:04 +00:00
version = "0.2.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-31 21:37:04 +00:00
checksum = "8383f39639269cde97d255a32bdb68c047337295414940c68bdd30c2e13203ff"
2021-03-10 02:14:42 +00:00
dependencies = [
"bitflags",
]
[[package]]
name = "regex"
2021-09-19 18:21:23 +00:00
version = "1.5.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-19 18:21:23 +00:00
checksum = "d07a8629359eb56f1e2fb1652bb04212c072a87ba68546a04065d525673ac461"
dependencies = [
"aho-corasick",
"memchr",
"regex-syntax",
]
2021-09-19 18:21:23 +00:00
[[package]]
name = "regex-automata"
version = "0.1.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
dependencies = [
"regex-syntax",
]
[[package]]
name = "regex-syntax"
2021-06-19 19:42:42 +00:00
version = "0.6.25"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-19 19:42:42 +00:00
checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b"
2021-09-19 18:21:23 +00:00
[[package]]
name = "remove_dir_all"
version = "0.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7"
dependencies = [
"winapi",
]
[[package]]
name = "rsass"
2021-08-31 21:37:04 +00:00
version = "0.22.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-31 21:37:04 +00:00
checksum = "d12b2ef4a0638222476c8ca9cb0a51184647404fe637a088fc0dc06f0c14512d"
dependencies = [
"lazy_static",
"nom",
2020-12-01 17:57:19 +00:00
"nom_locate",
"num-bigint",
"num-integer",
"num-rational",
"num-traits",
2021-04-02 19:17:42 +00:00
"rand",
]
[[package]]
name = "ructe"
2021-06-26 17:27:54 +00:00
version = "0.13.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-26 17:27:54 +00:00
checksum = "c6fd2f3b927021cc8586d365c36d16d82d91fdae0a3839819c12c8e86e0f929e"
dependencies = [
2021-04-02 19:17:42 +00:00
"base64",
"bytecount",
"itertools",
"md5",
"mime",
"nom",
"rsass",
]
2021-08-31 21:37:04 +00:00
[[package]]
name = "rustc_version"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f0dfe2087c51c460008730de8b57e6a320782fbfb312e1f4d520e6c6fae155ee"
dependencies = [
2021-10-21 16:17:47 +00:00
"semver",
]
[[package]]
name = "ryu"
version = "1.0.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "71d301d4193d031abdd79ff7e3dd721168a9572ef3fe51a1517aba235bd8f86e"
[[package]]
name = "scopeguard"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
2021-08-31 21:37:04 +00:00
[[package]]
name = "semver"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f301af10236f6df4160f7c3f04eec6dbc70ace82d23326abad5edee88801c6b6"
dependencies = [
2021-10-21 16:17:47 +00:00
"semver-parser",
]
2021-08-31 21:37:04 +00:00
[[package]]
name = "semver-parser"
version = "0.10.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "00b0bef5b7f9e0df16536d3961cfb6e84331c065b4066afb39768d0e319411f7"
dependencies = [
"pest",
]
[[package]]
name = "serde"
2021-08-31 21:37:04 +00:00
version = "1.0.130"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-31 21:37:04 +00:00
checksum = "f12d06de37cf59146fbdecab66aa99f9fe4f78722e3607577a5375d66bd0c913"
dependencies = [
"serde_derive",
]
[[package]]
name = "serde_derive"
2021-08-31 21:37:04 +00:00
version = "1.0.130"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-31 21:37:04 +00:00
checksum = "d7bc1a1ab1961464eae040d96713baa5a724a8152c1222492465b54322ec508b"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "serde_json"
2021-09-19 18:21:23 +00:00
version = "1.0.68"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-19 18:21:23 +00:00
checksum = "0f690853975602e1bfe1ccbf50504d67174e3bcf340f23b5ea9992e0587a52d8"
dependencies = [
"itoa",
"ryu",
"serde",
]
[[package]]
name = "serde_urlencoded"
2020-12-01 17:57:19 +00:00
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-01 17:57:19 +00:00
checksum = "edfa57a7f8d9c1d260a549e7224100f6c43d43f9103e06dd8b4095a9b2b43ce9"
dependencies = [
2020-12-01 17:57:19 +00:00
"form_urlencoded",
"itoa",
2020-12-01 17:57:19 +00:00
"ryu",
"serde",
]
[[package]]
name = "sha-1"
2021-08-31 21:37:04 +00:00
version = "0.9.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-31 21:37:04 +00:00
checksum = "99cd6713db3cf16b6c84e06321e049a9b9f699826e16096d23bbcc44d15d51a6"
dependencies = [
"block-buffer",
2021-03-10 02:14:42 +00:00
"cfg-if",
2021-06-19 19:42:42 +00:00
"cpufeatures",
"digest",
"opaque-debug",
]
2021-09-19 18:21:23 +00:00
[[package]]
name = "sharded-slab"
2021-10-21 16:17:47 +00:00
version = "0.1.4"
2021-09-19 18:21:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-21 16:17:47 +00:00
checksum = "900fba806f70c630b0a382d0d825e17a0f19fcd059a2ade1ff237bcddf446b31"
2021-09-19 18:21:23 +00:00
dependencies = [
"lazy_static",
]
[[package]]
name = "signal-hook-registry"
2021-06-19 19:42:42 +00:00
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-19 19:42:42 +00:00
checksum = "e51e73328dc4ac0c7ccbda3a494dfa03df1de2f46018127f60c693f2648455b0"
dependencies = [
"libc",
]
[[package]]
name = "slab"
2021-10-21 16:17:47 +00:00
version = "0.4.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-21 16:17:47 +00:00
checksum = "9def91fd1e018fe007022791f865d0ccc9b3a0d5001e01aabb8b40e46000afb5"
[[package]]
name = "smallvec"
2021-10-11 19:14:34 +00:00
version = "1.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-11 19:14:34 +00:00
checksum = "1ecab6c735a6bb4139c0caafd0cc3635748bbb3acf4550e8138122099251f309"
[[package]]
name = "socket2"
2021-09-19 18:21:23 +00:00
version = "0.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-19 18:21:23 +00:00
checksum = "5dc90fe6c7be1a323296982db1836d1ea9e47b6839496dde9a541bc496df3516"
dependencies = [
"libc",
2021-03-10 02:14:42 +00:00
"winapi",
]
[[package]]
name = "static_assertions"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
[[package]]
name = "strsim"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
[[package]]
name = "structopt"
2021-10-21 16:17:47 +00:00
version = "0.3.25"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-21 16:17:47 +00:00
checksum = "40b9788f4202aa75c240ecc9c15c65185e6a39ccdeb0fd5d008b98825464c87c"
dependencies = [
"clap",
"lazy_static",
"structopt-derive",
]
[[package]]
name = "structopt-derive"
2021-10-21 16:17:47 +00:00
version = "0.4.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-21 16:17:47 +00:00
checksum = "dcb5ae327f9cc13b68763b5749770cb9e048a99bd9dfdfa58d0cf05d5f64afe0"
dependencies = [
"heck",
"proc-macro-error",
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "syn"
2021-10-11 19:14:34 +00:00
version = "1.0.80"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-11 19:14:34 +00:00
checksum = "d010a1623fbd906d51d650a9916aaefc05ffa0e4053ff7fe601167f3e715d194"
dependencies = [
"proc-macro2",
"quote",
"unicode-xid",
]
2021-04-02 19:17:42 +00:00
[[package]]
name = "tap"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
[[package]]
2021-09-19 18:21:23 +00:00
name = "tempfile"
version = "3.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-19 18:21:23 +00:00
checksum = "dac1c663cfc93810f88aed9b8941d48cabf856a1b111c29a40439018d870eb22"
dependencies = [
2021-09-19 18:21:23 +00:00
"cfg-if",
"libc",
"rand",
"redox_syscall",
"remove_dir_all",
"winapi",
]
[[package]]
name = "textwrap"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
dependencies = [
"unicode-width",
]
[[package]]
name = "thiserror"
2021-10-11 19:14:34 +00:00
version = "1.0.30"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-11 19:14:34 +00:00
checksum = "854babe52e4df1653706b98fcfc05843010039b406875930a70e4d9644e5c417"
dependencies = [
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
2021-10-11 19:14:34 +00:00
version = "1.0.30"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-11 19:14:34 +00:00
checksum = "aa32fd3f627f367fe16f893e2597ae3c05020f8bba2666a4e6ea73d377e5714b"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
2021-09-19 18:21:23 +00:00
[[package]]
name = "thread_local"
version = "1.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8018d24e04c95ac8790716a5987d0fec4f8b27249ffa0f7d33f1369bdfb88cbd"
dependencies = [
"once_cell",
]
[[package]]
name = "time"
2021-10-26 15:50:45 +00:00
version = "0.3.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-26 15:50:45 +00:00
checksum = "99beeb0daeac2bd1e86ac2c21caddecb244b39a093594da1a661ec2060c7aedd"
dependencies = [
2021-10-21 16:17:47 +00:00
"itoa",
"libc",
]
[[package]]
name = "tinyvec"
2021-09-25 20:57:15 +00:00
version = "1.5.0"
2020-10-03 00:46:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-25 20:57:15 +00:00
checksum = "f83b2a3d4d9091d0abd7eba4dc2710b1718583bd4d8992e2190720ea38f391f7"
2020-10-03 00:46:54 +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"
2021-09-25 20:57:15 +00:00
version = "1.12.0"
2021-02-10 20:37:44 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-25 20:57:15 +00:00
checksum = "c2c2416fdedca8443ae44b4527de1ea633af61d8f7169ffa6e72c5b53d24efcc"
2021-02-10 20:37:44 +00:00
dependencies = [
"autocfg",
2021-03-10 02:14:42 +00:00
"bytes",
2021-02-10 20:37:44 +00:00
"libc",
"memchr",
2021-03-10 02:14:42 +00:00
"mio",
2021-09-19 18:21:23 +00:00
"num_cpus",
2021-02-10 20:37:44 +00:00
"once_cell",
"parking_lot",
2021-03-10 02:14:42 +00:00
"pin-project-lite",
2021-02-10 20:37:44 +00:00
"signal-hook-registry",
2021-09-19 18:21:23 +00:00
"tokio-macros",
2021-03-10 02:14:42 +00:00
"winapi",
2021-02-10 20:37:44 +00:00
]
2021-09-19 18:21:23 +00:00
[[package]]
name = "tokio-io-timeout"
version = "1.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "90c49f106be240de154571dd31fbe48acb10ba6c6dd6f6517ad603abffa42de9"
dependencies = [
"pin-project-lite",
"tokio",
]
[[package]]
name = "tokio-macros"
2021-10-21 16:17:47 +00:00
version = "1.5.0"
2021-09-19 18:21:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-21 16:17:47 +00:00
checksum = "b2dd85aeaba7b68df939bd357c6afb36c87951be9e80bf9c859f2fc3e9fca0fd"
2021-09-19 18:21:23 +00:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "tokio-stream"
version = "0.1.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7b2f3f698253f03119ac0102beaa64f67a67e08074d03a22d18784104543727f"
dependencies = [
"futures-core",
"pin-project-lite",
"tokio",
]
[[package]]
name = "tokio-util"
2021-09-06 20:06:30 +00:00
version = "0.6.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-06 20:06:30 +00:00
checksum = "08d3725d3efa29485e87311c5b699de63cde14b00ed4d256b8318aa30ca452cd"
dependencies = [
2021-03-10 02:14:42 +00:00
"bytes",
"futures-core",
"futures-sink",
"log",
2021-03-10 02:14:42 +00:00
"pin-project-lite",
"tokio",
]
2021-09-19 18:21:23 +00:00
[[package]]
name = "tonic"
version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "796c5e1cd49905e65dd8e700d4cb1dffcbfdb4fc9d017de08c1a537afd83627c"
dependencies = [
"async-stream",
"async-trait",
"base64",
"bytes",
"futures-core",
"futures-util",
"h2",
"http",
"http-body",
"hyper",
"hyper-timeout",
"percent-encoding",
"pin-project",
"prost",
"prost-derive",
"tokio",
"tokio-stream",
"tokio-util",
"tower",
"tower-layer",
"tower-service",
"tracing",
"tracing-futures",
]
[[package]]
name = "tonic-build"
version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "12b52d07035516c2b74337d2ac7746075e7dcae7643816c1b12c5ff8a7484c08"
dependencies = [
"proc-macro2",
"prost-build",
"quote",
"syn",
]
[[package]]
name = "tower"
2021-10-21 16:17:47 +00:00
version = "0.4.10"
2021-09-19 18:21:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-21 16:17:47 +00:00
checksum = "c00e500fff5fa1131c866b246041a6bf96da9c965f8fe4128cb1421f23e93c00"
2021-09-19 18:21:23 +00:00
dependencies = [
"futures-core",
"futures-util",
"indexmap",
"pin-project",
2021-10-21 16:17:47 +00:00
"pin-project-lite",
2021-09-19 18:21:23 +00:00
"rand",
"slab",
"tokio",
"tokio-stream",
"tokio-util",
"tower-layer",
"tower-service",
"tracing",
]
[[package]]
name = "tower-layer"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "343bc9466d3fe6b0f960ef45960509f84480bf4fd96f92901afe7ff3df9d3a62"
[[package]]
name = "tower-service"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "360dfd1d6d30e05fda32ace2c8c70e9c0a9da713275777f5a4dbb8a1893930c6"
2020-09-10 14:27:31 +00:00
[[package]]
name = "tracing"
2021-10-11 19:14:34 +00:00
version = "0.1.29"
2020-09-10 14:27:31 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-11 19:14:34 +00:00
checksum = "375a639232caf30edfc78e8d89b2d4c375515393e7af7e16f01cd96917fb2105"
2020-09-10 14:27:31 +00:00
dependencies = [
2021-03-10 02:14:42 +00:00
"cfg-if",
2021-09-19 18:21:23 +00:00
"log",
2021-03-10 02:14:42 +00:00
"pin-project-lite",
2021-09-19 18:21:23 +00:00
"tracing-attributes",
2020-09-10 14:27:31 +00:00
"tracing-core",
]
2021-09-19 18:21:23 +00:00
[[package]]
name = "tracing-actix-web"
2021-10-21 16:17:47 +00:00
version = "0.4.0-beta.15"
2021-10-26 15:50:45 +00:00
source = "git+https://github.com/asonix/tracing-actix-web?branch=asonix/update-tracing-subscriber#a3a9b1e6af6833586608a6aa4ce56cdb9d302f01"
2021-09-19 18:21:23 +00:00
dependencies = [
"actix-web",
"opentelemetry",
2021-10-11 19:14:34 +00:00
"pin-project",
2021-09-19 18:21:23 +00:00
"tracing",
"tracing-futures",
"tracing-opentelemetry",
"uuid",
]
[[package]]
name = "tracing-attributes"
2021-10-11 19:14:34 +00:00
version = "0.1.18"
2021-09-19 18:21:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-11 19:14:34 +00:00
checksum = "f4f480b8f81512e825f337ad51e94c1eb5d3bbdf2b363dcd01e2b19a9ffe3f8e"
2021-09-19 18:21:23 +00:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "tracing-awc"
2021-10-21 16:17:47 +00:00
version = "0.1.0-beta.6"
2021-10-26 15:50:45 +00:00
source = "git+https://git.asonix.dog/asonix/tracing-awc#23c419c3c88d24ed578211670e4cdc816ac9c026"
2021-09-19 18:21:23 +00:00
dependencies = [
"actix-http",
"awc",
"bytes",
2021-10-11 19:14:34 +00:00
"encoding_rs",
2021-09-19 18:21:23 +00:00
"futures-core",
2021-10-11 19:14:34 +00:00
"mime",
2021-09-19 18:21:23 +00:00
"opentelemetry",
"serde",
"tracing",
"tracing-futures",
"tracing-opentelemetry",
]
2020-09-10 14:27:31 +00:00
[[package]]
name = "tracing-core"
2021-10-11 19:14:34 +00:00
version = "0.1.21"
2021-09-19 18:21:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-11 19:14:34 +00:00
checksum = "1f4ed65637b8390770814083d20756f87bfa2c21bf2f110babdc5438351746e4"
2021-09-19 18:21:23 +00:00
dependencies = [
"lazy_static",
]
[[package]]
name = "tracing-error"
2021-10-25 01:48:19 +00:00
version = "0.2.0"
2021-09-19 18:21:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-25 01:48:19 +00:00
checksum = "d686ec1c0f384b1277f097b2f279a2ecc11afe8c133c1aabf036a27cb4cd206e"
2021-09-19 18:21:23 +00:00
dependencies = [
"tracing",
"tracing-subscriber",
]
[[package]]
name = "tracing-futures"
version = "0.2.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "97d095ae15e245a057c8e8451bab9b3ee1e1f68e9ba2b4fbc18d0ac5237835f2"
dependencies = [
"pin-project",
"tracing",
]
[[package]]
name = "tracing-log"
version = "0.1.2"
2020-09-10 14:27:31 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-19 18:21:23 +00:00
checksum = "a6923477a48e41c1951f1999ef8bb5a3023eb723ceadafe78ffb65dc366761e3"
2020-09-10 14:27:31 +00:00
dependencies = [
"lazy_static",
2021-09-19 18:21:23 +00:00
"log",
"tracing-core",
2020-09-10 14:27:31 +00:00
]
2021-09-19 18:21:23 +00:00
[[package]]
name = "tracing-opentelemetry"
2021-10-25 01:48:19 +00:00
version = "0.16.0"
2021-09-19 18:21:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-25 01:48:19 +00:00
checksum = "3ffbf13a0f8b054a4e59df3a173b818e9c6177c02789871f2073977fd0062076"
2021-09-19 18:21:23 +00:00
dependencies = [
"opentelemetry",
"tracing",
"tracing-core",
"tracing-log",
"tracing-subscriber",
]
[[package]]
name = "tracing-subscriber"
2021-10-26 15:50:45 +00:00
version = "0.3.1"
2021-09-19 18:21:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-26 15:50:45 +00:00
checksum = "80a4ddde70311d8da398062ecf6fc2c309337de6b0f77d6c27aff8d53f6fca52"
2021-09-19 18:21:23 +00:00
dependencies = [
"ansi_term 0.12.1",
"lazy_static",
"matchers",
"regex",
"sharded-slab",
"smallvec",
"thread_local",
"tracing",
"tracing-core",
"tracing-log",
]
[[package]]
name = "try-lock"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642"
[[package]]
name = "typenum"
2021-09-06 20:06:30 +00:00
version = "1.14.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-06 20:06:30 +00:00
checksum = "b63708a265f51345575b27fe43f9500ad611579e764c79edbc2037b1121959ec"
2021-08-31 21:37:04 +00:00
[[package]]
name = "ucd-trie"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "56dee185309b50d1f11bfedef0fe6d036842e3fb77413abef29f8f8d1c5d4c1c"
[[package]]
name = "unicode-bidi"
2021-10-11 19:14:34 +00:00
version = "0.3.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-11 19:14:34 +00:00
checksum = "1a01404663e3db436ed2746d9fefef640d868edae3cceb81c3b8d5732fda678f"
[[package]]
name = "unicode-normalization"
2021-06-19 19:42:42 +00:00
version = "0.1.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-19 19:42:42 +00:00
checksum = "d54590932941a9e9266f0832deed84ebe1bf2e4c9e4a3554d393d18f5e854bf9"
dependencies = [
2020-12-01 17:57:19 +00:00
"tinyvec",
]
[[package]]
name = "unicode-segmentation"
2021-08-31 21:37:04 +00:00
version = "1.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-31 21:37:04 +00:00
checksum = "8895849a949e7845e06bd6dc1aa51731a103c42707010a5b591c0038fb73385b"
[[package]]
name = "unicode-width"
2021-09-19 18:21:23 +00:00
version = "0.1.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-19 18:21:23 +00:00
checksum = "3ed742d4ea2bd1176e236172c8429aaf54486e7ac098db29ffe6529e0ce50973"
[[package]]
name = "unicode-xid"
2021-06-19 19:42:42 +00:00
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-19 19:42:42 +00:00
checksum = "8ccb82d61f80a663efe1f787a51b16b5a51e3314d6ac365b08639f52387b33f3"
[[package]]
name = "url"
2021-06-19 19:42:42 +00:00
version = "2.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-19 19:42:42 +00:00
checksum = "a507c383b2d33b5fc35d1861e77e6b383d158b2da5e14fe51b83dfedf6fd578c"
dependencies = [
2020-12-01 17:57:19 +00:00
"form_urlencoded",
"idna",
"matches",
"percent-encoding",
]
2021-09-19 18:21:23 +00:00
[[package]]
name = "uuid"
version = "0.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bc5cf98d8186244414c848017f0e2676b3fcb46807f6668a97dfe67359a3c4b7"
dependencies = [
"getrandom",
]
[[package]]
name = "vec_map"
version = "0.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191"
[[package]]
name = "version_check"
2021-04-02 19:17:42 +00:00
version = "0.9.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-02 19:17:42 +00:00
checksum = "5fecdca9a5291cc2b8dcf7dc02453fee791a280f3743cb0905f8822ae463b3fe"
2021-09-19 18:21:23 +00:00
[[package]]
name = "want"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0"
dependencies = [
"log",
"try-lock",
]
2021-02-10 20:37:44 +00:00
[[package]]
name = "wasi"
version = "0.10.2+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fd6fbd9a79829dd1ad0cc20627bf1ed606756a7f77edff7b66b7064f9cb327c6"
[[package]]
name = "wasm-bindgen"
2021-09-19 18:21:23 +00:00
version = "0.2.78"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-19 18:21:23 +00:00
checksum = "632f73e236b219150ea279196e54e610f5dbafa5d61786303d4da54f84e47fce"
dependencies = [
2021-03-10 02:14:42 +00:00
"cfg-if",
"wasm-bindgen-macro",
]
[[package]]
name = "wasm-bindgen-backend"
2021-09-19 18:21:23 +00:00
version = "0.2.78"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-19 18:21:23 +00:00
checksum = "a317bf8f9fba2476b4b2c85ef4c4af8ff39c3c7f0cdfeed4f82c34a880aa837b"
dependencies = [
"bumpalo",
"lazy_static",
"log",
"proc-macro2",
"quote",
"syn",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-macro"
2021-09-19 18:21:23 +00:00
version = "0.2.78"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-19 18:21:23 +00:00
checksum = "d56146e7c495528bf6587663bea13a8eb588d39b36b679d83972e1a2dbbdacf9"
dependencies = [
"quote",
"wasm-bindgen-macro-support",
]
[[package]]
name = "wasm-bindgen-macro-support"
2021-09-19 18:21:23 +00:00
version = "0.2.78"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-19 18:21:23 +00:00
checksum = "7803e0eea25835f8abdc585cd3021b3deb11543c6fe226dcd30b228857c5c5ab"
dependencies = [
"proc-macro2",
"quote",
"syn",
"wasm-bindgen-backend",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-shared"
2021-09-19 18:21:23 +00:00
version = "0.2.78"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-19 18:21:23 +00:00
checksum = "0237232789cf037d5480773fe568aac745bfe2afbc11a863e97901780a6b47cc"
[[package]]
name = "which"
version = "4.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ea187a8ef279bc014ec368c27a920da2024d2a711109bfbe3440585d5cf27ad9"
dependencies = [
"either",
"lazy_static",
"libc",
]
[[package]]
name = "winapi"
2020-09-10 14:27:31 +00:00
version = "0.3.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-10 14:27:31 +00:00
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
dependencies = [
"winapi-i686-pc-windows-gnu",
"winapi-x86_64-pc-windows-gnu",
]
[[package]]
name = "winapi-i686-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
[[package]]
name = "winapi-x86_64-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
2021-04-02 19:17:42 +00:00
[[package]]
name = "wyz"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "85e60b0d1b5f99db2556934e21937020776a5d31520bf169e851ac44e6420214"