miniserve/Cargo.lock

3016 lines
72 KiB
Plaintext
Raw Normal View History

2020-08-24 23:16:34 +00:00
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
2021-02-23 13:41:42 +00:00
version = 3
2020-09-11 23:57:53 +00:00
[[package]]
name = "actix-codec"
2021-08-28 22:34:37 +00:00
version = "0.4.0"
2020-09-11 23:57:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-28 22:34:37 +00:00
checksum = "1d5dbeb2d9e51344cb83ca7cc170f1217f9fe25bfc50160e6e200b5c31c1019a"
2020-09-11 23:57:53 +00:00
dependencies = [
"bitflags",
2021-08-28 22:34:37 +00:00
"bytes",
2020-09-11 23:57:53 +00:00
"futures-core",
"futures-sink",
"log",
2021-08-28 22:34:37 +00:00
"pin-project-lite",
"tokio",
"tokio-util",
]
2020-07-21 17:42:12 +00:00
[[package]]
name = "actix-files"
2021-08-28 22:34:37 +00:00
version = "0.6.0-beta.6"
2020-07-21 17:42:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-28 22:34:37 +00:00
checksum = "89b864740ed79d26e6e3c33fd2a1e03a071daaa43c88e6900ff1f9378fca88ce"
2020-07-21 17:42:12 +00:00
dependencies = [
2021-08-28 22:34:37 +00:00
"actix-http",
2020-08-24 23:16:34 +00:00
"actix-service",
2021-08-28 22:34:37 +00:00
"actix-utils",
2020-11-03 19:15:45 +00:00
"actix-web",
2021-08-28 22:34:37 +00:00
"askama_escape",
2020-08-24 23:16:34 +00:00
"bitflags",
2021-08-28 22:34:37 +00:00
"bytes",
2020-08-24 23:16:34 +00:00
"derive_more",
"futures-core",
2021-08-28 22:34:37 +00:00
"http-range",
2020-08-24 23:16:34 +00:00
"log",
"mime",
"mime_guess",
"percent-encoding",
2020-07-21 17:42:12 +00:00
]
2020-09-11 23:57:53 +00:00
[[package]]
name = "actix-http"
2021-08-28 22:34:37 +00:00
version = "3.0.0-beta.9"
2020-09-11 23:57:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-28 22:34:37 +00:00
checksum = "01260589f1aafad11224002741eb37bc603b4ce55b4e3556d2b2122f9aac7c51"
2020-09-11 23:57:53 +00:00
dependencies = [
2020-11-03 19:15:45 +00:00
"actix-codec",
2020-09-11 23:57:53 +00:00
"actix-rt",
"actix-service",
2021-08-27 02:11:10 +00:00
"actix-tls",
2020-11-03 19:15:45 +00:00
"actix-utils",
2021-08-28 22:34:37 +00:00
"ahash",
"base64",
2020-09-11 23:57:53 +00:00
"bitflags",
"brotli2",
2021-08-28 22:34:37 +00:00
"bytes",
"bytestring",
2020-09-11 23:57:53 +00:00
"derive_more",
"encoding_rs",
"flate2",
"futures-core",
"futures-util",
2021-08-28 22:34:37 +00:00
"h2",
2020-09-11 23:57:53 +00:00
"http",
"httparse",
"itoa",
"language-tags",
2021-08-28 22:34:37 +00:00
"local-channel",
2020-09-11 23:57:53 +00:00
"log",
"mime",
2021-08-28 22:34:37 +00:00
"once_cell",
2020-09-11 23:57:53 +00:00
"percent-encoding",
2021-08-28 22:34:37 +00:00
"pin-project",
"pin-project-lite",
"rand 0.8.4",
2020-09-11 23:57:53 +00:00
"regex",
"serde",
"sha-1",
2021-08-28 22:34:37 +00:00
"smallvec",
2021-06-28 08:27:46 +00:00
"time 0.2.27",
2021-08-28 22:34:37 +00:00
"tokio",
"zstd",
2020-06-26 09:51:25 +00:00
]
[[package]]
name = "actix-macros"
2021-08-28 22:34:37 +00:00
version = "0.2.1"
2020-06-26 09:51:25 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-28 22:34:37 +00:00
checksum = "c2f86cd6857c135e6e9fe57b1619a88d1f94a7df34c00e11fe13e64fd3438837"
2020-06-26 09:51:25 +00:00
dependencies = [
2020-08-24 23:16:34 +00:00
"quote",
"syn",
]
2018-10-30 19:38:42 +00:00
[[package]]
2020-07-21 17:42:12 +00:00
name = "actix-multipart"
2021-08-28 22:34:37 +00:00
version = "0.4.0-beta.5"
2018-10-30 19:38:42 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-28 22:34:37 +00:00
checksum = "a32d8964e147f1e411b38cd08a28eb37915be6797191a394fe0ad73f36441a99"
2018-10-30 19:38:42 +00:00
dependencies = [
2020-11-03 19:15:45 +00:00
"actix-utils",
"actix-web",
2021-08-28 22:34:37 +00:00
"bytes",
2020-08-24 23:16:34 +00:00
"derive_more",
2021-08-28 22:34:37 +00:00
"futures-core",
2020-09-11 23:57:53 +00:00
"futures-util",
2020-08-24 23:16:34 +00:00
"httparse",
2021-08-28 22:34:37 +00:00
"local-waker",
2020-08-24 23:16:34 +00:00
"log",
"mime",
"twoway",
2018-06-22 14:31:25 +00:00
]
[[package]]
name = "actix-router"
2021-02-23 13:41:42 +00:00
version = "0.2.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-23 13:41:42 +00:00
checksum = "2ad299af73649e1fc893e333ccf86f377751eb95ff875d095131574c6f43452c"
dependencies = [
2020-08-24 23:16:34 +00:00
"bytestring",
"http",
"log",
"regex",
"serde",
]
[[package]]
name = "actix-rt"
2021-08-28 22:34:37 +00:00
version = "2.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-28 22:34:37 +00:00
checksum = "bc7d7cd957c9ed92288a7c3c96af81fa5291f65247a76a34dac7b6af74e52ba0"
dependencies = [
2020-08-24 23:16:34 +00:00
"actix-macros",
2021-08-28 22:34:37 +00:00
"futures-core",
"tokio",
]
[[package]]
name = "actix-server"
2021-08-28 22:34:37 +00:00
version = "2.0.0-beta.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-28 22:34:37 +00:00
checksum = "26369215fcc3b0176018b3b68756a8bcc275bb000e6212e454944913a1f9bf87"
dependencies = [
2020-08-24 23:16:34 +00:00
"actix-rt",
"actix-service",
2020-11-03 19:15:45 +00:00
"actix-utils",
2021-08-28 22:34:37 +00:00
"futures-core",
2020-08-24 23:16:34 +00:00
"log",
2021-08-28 22:34:37 +00:00
"mio",
2020-08-24 23:16:34 +00:00
"num_cpus",
"slab",
2021-08-28 22:34:37 +00:00
"tokio",
]
[[package]]
name = "actix-service"
2021-08-28 22:34:37 +00:00
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-28 22:34:37 +00:00
checksum = "77f5f9d66a8730d0fae62c26f3424f5751e5518086628a40b7ab6fca4a705034"
dependencies = [
2021-08-28 22:34:37 +00:00
"futures-core",
"paste",
"pin-project-lite",
]
2020-09-11 23:57:53 +00:00
[[package]]
name = "actix-tls"
2021-08-28 22:34:37 +00:00
version = "3.0.0-beta.5"
2020-09-11 23:57:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-28 22:34:37 +00:00
checksum = "65b7bb60840962ef0332f7ea01a57d73a24d2cb663708511ff800250bbfef569"
2020-09-11 23:57:53 +00:00
dependencies = [
2020-11-03 19:15:45 +00:00
"actix-codec",
2021-08-28 22:34:37 +00:00
"actix-rt",
2020-09-11 23:57:53 +00:00
"actix-service",
2020-11-03 19:15:45 +00:00
"actix-utils",
2021-08-28 22:34:37 +00:00
"derive_more",
"futures-core",
"http",
"log",
"tokio-rustls",
"tokio-util",
"webpki-roots",
2020-09-11 23:57:53 +00:00
]
[[package]]
name = "actix-utils"
2021-08-28 22:34:37 +00:00
version = "3.0.0"
2020-09-11 23:57:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-28 22:34:37 +00:00
checksum = "e491cbaac2e7fc788dfff99ff48ef317e23b3cf63dbaf7aaab6418f40f92aa94"
2020-09-11 23:57:53 +00:00
dependencies = [
2021-08-28 22:34:37 +00:00
"local-waker",
"pin-project-lite",
2020-09-11 23:57:53 +00:00
]
[[package]]
name = "actix-web"
2021-08-28 22:34:37 +00:00
version = "4.0.0-beta.8"
2020-09-11 23:57:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-28 22:34:37 +00:00
checksum = "c503f726f895e55dac39adeafd14b5ee00cc956796314e9227fc7ae2e176f443"
2020-09-11 23:57:53 +00:00
dependencies = [
2020-11-03 19:15:45 +00:00
"actix-codec",
"actix-http",
2020-09-11 23:57:53 +00:00
"actix-macros",
"actix-router",
"actix-rt",
"actix-server",
"actix-service",
2020-11-03 19:15:45 +00:00
"actix-tls",
"actix-utils",
"actix-web-codegen",
2021-08-28 22:34:37 +00:00
"ahash",
"bytes",
"cfg-if",
"cookie",
2020-09-11 23:57:53 +00:00
"derive_more",
2021-08-28 22:34:37 +00:00
"either",
2020-09-11 23:57:53 +00:00
"encoding_rs",
"futures-core",
"futures-util",
2021-08-28 22:34:37 +00:00
"itoa",
"language-tags",
2020-09-11 23:57:53 +00:00
"log",
"mime",
2021-08-28 22:34:37 +00:00
"once_cell",
"paste",
"pin-project",
2020-09-11 23:57:53 +00:00
"regex",
"serde",
"serde_json",
"serde_urlencoded",
2021-08-28 22:34:37 +00:00
"smallvec",
"socket2",
2021-06-28 08:27:46 +00:00
"time 0.2.27",
2020-08-24 23:16:34 +00:00
"url",
]
2020-09-11 23:57:53 +00:00
[[package]]
name = "actix-web-codegen"
2021-08-28 22:34:37 +00:00
version = "0.5.0-beta.3"
2020-09-11 23:57:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-28 22:34:37 +00:00
checksum = "0d048c6986743105c1e8e9729fbc8d5d1667f2f62393a58be8d85a7d9a5a6c8d"
2020-09-11 23:57:53 +00:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
2018-07-26 06:05:08 +00:00
[[package]]
2020-07-21 17:42:12 +00:00
name = "actix-web-httpauth"
2021-08-28 22:34:37 +00:00
version = "0.6.0-beta.2"
2018-07-26 06:05:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-28 22:34:37 +00:00
checksum = "264d0eb4698d59493cafc96554c3919837115f8c4e9040a3790c2b55400ff758"
2018-07-26 06:05:08 +00:00
dependencies = [
2021-08-28 22:34:37 +00:00
"actix-service",
2020-11-03 19:15:45 +00:00
"actix-web",
2021-08-28 22:34:37 +00:00
"base64",
2020-08-24 23:16:34 +00:00
"futures-util",
2018-05-17 11:47:21 +00:00
]
2021-04-18 02:52:30 +00:00
[[package]]
name = "adler"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
2020-06-26 09:43:29 +00:00
[[package]]
2020-07-21 17:42:12 +00:00
name = "adler32"
2020-08-24 20:23:12 +00:00
version = "1.2.0"
2020-06-26 09:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-08-24 23:16:34 +00:00
checksum = "aae1277d39aeec15cb388266ecc24b11c80469deae6067e17a1a7aa9e5c1f234"
2018-10-30 19:38:42 +00:00
[[package]]
name = "ahash"
version = "0.7.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "43bb833f0bf979d8475d38fbf09ed3b8a55e1885fe93ad3f93239fc6a4f17b98"
dependencies = [
"getrandom 0.2.3",
"once_cell",
2021-08-28 22:34:37 +00:00
"version_check",
]
2018-05-17 11:47:21 +00:00
[[package]]
name = "aho-corasick"
version = "0.7.18"
2018-05-17 11:47:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1e37cfd5e7657ada45f742d6e99ca5788580b5c529dc78faf11ece6dc702656f"
2018-05-17 11:47:21 +00:00
dependencies = [
2020-08-24 23:16:34 +00:00
"memchr",
2018-05-17 11:47:21 +00:00
]
2019-02-04 19:28:06 +00:00
[[package]]
name = "alphanumeric-sort"
version = "1.4.3"
2019-02-04 19:28:06 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "20e59b2ccb4c1ffbbf45af6f493e16ac65a66981c85664f1587816c0b08cd698"
2019-02-04 19:28:06 +00:00
2018-05-17 11:47:21 +00:00
[[package]]
name = "ansi_term"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-08-24 23:16:34 +00:00
checksum = "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b"
2018-05-17 11:47:21 +00:00
dependencies = [
2021-08-28 22:34:37 +00:00
"winapi",
2018-05-17 11:47:21 +00:00
]
[[package]]
name = "ansi_term"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2"
dependencies = [
2021-08-28 22:34:37 +00:00
"winapi",
]
2021-08-27 02:11:10 +00:00
[[package]]
name = "anyhow"
version = "1.0.43"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "28ae2b3dec75a406790005a200b1bd89785afc02517a00ca99ecfe093ee9e6cf"
2021-08-28 22:34:37 +00:00
[[package]]
name = "askama_escape"
version = "0.10.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "90c108c1a94380c89d2215d0ac54ce09796823cca0fd91b299cfff3b33e346fb"
[[package]]
name = "assert_cmd"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "54f002ce7d0c5e809ebb02be78fd503aeed4a511fd0fcaff6e6914cbdabbfa33"
dependencies = [
"bstr",
2020-08-24 23:16:34 +00:00
"doc-comment",
"predicates",
2020-08-24 23:16:34 +00:00
"predicates-core",
"predicates-tree",
"wait-timeout",
]
[[package]]
name = "assert_fs"
version = "1.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b0ca6aa3066e6c6f0357e056a25fa95e8737f15a04f9aead0b22d0d082a39465"
dependencies = [
2020-08-24 23:16:34 +00:00
"doc-comment",
"globwalk",
"predicates",
2020-08-24 23:16:34 +00:00
"predicates-core",
"predicates-tree",
"tempfile",
]
2018-05-17 11:47:21 +00:00
[[package]]
name = "atty"
2020-03-09 17:16:42 +00:00
version = "0.2.14"
2018-05-17 11:47:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-08-24 23:16:34 +00:00
checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
2018-05-17 11:47:21 +00:00
dependencies = [
2020-08-24 23:16:34 +00:00
"hermit-abi",
"libc",
2021-08-28 22:34:37 +00:00
"winapi",
2018-05-17 11:47:21 +00:00
]
2020-03-09 17:16:42 +00:00
[[package]]
name = "autocfg"
2020-08-24 20:23:12 +00:00
version = "1.0.1"
2020-03-09 17:16:42 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-08-24 23:16:34 +00:00
checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a"
2020-03-09 17:16:42 +00:00
2020-09-11 23:57:53 +00:00
[[package]]
name = "base-x"
2020-11-08 23:16:04 +00:00
version = "0.2.8"
2020-09-11 23:57:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-08 23:16:04 +00:00
checksum = "a4521f3e3d031370679b3b140beb36dfe4801b09ac77e30c61941f97df3ef28b"
2020-09-11 23:57:53 +00:00
[[package]]
name = "base64"
version = "0.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd"
[[package]]
name = "beef"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bed554bd50246729a1ec158d08aa3235d1b69d94ad120ebe187e28894787e736"
[[package]]
name = "bit-set"
2020-05-14 23:49:05 +00:00
version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-08-24 23:16:34 +00:00
checksum = "6e11e16035ea35e4e5997b393eacbf6f63983188f7a2ad25bfb13465f5ad59de"
dependencies = [
2020-08-24 23:16:34 +00:00
"bit-vec",
]
[[package]]
name = "bit-vec"
2020-12-07 09:02:45 +00:00
version = "0.6.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-07 09:02:45 +00:00
checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb"
2018-05-17 11:47:21 +00:00
[[package]]
name = "bitflags"
2021-08-25 02:50:12 +00:00
version = "1.3.2"
2018-05-17 11:47:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-25 02:50:12 +00:00
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
2018-05-17 11:47:21 +00:00
2020-06-26 09:50:10 +00:00
[[package]]
name = "block-buffer"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-08-24 23:16:34 +00:00
checksum = "4152116fd6e9dadb291ae18fc1ec3575ed6d84c29642d97890f4b4a3417297e4"
2020-06-26 09:50:10 +00:00
dependencies = [
2020-08-24 23:16:34 +00:00
"generic-array",
]
2018-05-17 11:47:21 +00:00
[[package]]
name = "brotli-sys"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-08-24 23:16:34 +00:00
checksum = "4445dea95f4c2b41cde57cc9fee236ae4dbae88d8fcbdb4750fc1bb5d86aaecd"
2018-05-17 11:47:21 +00:00
dependencies = [
2020-08-24 23:16:34 +00:00
"cc",
"libc",
2018-05-17 11:47:21 +00:00
]
[[package]]
name = "brotli2"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-08-24 23:16:34 +00:00
checksum = "0cb036c3eade309815c15ddbacec5b22c4d1f3983a774ab2eac2e3e9ea85568e"
2018-05-17 11:47:21 +00:00
dependencies = [
2020-08-24 23:16:34 +00:00
"brotli-sys",
"libc",
2018-05-17 11:47:21 +00:00
]
[[package]]
name = "bstr"
2021-06-01 06:11:55 +00:00
version = "0.2.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-01 06:11:55 +00:00
checksum = "90682c8d613ad3373e66de8c6411e0ae2ab2571e879d2efbf73558cc66f21279"
dependencies = [
"lazy_static",
2020-08-24 23:16:34 +00:00
"memchr",
"regex-automata",
]
2020-03-11 14:18:15 +00:00
[[package]]
name = "bumpalo"
2021-06-01 06:11:55 +00:00
version = "3.7.0"
2020-03-11 14:18:15 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-01 06:11:55 +00:00
checksum = "9c59e7af012c713f529e7a3ee57ce9b31ddd858d4b512923602f74608b009631"
2020-03-11 14:18:15 +00:00
2018-05-17 11:47:21 +00:00
[[package]]
name = "byteorder"
2021-03-20 22:08:30 +00:00
version = "1.4.3"
2018-05-17 11:47:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-03-20 22:08:30 +00:00
checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
2018-05-17 11:47:21 +00:00
2021-01-06 09:32:21 +00:00
[[package]]
name = "bytes"
2021-08-25 16:26:46 +00:00
version = "1.1.0"
2021-01-06 09:32:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-25 16:26:46 +00:00
checksum = "c4872d67bab6358e59559027aa3b9157c53d9358c51423c17554809a8858e0f8"
2021-01-06 09:32:21 +00:00
2019-07-07 12:36:45 +00:00
[[package]]
2020-03-11 14:18:15 +00:00
name = "bytesize"
version = "1.1.0"
2019-07-07 12:36:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6c58ec36aac5066d5ca17df51b3e70279f5670a72102f5752cb7e7c856adfc70"
2019-07-07 12:36:45 +00:00
2020-06-26 09:51:25 +00:00
[[package]]
name = "bytestring"
2021-01-15 19:55:56 +00:00
version = "1.0.0"
2020-06-26 09:51:25 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-15 19:55:56 +00:00
checksum = "90706ba19e97b90786e19dc0d5e2abd80008d99d4c0c5d1ad0b5e72cec7c494d"
2020-06-26 09:51:25 +00:00
dependencies = [
2021-08-28 22:34:37 +00:00
"bytes",
2020-06-26 09:51:25 +00:00
]
[[package]]
name = "bzip2"
2021-06-28 08:27:46 +00:00
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-28 08:27:46 +00:00
checksum = "6afcd980b5f3a45017c57e57a2fcccbb351cc43a356ce117ef760ef8052b89b0"
dependencies = [
2020-08-24 23:16:34 +00:00
"bzip2-sys",
"libc",
]
[[package]]
name = "bzip2-sys"
2021-06-28 08:27:46 +00:00
version = "0.1.11+1.0.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-28 08:27:46 +00:00
checksum = "736a955f3fa7875102d57c82b8cac37ec45224a07fd32d58f9f7a186b6cd4cdc"
dependencies = [
2020-08-24 23:16:34 +00:00
"cc",
"libc",
"pkg-config",
]
2018-05-17 11:47:21 +00:00
[[package]]
name = "cc"
2021-08-25 02:50:12 +00:00
version = "1.0.69"
2018-05-17 11:47:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-25 02:50:12 +00:00
checksum = "e70cc2f62c6ce1868963827bd677764c62d07c3d9a3e1fb1177ee1a9ab199eb2"
2021-08-28 22:34:37 +00:00
dependencies = [
"jobserver",
]
2018-05-17 11:47:21 +00:00
2020-11-03 19:15:45 +00:00
[[package]]
name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
2018-05-17 11:47:21 +00:00
[[package]]
name = "chrono"
version = "0.4.19"
2018-05-17 11:47:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "670ad68c9088c2a963aaa298cb369688cf3f9465ce5e2d4ca10e6e0098a1ce73"
2018-05-17 11:47:21 +00:00
dependencies = [
"libc",
2020-08-24 23:16:34 +00:00
"num-integer",
"num-traits",
"time 0.1.43",
2021-08-28 22:34:37 +00:00
"winapi",
2018-05-17 11:47:21 +00:00
]
[[package]]
name = "chrono-humanize"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2eddc119501d583fd930cb92144e605f44e0252c38dd89d9247fffa1993375cb"
dependencies = [
2020-08-24 23:16:34 +00:00
"chrono",
]
2018-05-17 11:47:21 +00:00
[[package]]
name = "clap"
2020-08-24 20:23:12 +00:00
version = "2.33.3"
2018-05-17 11:47:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-08-24 23:16:34 +00:00
checksum = "37e58ac78573c40708d45522f0d80fa2f01cc4f9b4e2bf749807255454312002"
2018-05-17 11:47:21 +00:00
dependencies = [
"ansi_term 0.11.0",
2020-08-24 23:16:34 +00:00
"atty",
"bitflags",
2021-08-30 03:04:10 +00:00
"strsim 0.8.0",
"textwrap 0.11.0",
2020-08-24 23:16:34 +00:00
"unicode-width",
"vec_map",
2018-05-17 11:47:21 +00:00
]
2021-08-30 03:04:10 +00:00
[[package]]
name = "clap"
version = "3.0.0-beta.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fcd70aa5597dbc42f7217a543f9ef2768b2ef823ba29036072d30e1d88e98406"
dependencies = [
"atty",
"bitflags",
"clap_derive",
"indexmap",
"lazy_static",
"os_str_bytes",
"strsim 0.10.0",
"termcolor",
"terminal_size",
"textwrap 0.14.2",
"vec_map",
]
[[package]]
name = "clap_derive"
version = "3.0.0-beta.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0b5bb0d655624a0b8770d1c178fb8ffcb1f91cc722cb08f451e3dc72465421ac"
dependencies = [
"heck",
"proc-macro-error",
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "clap_generate"
version = "3.0.0-beta.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2d9b1abef93569f290952eff3c4a0a92d6767bb5158db095b4dc9a512b1c3643"
dependencies = [
"clap 3.0.0-beta.4",
]
[[package]]
name = "codemap"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b9e769b5c8c8283982a987c6e948e540254f1058d5a74b8794914d4ef5fc2a24"
2020-09-11 23:57:53 +00:00
[[package]]
name = "const_fn"
2021-06-01 06:11:55 +00:00
version = "0.4.8"
2020-09-11 23:57:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-01 06:11:55 +00:00
checksum = "f92cfa0fd5690b3cf8c1ef2cabbd9b7ef22fa53cf5e1f92b05103f6d5d1cf6e7"
2020-09-11 23:57:53 +00:00
2021-03-26 22:29:45 +00:00
[[package]]
name = "convert_case"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e"
2020-09-11 23:57:53 +00:00
[[package]]
name = "cookie"
2021-08-28 22:34:37 +00:00
version = "0.15.1"
2020-09-11 23:57:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-28 22:34:37 +00:00
checksum = "d5f1c7727e460397e56abc4bddc1d49e07a1ad78fc98eb2e1c8f032a58a2f80d"
2020-09-11 23:57:53 +00:00
dependencies = [
"percent-encoding",
2021-06-28 08:27:46 +00:00
"time 0.2.27",
2021-08-28 22:34:37 +00:00
"version_check",
2020-09-11 23:57:53 +00:00
]
[[package]]
name = "cpufeatures"
2021-08-28 22:34:37 +00:00
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-28 22:34:37 +00:00
checksum = "95059428f66df56b63431fdb4e1947ed2190586af5c5a8a8b71122bdf5a7f469"
dependencies = [
"libc",
]
2018-12-10 15:32:09 +00:00
[[package]]
name = "crc32fast"
2020-11-03 19:15:45 +00:00
version = "1.2.1"
2018-05-17 11:47:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-03 19:15:45 +00:00
checksum = "81156fece84ab6a9f2afdb109ce3ae577e42b1228441eded99bd77f627953b1a"
2018-05-17 11:47:21 +00:00
dependencies = [
2021-08-28 22:34:37 +00:00
"cfg-if",
2019-02-11 13:53:36 +00:00
]
2020-03-09 17:16:42 +00:00
[[package]]
name = "crossbeam-utils"
2021-06-01 06:11:55 +00:00
version = "0.8.5"
2020-03-09 17:16:42 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-01 06:11:55 +00:00
checksum = "d82cfc11ce7f2c3faef78d8a684447b40d503d9681acebed6cb728d45940c4db"
2020-03-09 17:16:42 +00:00
dependencies = [
2021-08-28 22:34:37 +00:00
"cfg-if",
2020-08-24 23:16:34 +00:00
"lazy_static",
2020-03-09 17:16:42 +00:00
]
[[package]]
name = "ctor"
2021-03-26 22:29:45 +00:00
version = "0.1.20"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-03-26 22:29:45 +00:00
checksum = "5e98e2ad1a782e33928b96fc3948e7c355e5af34ba4de7670fe8bac2a3b2006d"
dependencies = [
2020-08-24 23:16:34 +00:00
"quote",
"syn",
]
[[package]]
name = "derive_more"
2021-08-25 02:50:12 +00:00
version = "0.99.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-25 02:50:12 +00:00
checksum = "40eebddd2156ce1bb37b20bbe5151340a31828b1f2d22ba4141f3531710e38df"
dependencies = [
2021-03-26 22:29:45 +00:00
"convert_case",
2020-08-24 23:16:34 +00:00
"proc-macro2",
"quote",
2021-08-25 02:50:12 +00:00
"rustc_version 0.3.3",
2020-08-24 23:16:34 +00:00
"syn",
]
[[package]]
name = "diff"
version = "0.1.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0e25ea47919b1560c4e3b7fe0aaab9becf5b84a10325ddf7db0f0ba5e1026499"
[[package]]
name = "difflib"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8"
2020-06-26 09:50:10 +00:00
[[package]]
name = "digest"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-08-24 23:16:34 +00:00
checksum = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066"
2020-06-26 09:50:10 +00:00
dependencies = [
2020-08-24 23:16:34 +00:00
"generic-array",
2020-06-26 09:50:10 +00:00
]
2020-09-11 23:57:53 +00:00
[[package]]
name = "discard"
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "212d0f5754cb6769937f4501cc0e67f4f4483c8d2c3e1e922ee9edbe4ab4c7c0"
[[package]]
name = "doc-comment"
2020-05-14 23:49:05 +00:00
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-08-24 23:16:34 +00:00
checksum = "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10"
2019-05-19 14:16:06 +00:00
[[package]]
name = "either"
2020-09-24 03:38:37 +00:00
version = "1.6.1"
2018-05-17 11:47:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-24 03:38:37 +00:00
checksum = "e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457"
2018-05-17 11:47:21 +00:00
[[package]]
2020-07-21 17:42:12 +00:00
name = "encoding_rs"
2021-02-23 13:41:42 +00:00
version = "0.8.28"
2018-05-17 11:47:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-23 13:41:42 +00:00
checksum = "80df024fbc5ac80f87dfef0d9f5209a252f2a497f7f42944cff24d8253cac065"
2018-05-17 11:47:21 +00:00
dependencies = [
2021-08-28 22:34:37 +00:00
"cfg-if",
2018-05-17 11:47:21 +00:00
]
[[package]]
2020-07-21 17:42:12 +00:00
name = "filetime"
2021-08-25 02:50:12 +00:00
version = "0.2.15"
2018-05-17 11:47:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-25 02:50:12 +00:00
checksum = "975ccf83d8d9d0d84682850a38c8169027be83368805971cc4f238c2b245bc98"
2018-05-17 11:47:21 +00:00
dependencies = [
2021-08-28 22:34:37 +00:00
"cfg-if",
2020-08-24 23:16:34 +00:00
"libc",
2021-02-23 13:41:42 +00:00
"redox_syscall",
2021-08-28 22:34:37 +00:00
"winapi",
2018-05-17 11:47:21 +00:00
]
[[package]]
2020-07-21 17:42:12 +00:00
name = "flate2"
2021-04-18 02:52:30 +00:00
version = "1.0.20"
2018-05-17 11:47:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-18 02:52:30 +00:00
checksum = "cd3aec53de10fe96d7d8c565eb17f2c687bb5518a2ec453b5b1252964526abe0"
2018-05-17 11:47:21 +00:00
dependencies = [
2021-08-28 22:34:37 +00:00
"cfg-if",
2020-08-24 23:16:34 +00:00
"crc32fast",
"libc",
2021-03-20 22:32:25 +00:00
"miniz_oxide",
2018-05-17 11:47:21 +00:00
]
2021-08-27 02:11:10 +00:00
[[package]]
name = "float-cmp"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "98de4bbd547a563b716d8dfa9aad1cb19bfab00f4fa09a6a4ed21dbcf44ce9c4"
dependencies = [
"num-traits",
]
[[package]]
2020-07-21 17:42:12 +00:00
name = "fnv"
version = "1.0.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-08-24 23:16:34 +00:00
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
2020-11-08 23:16:04 +00:00
[[package]]
name = "form_urlencoded"
2021-02-23 13:41:42 +00:00
version = "1.0.1"
2020-11-08 23:16:04 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-23 13:41:42 +00:00
checksum = "5fc25a87fa4fd2094bffb06925852034d90a17f0d1e05197d4956d3555752191"
2020-11-08 23:16:04 +00:00
dependencies = [
"matches",
"percent-encoding",
]
[[package]]
name = "futf"
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-08-24 23:16:34 +00:00
checksum = "7c9c1ce3fa9336301af935ab852c437817d14cd33690446569392e65170aac3b"
dependencies = [
2020-08-24 23:16:34 +00:00
"mac",
"new_debug_unreachable",
]
2020-06-26 09:51:25 +00:00
[[package]]
name = "futures"
version = "0.3.16"
2020-06-26 09:51:25 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1adc00f486adfc9ce99f77d717836f0c5aa84965eb0b4f051f4e83f7cab53f8b"
2020-06-26 09:51:25 +00:00
dependencies = [
2020-08-24 23:16:34 +00:00
"futures-channel",
"futures-core",
"futures-executor",
"futures-io",
"futures-sink",
"futures-task",
"futures-util",
2020-06-26 09:51:25 +00:00
]
2020-03-11 14:18:15 +00:00
[[package]]
name = "futures-channel"
version = "0.3.16"
2020-03-11 14:18:15 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "74ed2411805f6e4e3d9bc904c95d5d423b89b3b25dc0250aa74729de20629ff9"
2020-03-11 14:18:15 +00:00
dependencies = [
2020-08-24 23:16:34 +00:00
"futures-core",
"futures-sink",
2020-03-11 14:18:15 +00:00
]
[[package]]
name = "futures-core"
version = "0.3.16"
2020-03-11 14:18:15 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "af51b1b4a7fdff033703db39de8802c673eb91855f2e0d47dcf3bf2c0ef01f99"
2020-03-11 14:18:15 +00:00
2020-06-26 09:51:25 +00:00
[[package]]
name = "futures-executor"
version = "0.3.16"
2020-06-26 09:51:25 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4d0d535a57b87e1ae31437b892713aee90cd2d7b0ee48727cd11fc72ef54761c"
2020-06-26 09:51:25 +00:00
dependencies = [
2020-08-24 23:16:34 +00:00
"futures-core",
"futures-task",
"futures-util",
2020-06-26 09:51:25 +00:00
]
2020-03-11 14:18:15 +00:00
[[package]]
name = "futures-io"
version = "0.3.16"
2020-03-11 14:18:15 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0b0e06c393068f3a6ef246c75cdca793d6a46347e75286933e5e75fd2fd11582"
2020-03-11 14:18:15 +00:00
2020-06-26 09:51:25 +00:00
[[package]]
name = "futures-macro"
version = "0.3.16"
2020-06-26 09:51:25 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c54913bae956fb8df7f4dc6fc90362aa72e69148e3f39041fbe8742d21e0ac57"
2020-06-26 09:51:25 +00:00
dependencies = [
"autocfg",
2020-08-24 23:16:34 +00:00
"proc-macro-hack",
"proc-macro2",
"quote",
"syn",
2020-06-26 09:51:25 +00:00
]
2020-03-11 14:18:15 +00:00
[[package]]
name = "futures-sink"
version = "0.3.16"
2020-03-11 14:18:15 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c0f30aaa67363d119812743aa5f33c201a7a66329f97d1a887022971feea4b53"
2020-03-11 14:18:15 +00:00
[[package]]
name = "futures-task"
version = "0.3.16"
2020-03-11 14:18:15 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bbe54a98670017f3be909561f6ad13e810d9a51f3f061b902062ca3da80799f2"
2020-03-11 14:18:15 +00:00
[[package]]
name = "futures-util"
version = "0.3.16"
2020-03-11 14:18:15 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "67eb846bfd58e44a8481a00049e82c43e0ccb5d61f8dc071057cb19249dd4d78"
2020-03-11 14:18:15 +00:00
dependencies = [
"autocfg",
2020-08-24 23:16:34 +00:00
"futures-channel",
"futures-core",
"futures-io",
"futures-macro",
"futures-sink",
"futures-task",
"memchr",
2021-08-28 22:34:37 +00:00
"pin-project-lite",
2020-08-24 23:16:34 +00:00
"pin-utils",
"proc-macro-hack",
"proc-macro-nested",
"slab",
2020-03-11 14:18:15 +00:00
]
2020-06-26 09:50:10 +00:00
[[package]]
name = "generic-array"
2020-08-24 20:23:12 +00:00
version = "0.14.4"
2020-06-26 09:50:10 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-08-24 23:16:34 +00:00
checksum = "501466ecc8a30d1d3b7fc9229b122b2ce8ed6e9d9223f1138d4babb253e51817"
2020-06-26 09:50:10 +00:00
dependencies = [
2020-08-24 23:16:34 +00:00
"typenum",
2021-08-28 22:34:37 +00:00
"version_check",
2020-06-26 09:50:10 +00:00
]
2019-07-07 12:36:45 +00:00
[[package]]
name = "getrandom"
2021-01-04 02:00:48 +00:00
version = "0.1.16"
2019-07-07 12:36:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-04 02:00:48 +00:00
checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce"
2019-07-07 12:36:45 +00:00
dependencies = [
2021-08-28 22:34:37 +00:00
"cfg-if",
2020-08-24 23:16:34 +00:00
"libc",
2020-09-06 19:44:38 +00:00
"wasi 0.9.0+wasi-snapshot-preview1",
2019-07-07 12:36:45 +00:00
]
2021-01-15 19:55:56 +00:00
[[package]]
name = "getrandom"
2021-06-01 06:11:55 +00:00
version = "0.2.3"
2021-01-15 19:55:56 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-01 06:11:55 +00:00
checksum = "7fcd999463524c52659517fe2cea98493cfe485d10565e7b0fb07dbba7ad2753"
2021-01-15 19:55:56 +00:00
dependencies = [
2021-08-28 22:34:37 +00:00
"cfg-if",
2021-01-15 19:55:56 +00:00
"libc",
"wasi 0.10.2+wasi-snapshot-preview1",
2021-01-15 19:55:56 +00:00
]
[[package]]
name = "globset"
2021-06-28 08:27:46 +00:00
version = "0.4.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-28 08:27:46 +00:00
checksum = "10463d9ff00a2a068db14231982f5132edebad0d7660cd956a1c30292dbcbfbd"
dependencies = [
2020-08-24 23:16:34 +00:00
"aho-corasick",
"bstr",
"fnv",
"log",
"regex",
]
[[package]]
name = "globwalk"
version = "0.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "93e3af942408868f6934a7b85134a3230832b9977cf66125df2f9edcfce4ddcc"
dependencies = [
"bitflags",
2020-08-24 23:16:34 +00:00
"ignore",
"walkdir",
]
[[package]]
name = "grass"
version = "0.10.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "82317908bc4204532d098390f8e041693aaeab95cf7351f774bdacf253b1c8ed"
dependencies = [
"beef",
2021-08-30 03:04:10 +00:00
"clap 2.33.3",
"codemap",
"indexmap",
"lasso",
"num-bigint",
"num-rational",
"num-traits",
"once_cell",
"phf 0.9.0",
"rand 0.8.4",
]
2021-01-06 09:32:21 +00:00
[[package]]
name = "h2"
2021-08-25 02:50:12 +00:00
version = "0.3.4"
2021-01-06 09:32:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-25 02:50:12 +00:00
checksum = "d7f3675cfef6a30c8031cf9e6493ebdc3bb3272a3fea3923c4210d1830e6a472"
2021-01-06 09:32:21 +00:00
dependencies = [
2021-08-28 22:34:37 +00:00
"bytes",
2020-08-24 23:16:34 +00:00
"fnv",
"futures-core",
"futures-sink",
"futures-util",
"http",
"indexmap",
"slab",
2021-08-28 22:34:37 +00:00
"tokio",
"tokio-util",
2020-08-24 23:16:34 +00:00
"tracing",
2020-07-21 17:42:12 +00:00
]
[[package]]
name = "hashbrown"
version = "0.11.2"
2020-07-21 17:42:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e"
dependencies = [
"ahash",
]
2020-03-11 14:18:15 +00:00
2019-02-14 21:24:07 +00:00
[[package]]
name = "heck"
2021-06-28 08:27:46 +00:00
version = "0.3.3"
2019-02-14 21:24:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-28 08:27:46 +00:00
checksum = "6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c"
2019-02-14 21:24:07 +00:00
dependencies = [
2020-08-24 23:16:34 +00:00
"unicode-segmentation",
2020-03-09 17:16:42 +00:00
]
[[package]]
name = "hermit-abi"
2021-06-28 08:27:46 +00:00
version = "0.1.19"
2020-03-09 17:16:42 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-28 08:27:46 +00:00
checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
2020-03-09 17:16:42 +00:00
dependencies = [
2020-08-24 23:16:34 +00:00
"libc",
2019-02-14 21:24:07 +00:00
]
[[package]]
name = "hex"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
[[package]]
name = "html5ever"
version = "0.25.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-08-24 23:16:34 +00:00
checksum = "aafcf38a1a36118242d29b92e1b08ef84e67e4a5ed06e0a80be20e6a32bfed6b"
dependencies = [
2020-08-24 23:16:34 +00:00
"log",
"mac",
"markup5ever",
"proc-macro2",
"quote",
"syn",
]
2020-03-11 14:18:15 +00:00
[[package]]
name = "http"
version = "0.2.4"
2020-03-11 14:18:15 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "527e8c9ac747e28542699a951517aa9a6945af506cd1f2e1b53a576c17b6cc11"
2020-03-11 14:18:15 +00:00
dependencies = [
2021-08-28 22:34:37 +00:00
"bytes",
2020-08-24 23:16:34 +00:00
"fnv",
"itoa",
2020-03-11 14:18:15 +00:00
]
2019-05-19 14:16:06 +00:00
[[package]]
name = "http-body"
2021-08-25 02:50:12 +00:00
version = "0.4.3"
2019-05-19 14:16:06 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-25 02:50:12 +00:00
checksum = "399c583b2979440c60be0821a6199eca73bc3c8dcd9d070d75ac726e2c6186e5"
2019-05-19 14:16:06 +00:00
dependencies = [
2021-08-28 22:34:37 +00:00
"bytes",
2020-08-24 23:16:34 +00:00
"http",
2021-08-28 22:34:37 +00:00
"pin-project-lite",
2018-05-17 11:47:21 +00:00
]
2021-08-28 22:34:37 +00:00
[[package]]
name = "http-range"
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eee9694f83d9b7c09682fdb32213682939507884e5bcf227be9aff5d644b90dc"
2018-05-17 11:47:21 +00:00
[[package]]
name = "httparse"
version = "1.5.1"
2018-05-17 11:47:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "acd94fdbe1d4ff688b67b04eee2e17bd50995534a61539e45adfefb45e5e5503"
2018-05-17 11:47:21 +00:00
2020-09-24 03:38:37 +00:00
[[package]]
name = "httpdate"
2021-06-01 06:11:55 +00:00
version = "1.0.1"
2020-09-24 03:38:37 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-01 06:11:55 +00:00
checksum = "6456b8a6c8f33fee7d958fcd1b60d55b11940a79e63ae87013e6d22e26034440"
2020-09-24 03:38:37 +00:00
[[package]]
name = "hyper"
2021-08-25 02:54:56 +00:00
version = "0.14.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-25 02:54:56 +00:00
checksum = "13f67199e765030fa08fe0bd581af683f0d5bc04ea09c2b1102012c5fb90e7fd"
dependencies = [
2021-08-28 22:34:37 +00:00
"bytes",
2020-08-24 23:16:34 +00:00
"futures-channel",
"futures-core",
"futures-util",
2021-08-28 22:34:37 +00:00
"h2",
2020-08-24 23:16:34 +00:00
"http",
"http-body",
"httparse",
2020-09-24 03:38:37 +00:00
"httpdate",
2020-08-24 23:16:34 +00:00
"itoa",
2021-08-28 22:34:37 +00:00
"pin-project-lite",
"socket2",
"tokio",
2020-08-24 23:16:34 +00:00
"tower-service",
"tracing",
"want",
]
[[package]]
2020-07-21 23:15:57 +00:00
name = "hyper-rustls"
2021-01-06 09:32:21 +00:00
version = "0.22.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-06 09:32:21 +00:00
checksum = "5f9f7a97316d44c0af9b0301e65010573a853a9fc97046d7331d7f6bc0fd5a64"
dependencies = [
2020-08-24 23:16:34 +00:00
"futures-util",
"hyper",
"log",
2021-08-28 22:34:37 +00:00
"rustls",
"tokio",
"tokio-rustls",
2020-08-24 23:16:34 +00:00
"webpki",
]
2019-07-25 12:22:31 +00:00
[[package]]
name = "idna"
2021-04-18 02:52:30 +00:00
version = "0.2.3"
2019-07-25 12:22:31 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-18 02:52:30 +00:00
checksum = "418a0a6fab821475f634efe3ccc45c013f742efe03d853e8d3355d5cb850ecf8"
2019-07-25 12:22:31 +00:00
dependencies = [
2020-08-24 23:16:34 +00:00
"matches",
"unicode-bidi",
"unicode-normalization",
2019-07-25 12:22:31 +00:00
]
[[package]]
name = "ignore"
2021-06-28 08:27:46 +00:00
version = "0.4.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-28 08:27:46 +00:00
checksum = "713f1b139373f96a2e0ce3ac931cd01ee973c3c5dd7c40c0c2efe96ad2b6751d"
dependencies = [
2020-08-24 23:16:34 +00:00
"crossbeam-utils",
"globset",
"lazy_static",
"log",
"memchr",
"regex",
"same-file",
"thread_local",
"walkdir",
"winapi-util",
]
2018-05-17 11:47:21 +00:00
[[package]]
name = "indexmap"
2021-08-25 02:50:12 +00:00
version = "1.7.0"
2018-05-17 11:47:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-25 02:50:12 +00:00
checksum = "bc633605454125dec4b66843673f01c7df2b89479b32e0ed634e43a91cff62a5"
2019-10-23 19:24:48 +00:00
dependencies = [
"autocfg",
2021-08-25 02:50:12 +00:00
"hashbrown",
2019-10-23 19:24:48 +00:00
]
2018-05-17 11:47:21 +00:00
[[package]]
2020-07-21 17:42:12 +00:00
name = "instant"
2021-08-25 02:50:12 +00:00
version = "0.1.10"
2018-05-17 11:47:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-25 02:50:12 +00:00
checksum = "bee0328b1209d157ef001c94dd85b4f8f64139adb0eac2659f4b08382b2f474d"
2020-09-24 03:38:37 +00:00
dependencies = [
2021-08-28 22:34:37 +00:00
"cfg-if",
]
[[package]]
name = "ipnet"
2021-06-28 08:27:46 +00:00
version = "2.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-28 08:27:46 +00:00
checksum = "68f2d64f2edebec4ce84ad108148e67e1064789bee435edc5b60ad398714a3a9"
[[package]]
name = "itertools"
version = "0.10.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "69ddb889f9d0d08a67338271fa9b62996bc788c7796a5c18cf057420aaed5eaf"
dependencies = [
"either",
]
2018-05-17 11:47:21 +00:00
[[package]]
name = "itoa"
2021-08-25 02:50:12 +00:00
version = "0.4.8"
2018-05-17 11:47:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-25 02:50:12 +00:00
checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4"
2018-05-17 11:47:21 +00:00
2020-03-11 14:18:15 +00:00
[[package]]
2021-08-28 22:34:37 +00:00
name = "jobserver"
version = "0.1.24"
2020-03-11 14:18:15 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-28 22:34:37 +00:00
checksum = "af25a77299a7f711a01975c35a6a424eb6862092cc2d6c72c4ed6cbc56dfc1fa"
2020-03-11 14:18:15 +00:00
dependencies = [
2021-08-28 22:34:37 +00:00
"libc",
2020-03-11 14:18:15 +00:00
]
2018-05-17 11:47:21 +00:00
[[package]]
2021-08-28 22:34:37 +00:00
name = "js-sys"
version = "0.3.53"
2018-05-17 11:47:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-28 22:34:37 +00:00
checksum = "e4bf49d50e2961077d9c99f4b7997d770a1114f087c3c2e0069b36c13fc2979d"
2018-05-17 11:47:21 +00:00
dependencies = [
2021-08-28 22:34:37 +00:00
"wasm-bindgen",
2018-05-17 11:47:21 +00:00
]
[[package]]
name = "language-tags"
2021-08-28 22:34:37 +00:00
version = "0.3.2"
2018-05-17 11:47:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-28 22:34:37 +00:00
checksum = "d4345964bb142484797b161f473a503a434de77149dd8c7427788c6e13379388"
2018-05-17 11:47:21 +00:00
[[package]]
name = "lasso"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e8647c8a01e5f7878eacb2c323c4c949fdb63773110f0686c7810769874b7e0a"
dependencies = [
2021-08-25 02:50:12 +00:00
"hashbrown",
]
2018-05-17 11:47:21 +00:00
[[package]]
name = "lazy_static"
2019-08-31 13:28:31 +00:00
version = "1.4.0"
2018-05-17 11:47:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-08-24 23:16:34 +00:00
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
2018-05-17 11:47:21 +00:00
[[package]]
name = "libc"
2021-08-28 22:34:37 +00:00
version = "0.2.101"
2018-05-17 11:47:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-28 22:34:37 +00:00
checksum = "3cb00336871be5ed2c8ed44b60ae9959dc5b9f08539422ed43f09e34ecaeba21"
2018-05-17 11:47:21 +00:00
2019-03-08 19:25:02 +00:00
[[package]]
name = "libflate"
2021-08-30 03:04:10 +00:00
version = "1.1.1"
2019-03-08 19:25:02 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-30 03:04:10 +00:00
checksum = "16364af76ebb39b5869bb32c81fa93573267cd8c62bb3474e28d78fac3fb141e"
2019-03-08 19:25:02 +00:00
dependencies = [
2020-08-24 23:16:34 +00:00
"adler32",
"crc32fast",
"libflate_lz77",
2019-03-08 19:25:02 +00:00
]
[[package]]
name = "libflate_lz77"
2021-04-18 02:52:30 +00:00
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-18 02:52:30 +00:00
checksum = "39a734c0493409afcd49deee13c006a04e3586b9761a03543c6272c9c51f2f5a"
dependencies = [
"rle-decode-fast",
]
2018-05-17 11:47:21 +00:00
[[package]]
2021-08-28 22:34:37 +00:00
name = "local-channel"
version = "0.1.2"
2018-05-17 11:47:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-28 22:34:37 +00:00
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"
checksum = "84f9a2d3e27ce99ce2c3aad0b09b1a7b916293ea9b2bf624c13fe646fadd8da4"
2018-05-17 11:47:21 +00:00
2018-06-22 14:31:25 +00:00
[[package]]
name = "lock_api"
2021-08-28 22:34:37 +00:00
version = "0.4.5"
2019-07-25 11:50:36 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-28 22:34:37 +00:00
checksum = "712a4d093c9976e24e7dbca41db895dabcbac38eb5f4045393d17a95bdfb1109"
2019-07-25 11:50:36 +00:00
dependencies = [
2020-08-24 23:16:34 +00:00
"scopeguard",
2019-07-25 11:50:36 +00:00
]
2018-05-17 11:47:21 +00:00
[[package]]
name = "log"
version = "0.4.14"
2018-05-17 11:47:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "51b9bbe6c47d51fc3e1a9b945965946b4c44142ab8792c50835a980d362c2710"
2018-05-17 11:47:21 +00:00
dependencies = [
2021-08-28 22:34:37 +00:00
"cfg-if",
2018-05-17 11:47:21 +00:00
]
[[package]]
name = "mac"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-08-24 23:16:34 +00:00
checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4"
[[package]]
name = "markup5ever"
2021-06-01 06:11:55 +00:00
version = "0.10.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-01 06:11:55 +00:00
checksum = "a24f40fb03852d1cdd84330cddcaf98e9ec08a7b7768e952fad3b4cf048ec8fd"
dependencies = [
2020-08-24 23:16:34 +00:00
"log",
"phf 0.8.0",
2020-08-24 23:16:34 +00:00
"phf_codegen",
"string_cache",
"string_cache_codegen",
"tendril",
]
[[package]]
name = "markup5ever_rcdom"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-08-24 23:16:34 +00:00
checksum = "f015da43bcd8d4f144559a3423f4591d69b8ce0652c905374da7205df336ae2b"
dependencies = [
2020-08-24 23:16:34 +00:00
"html5ever",
"markup5ever",
"tendril",
"xml5ever",
]
2018-05-17 11:47:21 +00:00
[[package]]
name = "matches"
2021-08-25 02:50:12 +00:00
version = "0.1.9"
2018-05-17 11:47:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-25 02:50:12 +00:00
checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f"
2018-05-17 11:47:21 +00:00
2019-02-23 10:06:19 +00:00
[[package]]
name = "maud"
version = "0.22.2"
2019-02-23 10:06:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "da0784808b0c06f80365c1071048df9b6414a83fc56b8d4b305859e39f5162fa"
2019-02-23 10:06:19 +00:00
dependencies = [
2020-08-24 23:16:34 +00:00
"maud_htmlescape",
"maud_macros",
2019-02-23 10:06:19 +00:00
]
[[package]]
name = "maud_htmlescape"
version = "0.17.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-08-24 23:16:34 +00:00
checksum = "d0fb85bccffc42302ad1e1ed8679f6a39d1317f775a37fbc3f79bdfbe054bfb7"
2019-02-23 10:06:19 +00:00
[[package]]
name = "maud_macros"
version = "0.22.2"
2019-02-23 10:06:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "73a00158abd4671407a3d8bd2c8577e9c7dc8d0b8a8e5523bdaba7d486655b1e"
2019-02-23 10:06:19 +00:00
dependencies = [
2020-08-24 23:16:34 +00:00
"maud_htmlescape",
2020-11-03 19:15:45 +00:00
"proc-macro-error",
"proc-macro2",
"quote",
2020-08-24 23:16:34 +00:00
"syn",
2019-02-23 10:06:19 +00:00
]
2018-05-17 11:47:21 +00:00
[[package]]
name = "memchr"
2021-08-25 02:50:12 +00:00
version = "2.4.1"
2018-05-17 11:47:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-25 02:50:12 +00:00
checksum = "308cc39be01b73d0d18f82a0e7b2a3df85245f84af96fdddc5d202d27e47b86a"
2018-05-17 11:47:21 +00:00
[[package]]
name = "mime"
2020-03-09 17:16:42 +00:00
version = "0.3.16"
2018-05-17 11:47:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-08-24 23:16:34 +00:00
checksum = "2a60c7ce501c71e03a9c9c0d35b861413ae925bd979cc7a4e30d060069aaac8d"
2018-05-17 11:47:21 +00:00
[[package]]
name = "mime_guess"
2020-03-09 17:16:42 +00:00
version = "2.0.3"
source = "git+https://github.com/svenstaro/mime_guess.git#ac76840e14bc6f2f7cbbb347052ec7e4de7e3043"
2018-05-17 11:47:21 +00:00
dependencies = [
2020-08-24 23:16:34 +00:00
"mime",
"unicase",
2018-05-17 11:47:21 +00:00
]
[[package]]
name = "miniserve"
version = "0.15.1-alpha.0"
2018-05-17 11:47:21 +00:00
dependencies = [
2020-08-24 23:16:34 +00:00
"actix-files",
"actix-multipart",
2020-11-03 19:15:45 +00:00
"actix-web",
2020-08-24 23:16:34 +00:00
"actix-web-httpauth",
"alphanumeric-sort",
2021-08-27 02:11:10 +00:00
"anyhow",
2020-08-24 23:16:34 +00:00
"assert_cmd",
"assert_fs",
"atty",
2021-08-28 22:34:37 +00:00
"bytes",
2020-08-24 23:16:34 +00:00
"bytesize",
"chrono",
"chrono-humanize",
2021-08-30 03:04:10 +00:00
"clap 3.0.0-beta.4",
"clap_generate",
2020-08-24 23:16:34 +00:00
"futures",
"grass",
2020-08-24 23:16:34 +00:00
"hex",
"http",
2021-02-21 08:55:17 +00:00
"httparse",
2020-08-24 23:16:34 +00:00
"libflate",
"log",
"maud",
2020-09-24 02:39:19 +00:00
"mime",
2020-08-24 23:16:34 +00:00
"nanoid",
"percent-encoding",
"port_check",
2021-08-27 02:11:10 +00:00
"predicates",
2020-08-24 23:16:34 +00:00
"pretty_assertions",
"qrcodegen",
"regex",
"reqwest",
"rstest",
2021-08-28 22:34:37 +00:00
"rustls",
2020-08-24 23:16:34 +00:00
"select",
"serde",
"sha2",
"simplelog",
"strum",
"strum_macros",
"tar",
2021-03-20 22:32:25 +00:00
"thiserror",
2020-08-24 23:16:34 +00:00
"url",
"yansi",
"zip",
2018-05-17 11:47:21 +00:00
]
2020-09-11 23:57:53 +00:00
[[package]]
name = "miniz_oxide"
2021-04-18 02:52:30 +00:00
version = "0.4.4"
2020-09-11 23:57:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-18 02:52:30 +00:00
checksum = "a92518e98c078586bc6c934028adcca4c92a53d6a958196de835170a01d84e4b"
2020-09-11 23:57:53 +00:00
dependencies = [
2021-04-18 02:52:30 +00:00
"adler",
"autocfg",
2020-09-11 23:57:53 +00:00
]
2021-01-06 09:32:21 +00:00
[[package]]
name = "mio"
2021-06-28 08:27:46 +00:00
version = "0.7.13"
2021-01-06 09:32:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-28 08:27:46 +00:00
checksum = "8c2bdb6314ec10835cd3293dd268473a835c02b7b352e788be788b3c6ca6bb16"
2021-01-06 09:32:21 +00:00
dependencies = [
"libc",
"log",
2021-08-28 22:34:37 +00:00
"miow",
2021-01-06 09:32:21 +00:00
"ntapi",
2021-08-28 22:34:37 +00:00
"winapi",
2018-05-17 11:47:21 +00:00
]
2021-01-06 09:32:21 +00:00
[[package]]
name = "miow"
2021-03-26 22:29:45 +00:00
version = "0.3.7"
2021-01-06 09:32:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-03-26 22:29:45 +00:00
checksum = "b9f1c5b025cda876f66ef43a113f91ebc9f4ccef34843000e0adf6ebbab84e21"
2021-01-06 09:32:21 +00:00
dependencies = [
2021-08-28 22:34:37 +00:00
"winapi",
2021-01-06 09:32:21 +00:00
]
[[package]]
name = "nanoid"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3ffa00dec017b5b1a8b7cf5e2c008bfda1aa7e0697ac1508b491fdf2622fb4d8"
dependencies = [
2021-06-28 08:27:46 +00:00
"rand 0.8.4",
]
[[package]]
name = "new_debug_unreachable"
2020-03-09 17:16:42 +00:00
version = "1.0.4"
2018-05-17 11:47:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-08-24 23:16:34 +00:00
checksum = "e4a24736216ec316047a1fc4252e27dabb04218aa4a3f37c6e7ddbf1f9782b54"
2018-05-17 11:47:21 +00:00
2021-08-27 02:11:10 +00:00
[[package]]
name = "normalize-line-endings"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "61807f77802ff30975e01f4f071c8ba10c022052f98b3294119f3e615d13e5be"
2021-01-06 09:32:21 +00:00
[[package]]
name = "ntapi"
version = "0.3.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f6bb902e437b6d86e03cce10a7e2af662292c5dfef23b65899ea3ac9354ad44"
dependencies = [
2021-08-28 22:34:37 +00:00
"winapi",
2021-01-06 09:32:21 +00:00
]
[[package]]
name = "num-bigint"
2021-08-28 22:34:37 +00:00
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-28 22:34:37 +00:00
checksum = "76e97c412795abf6c24ba30055a8f20642ea57ca12875220b854cfa501bf1e48"
dependencies = [
"autocfg",
"num-integer",
"num-traits",
]
2018-05-17 11:47:21 +00:00
[[package]]
name = "num-integer"
2020-11-03 19:15:45 +00:00
version = "0.1.44"
2018-05-17 11:47:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-03 19:15:45 +00:00
checksum = "d2cc698a63b549a70bc047073d2949cce27cd1c7b0a4a862d08a8031bc2801db"
2018-05-17 11:47:21 +00:00
dependencies = [
"autocfg",
2020-08-24 23:16:34 +00:00
"num-traits",
2018-05-17 11:47:21 +00:00
]
[[package]]
name = "num-rational"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d41702bd167c2df5520b384281bc111a4b5efcf7fbc4c9c222c815b07e0a6a6a"
dependencies = [
"autocfg",
"num-bigint",
"num-integer",
"num-traits",
]
2018-05-17 11:47:21 +00:00
[[package]]
name = "num-traits"
2020-11-03 19:15:45 +00:00
version = "0.2.14"
2018-05-17 11:47:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-03 19:15:45 +00:00
checksum = "9a64b1ec5cda2586e284722486d802acf1f7dbdc623e2bfc57e65ca1cd099290"
2019-06-14 01:35:41 +00:00
dependencies = [
"autocfg",
2019-06-14 01:35:41 +00:00
]
2018-05-17 11:47:21 +00:00
[[package]]
name = "num_cpus"
2020-05-14 23:49:05 +00:00
version = "1.13.0"
2018-05-17 11:47:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-08-24 23:16:34 +00:00
checksum = "05499f3756671c15885fee9034446956fff3f243d6077b91e5767df161f766b3"
2018-05-17 11:47:21 +00:00
dependencies = [
2020-08-24 23:16:34 +00:00
"hermit-abi",
"libc",
2018-05-17 11:47:21 +00:00
]
2020-05-14 23:49:05 +00:00
[[package]]
name = "once_cell"
2021-06-28 08:27:46 +00:00
version = "1.8.0"
2020-05-14 23:49:05 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-28 08:27:46 +00:00
checksum = "692fcb63b64b1758029e0a96ee63e049ce8c5948587f2f7208df04625e5f6b56"
2020-05-14 23:49:05 +00:00
2020-06-26 09:50:10 +00:00
[[package]]
name = "opaque-debug"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-08-24 23:16:34 +00:00
checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5"
2020-06-26 09:50:10 +00:00
2021-08-30 03:04:10 +00:00
[[package]]
name = "os_str_bytes"
version = "3.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6acbef58a60fe69ab50510a55bc8cdd4d6cf2283d27ad338f54cb52747a9cf2d"
[[package]]
name = "output_vt100"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-08-24 23:16:34 +00:00
checksum = "53cdc5b785b7a58c5aad8216b3dfa114df64b0b06ae6e1501cef91df2fbdf8f9"
dependencies = [
2021-08-28 22:34:37 +00:00
"winapi",
2019-07-25 11:50:36 +00:00
]
2020-06-26 09:51:25 +00:00
[[package]]
name = "parking_lot"
2021-08-28 22:34:37 +00:00
version = "0.11.2"
2019-07-25 11:50:36 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-28 22:34:37 +00:00
checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99"
2019-07-25 11:50:36 +00:00
dependencies = [
2020-08-24 23:16:34 +00:00
"instant",
"lock_api",
"parking_lot_core",
2019-07-25 11:50:36 +00:00
]
2020-06-26 09:51:25 +00:00
[[package]]
name = "parking_lot_core"
2021-08-28 22:34:37 +00:00
version = "0.8.5"
2020-06-26 09:51:25 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-28 22:34:37 +00:00
checksum = "d76e8e1493bcac0d2766c42737f34458f1c8c50c0d23bcb24ea953affb273216"
2020-06-26 09:51:25 +00:00
dependencies = [
2021-08-28 22:34:37 +00:00
"cfg-if",
2020-08-24 23:16:34 +00:00
"instant",
"libc",
2021-02-23 13:41:42 +00:00
"redox_syscall",
2020-08-24 23:16:34 +00:00
"smallvec",
2021-08-28 22:34:37 +00:00
"winapi",
2020-06-26 09:51:25 +00:00
]
2021-08-28 22:34:37 +00:00
[[package]]
name = "paste"
version = "1.0.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "acbf547ad0c65e31259204bd90935776d1c693cec2f4ff7abb7a1bbbd40dfe58"
2019-07-25 11:50:36 +00:00
[[package]]
name = "percent-encoding"
version = "2.1.0"
2019-07-25 11:50:36 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-08-24 23:16:34 +00:00
checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e"
2019-07-25 11:50:36 +00:00
2021-08-25 02:50:12 +00:00
[[package]]
name = "pest"
version = "2.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "10f4872ae94d7b90ae48754df22fd42ad52ce740b8f370b03da4835417403e53"
dependencies = [
"ucd-trie",
]
2018-05-17 11:47:21 +00:00
[[package]]
name = "phf"
version = "0.8.0"
2018-05-17 11:47:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-08-24 23:16:34 +00:00
checksum = "3dfb61232e34fcb633f43d12c58f83c1df82962dcdfa565a4e866ffc17dafe12"
dependencies = [
"phf_shared 0.8.0",
]
[[package]]
name = "phf"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b2ac8b67553a7ca9457ce0e526948cad581819238f4a9d1ea74545851fa24f37"
2018-05-17 11:47:21 +00:00
dependencies = [
"phf_macros",
"phf_shared 0.9.0",
"proc-macro-hack",
2018-05-17 11:47:21 +00:00
]
[[package]]
name = "phf_codegen"
version = "0.8.0"
2018-05-17 11:47:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-08-24 23:16:34 +00:00
checksum = "cbffee61585b0411840d3ece935cce9cb6321f01c45477d30066498cd5e1a815"
2018-05-17 11:47:21 +00:00
dependencies = [
"phf_generator 0.8.0",
"phf_shared 0.8.0",
2018-05-17 11:47:21 +00:00
]
[[package]]
name = "phf_generator"
version = "0.8.0"
2018-05-17 11:47:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-08-24 23:16:34 +00:00
checksum = "17367f0cc86f2d25802b2c26ee58a7b23faeccf78a396094c13dced0d0182526"
2018-05-17 11:47:21 +00:00
dependencies = [
"phf_shared 0.8.0",
2020-08-24 23:16:34 +00:00
"rand 0.7.3",
2018-05-17 11:47:21 +00:00
]
[[package]]
name = "phf_generator"
2021-08-25 02:50:12 +00:00
version = "0.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-25 02:50:12 +00:00
checksum = "d43f3220d96e0080cc9ea234978ccd80d904eafb17be31bb0f76daaea6493082"
dependencies = [
"phf_shared 0.9.0",
"rand 0.8.4",
]
[[package]]
name = "phf_macros"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b706f5936eb50ed880ae3009395b43ed19db5bff2ebd459c95e7bf013a89ab86"
dependencies = [
2021-08-25 02:50:12 +00:00
"phf_generator 0.9.1",
"phf_shared 0.9.0",
"proc-macro-hack",
"proc-macro2",
"quote",
"syn",
]
2018-05-17 11:47:21 +00:00
[[package]]
name = "phf_shared"
version = "0.8.0"
2018-05-17 11:47:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-08-24 23:16:34 +00:00
checksum = "c00cf8b9eafe68dde5e9eaa2cef8ee84a9336a47d566ec55ca16589633b65af7"
2018-05-17 11:47:21 +00:00
dependencies = [
2020-08-24 23:16:34 +00:00
"siphasher",
2018-05-17 11:47:21 +00:00
]
[[package]]
name = "phf_shared"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a68318426de33640f02be62b4ae8eb1261be2efbc337b60c54d845bf4484e0d9"
dependencies = [
"siphasher",
]
[[package]]
name = "pin-project"
2021-08-25 02:50:12 +00:00
version = "1.0.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-25 02:50:12 +00:00
checksum = "576bc800220cc65dac09e99e97b08b358cfab6e17078de8dc5fee223bd2d0c08"
dependencies = [
2021-08-28 22:34:37 +00:00
"pin-project-internal",
2020-03-11 14:18:15 +00:00
]
[[package]]
name = "pin-project-internal"
2021-08-25 02:50:12 +00:00
version = "1.0.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-25 02:50:12 +00:00
checksum = "6e8fe8163d14ce7f0cdac2e040116f22eac817edabff0be91e8aff7e9accf389"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "pin-project-lite"
2021-06-28 08:27:46 +00:00
version = "0.2.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-28 08:27:46 +00:00
checksum = "8d31d11c69a6b52a174b42bdc0c30e5e11670f90788b2c471c31c1d17d449443"
2020-03-11 14:18:15 +00:00
[[package]]
name = "pin-utils"
2020-05-14 23:49:05 +00:00
version = "0.1.0"
2020-03-11 14:18:15 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-08-24 23:16:34 +00:00
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
2020-03-11 14:18:15 +00:00
[[package]]
name = "pkg-config"
2020-11-03 19:15:45 +00:00
version = "0.3.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-03 19:15:45 +00:00
checksum = "3831453b3449ceb48b6d9c7ad7c96d5ea673e9b470a1dc578c2ce6521230884c"
2020-06-26 09:43:29 +00:00
[[package]]
2020-07-21 17:42:12 +00:00
name = "port_check"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-08-24 23:16:34 +00:00
checksum = "f6519412c9e0d4be579b9f0618364d19cb434b324fc6ddb1b27b1e682c7105ed"
2019-07-07 12:36:45 +00:00
[[package]]
name = "ppv-lite86"
2020-11-03 19:15:45 +00:00
version = "0.2.10"
2019-07-07 12:36:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-03 19:15:45 +00:00
checksum = "ac74c624d6b2d21f425f752262f42188365d7b8ff1aff74c82e45136510a4857"
2019-07-07 12:36:45 +00:00
[[package]]
name = "precomputed-hash"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-08-24 23:16:34 +00:00
checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c"
[[package]]
name = "predicates"
2021-08-25 02:50:12 +00:00
version = "2.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-25 02:50:12 +00:00
checksum = "c143348f141cc87aab5b950021bac6145d0e5ae754b0591de23244cee42c9308"
dependencies = [
"difflib",
2021-08-27 02:11:10 +00:00
"float-cmp",
"itertools",
2021-08-27 02:11:10 +00:00
"normalize-line-endings",
"predicates-core",
2021-08-27 02:11:10 +00:00
"regex",
]
[[package]]
name = "predicates-core"
2021-02-23 13:41:42 +00:00
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-23 13:41:42 +00:00
checksum = "57e35a3326b75e49aa85f5dc6ec15b41108cf5aee58eabb1f274dd18b73c2451"
[[package]]
name = "predicates-tree"
2021-08-25 02:50:12 +00:00
version = "1.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-25 02:50:12 +00:00
checksum = "d7dd0fd014130206c9352efbdc92be592751b2b9274dff685348341082c6ea3d"
dependencies = [
2020-08-24 23:16:34 +00:00
"predicates-core",
"treeline",
]
2019-04-24 01:38:22 +00:00
[[package]]
name = "pretty_assertions"
version = "0.7.2"
2019-04-24 01:38:22 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1cab0e7c02cf376875e9335e0ba1da535775beb5450d21e1dffca068818ed98b"
2019-04-24 01:38:22 +00:00
dependencies = [
"ansi_term 0.12.1",
2020-08-24 23:16:34 +00:00
"ctor",
"diff",
2020-08-24 23:16:34 +00:00
"output_vt100",
2019-04-24 01:38:22 +00:00
]
2019-09-03 23:27:36 +00:00
[[package]]
name = "proc-macro-error"
2020-08-24 20:23:12 +00:00
version = "1.0.4"
2019-09-03 23:27:36 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-08-24 23:16:34 +00:00
checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
2019-09-03 23:27:36 +00:00
dependencies = [
2020-08-24 23:16:34 +00:00
"proc-macro-error-attr",
"proc-macro2",
"quote",
"syn",
2021-08-28 22:34:37 +00:00
"version_check",
2019-09-03 23:27:36 +00:00
]
[[package]]
name = "proc-macro-error-attr"
2020-08-24 20:23:12 +00:00
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-08-24 23:16:34 +00:00
checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
dependencies = [
2020-08-24 23:16:34 +00:00
"proc-macro2",
"quote",
2021-08-28 22:34:37 +00:00
"version_check",
2020-03-09 17:16:42 +00:00
]
[[package]]
name = "proc-macro-hack"
2020-11-03 19:15:45 +00:00
version = "0.5.19"
2020-03-09 17:16:42 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-03 19:15:45 +00:00
checksum = "dbf0c48bc1d91375ae5c3cd81e3722dff1abcf81a30960240640d223f59fe0e5"
2020-06-26 09:51:25 +00:00
[[package]]
name = "proc-macro-nested"
2021-01-15 19:55:56 +00:00
version = "0.1.7"
2020-06-26 09:51:25 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-15 19:55:56 +00:00
checksum = "bc881b2c22681370c6a780e47af9840ef841837bc98118431d4e1868bd0c1086"
2020-06-26 09:51:25 +00:00
2018-05-17 11:47:21 +00:00
[[package]]
name = "proc-macro2"
2021-08-25 02:50:12 +00:00
version = "1.0.28"
2019-08-31 13:28:31 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-25 02:50:12 +00:00
checksum = "5c7ed8b8c7b886ea3ed7dde405212185f423ab44682667c8c6dd14aa1d9f6612"
2019-08-31 13:28:31 +00:00
dependencies = [
2020-08-24 23:16:34 +00:00
"unicode-xid",
2019-08-31 13:28:31 +00:00
]
[[package]]
name = "qrcodegen"
2021-08-25 02:50:12 +00:00
version = "1.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-25 02:50:12 +00:00
checksum = "135e6754eed8ca897dd70584d895e72e36860b3e163b6bcedce48571cbaef343"
2019-08-31 13:28:31 +00:00
[[package]]
name = "quote"
2021-02-23 13:41:42 +00:00
version = "1.0.9"
2019-08-31 13:28:31 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-23 13:41:42 +00:00
checksum = "c3d0b9745dc2debf507c8422de05d7226cc1f0644216dfdfead988f9b1ab32a7"
2019-08-31 13:28:31 +00:00
dependencies = [
2020-08-24 23:16:34 +00:00
"proc-macro2",
2018-07-26 06:05:08 +00:00
]
2019-07-07 12:36:45 +00:00
[[package]]
name = "rand"
2020-03-09 17:16:42 +00:00
version = "0.7.3"
2019-07-07 12:36:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-08-24 23:16:34 +00:00
checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03"
2019-07-07 12:36:45 +00:00
dependencies = [
2021-01-15 19:55:56 +00:00
"getrandom 0.1.16",
2020-08-24 23:16:34 +00:00
"libc",
"rand_chacha 0.2.2",
"rand_core 0.5.1",
"rand_hc 0.2.0",
"rand_pcg",
2019-07-07 12:36:45 +00:00
]
2021-01-15 19:55:56 +00:00
[[package]]
name = "rand"
2021-06-28 08:27:46 +00:00
version = "0.8.4"
2021-01-15 19:55:56 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-28 08:27:46 +00:00
checksum = "2e7573632e6454cf6b99d7aac4ccca54be06da05aca2ef7423d22d27d4d4bcd8"
2021-01-15 19:55:56 +00:00
dependencies = [
"libc",
2021-06-28 08:27:46 +00:00
"rand_chacha 0.3.1",
"rand_core 0.6.3",
"rand_hc 0.3.1",
2021-01-15 19:55:56 +00:00
]
2019-07-07 12:36:45 +00:00
[[package]]
name = "rand_chacha"
2020-03-11 14:18:15 +00:00
version = "0.2.2"
2019-07-07 12:36:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-08-24 23:16:34 +00:00
checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402"
2019-07-07 12:36:45 +00:00
dependencies = [
2020-08-24 23:16:34 +00:00
"ppv-lite86",
"rand_core 0.5.1",
2019-07-07 12:36:45 +00:00
]
2021-01-15 19:55:56 +00:00
[[package]]
name = "rand_chacha"
2021-06-28 08:27:46 +00:00
version = "0.3.1"
2021-01-15 19:55:56 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-28 08:27:46 +00:00
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
2021-01-15 19:55:56 +00:00
dependencies = [
"ppv-lite86",
2021-06-28 08:27:46 +00:00
"rand_core 0.6.3",
2021-01-15 19:55:56 +00:00
]
2019-07-07 12:36:45 +00:00
[[package]]
name = "rand_core"
2019-08-31 13:28:31 +00:00
version = "0.5.1"
2019-07-07 12:36:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-08-24 23:16:34 +00:00
checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19"
2019-07-07 12:36:45 +00:00
dependencies = [
2021-01-15 19:55:56 +00:00
"getrandom 0.1.16",
]
[[package]]
name = "rand_core"
2021-06-28 08:27:46 +00:00
version = "0.6.3"
2021-01-15 19:55:56 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-28 08:27:46 +00:00
checksum = "d34f1408f55294453790c48b2f1ebbb1c5b4b7563eb1f418bcfcfdbb06ebb4e7"
2021-01-15 19:55:56 +00:00
dependencies = [
2021-06-01 06:11:55 +00:00
"getrandom 0.2.3",
2019-07-07 12:36:45 +00:00
]
[[package]]
name = "rand_hc"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-08-24 23:16:34 +00:00
checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c"
2019-07-07 12:36:45 +00:00
dependencies = [
2020-08-24 23:16:34 +00:00
"rand_core 0.5.1",
2019-07-07 12:36:45 +00:00
]
2021-01-15 19:55:56 +00:00
[[package]]
name = "rand_hc"
2021-06-28 08:27:46 +00:00
version = "0.3.1"
2021-01-15 19:55:56 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-28 08:27:46 +00:00
checksum = "d51e9f596de227fda2ea6c84607f5558e196eeaf43c986b724ba4fb8fdf497e7"
2021-01-15 19:55:56 +00:00
dependencies = [
2021-06-28 08:27:46 +00:00
"rand_core 0.6.3",
2021-01-15 19:55:56 +00:00
]
[[package]]
name = "rand_pcg"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-08-24 23:16:34 +00:00
checksum = "16abd0c1b639e9eb4d7c50c0b8100b0d0f849be2349829c740fe8e6eb4816429"
dependencies = [
2020-08-24 23:16:34 +00:00
"rand_core 0.5.1",
]
2018-05-17 11:47:21 +00:00
[[package]]
name = "redox_syscall"
2021-08-25 02:50:12 +00:00
version = "0.2.10"
2021-01-15 19:55:56 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-25 02:50:12 +00:00
checksum = "8383f39639269cde97d255a32bdb68c047337295414940c68bdd30c2e13203ff"
2021-01-15 19:55:56 +00:00
dependencies = [
"bitflags",
]
[[package]]
name = "regex"
version = "1.5.4"
2018-05-17 11:47:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d07a8629359eb56f1e2fb1652bb04212c072a87ba68546a04065d525673ac461"
2018-05-17 11:47:21 +00:00
dependencies = [
2020-08-24 23:16:34 +00:00
"aho-corasick",
"memchr",
"regex-syntax",
2018-05-17 11:47:21 +00:00
]
[[package]]
name = "regex-automata"
2021-06-28 08:27:46 +00:00
version = "0.1.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-28 08:27:46 +00:00
checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
2018-05-17 11:47:21 +00:00
[[package]]
name = "regex-syntax"
version = "0.6.25"
2018-05-17 11:47:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b"
2018-05-17 11:47:21 +00:00
[[package]]
name = "remove_dir_all"
2020-06-26 09:43:29 +00:00
version = "0.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-08-24 23:16:34 +00:00
checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7"
dependencies = [
2021-08-28 22:34:37 +00:00
"winapi",
]
[[package]]
name = "reqwest"
2021-06-28 08:27:46 +00:00
version = "0.11.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-28 08:27:46 +00:00
checksum = "246e9f61b9bb77df069a947682be06e31ac43ea37862e244a69f177694ea6d22"
2020-08-24 23:16:34 +00:00
dependencies = [
2021-08-28 22:34:37 +00:00
"base64",
"bytes",
2020-08-24 23:16:34 +00:00
"encoding_rs",
"futures-core",
"futures-util",
"http",
"http-body",
"hyper",
"hyper-rustls",
"ipnet",
"js-sys",
"lazy_static",
"log",
"mime",
"mime_guess",
"percent-encoding",
2021-08-28 22:34:37 +00:00
"pin-project-lite",
"rustls",
2020-08-24 23:16:34 +00:00
"serde",
"serde_urlencoded",
2021-08-28 22:34:37 +00:00
"tokio",
"tokio-rustls",
2020-08-24 23:16:34 +00:00
"url",
"wasm-bindgen",
"wasm-bindgen-futures",
"web-sys",
2021-08-28 22:34:37 +00:00
"webpki-roots",
"winreg",
2018-05-17 11:47:21 +00:00
]
2020-07-21 23:15:57 +00:00
[[package]]
name = "ring"
2021-02-23 13:41:42 +00:00
version = "0.16.20"
2020-07-21 23:15:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-23 13:41:42 +00:00
checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc"
2020-07-21 23:15:57 +00:00
dependencies = [
2020-08-24 23:16:34 +00:00
"cc",
"libc",
"once_cell",
"spin",
"untrusted",
"web-sys",
2021-08-28 22:34:37 +00:00
"winapi",
2020-07-21 23:15:57 +00:00
]
[[package]]
name = "rle-decode-fast"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-08-24 23:16:34 +00:00
checksum = "cabe4fa914dec5870285fa7f71f602645da47c486e68486d2b4ceb4a343e90ac"
2019-04-24 01:38:22 +00:00
[[package]]
name = "rstest"
version = "0.11.0"
2019-06-28 21:16:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2288c66aeafe3b2ed227c981f364f9968fa952ef0b30e84ada4486e7ee24d00a"
2019-04-24 01:38:22 +00:00
dependencies = [
2021-08-28 22:34:37 +00:00
"cfg-if",
2020-08-24 23:16:34 +00:00
"proc-macro2",
"quote",
"rustc_version 0.4.0",
2020-08-24 23:16:34 +00:00
"syn",
2019-08-31 13:28:31 +00:00
]
2018-10-30 19:38:42 +00:00
[[package]]
name = "rustc_version"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-08-24 23:16:34 +00:00
checksum = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a"
2018-10-30 19:38:42 +00:00
dependencies = [
"semver 0.9.0",
]
2021-08-25 02:50:12 +00:00
[[package]]
name = "rustc_version"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f0dfe2087c51c460008730de8b57e6a320782fbfb312e1f4d520e6c6fae155ee"
dependencies = [
"semver 0.11.0",
]
[[package]]
name = "rustc_version"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
dependencies = [
"semver 1.0.4",
2018-10-30 19:38:42 +00:00
]
2020-07-21 23:15:57 +00:00
[[package]]
name = "rustls"
2021-04-18 02:52:30 +00:00
version = "0.19.1"
2020-07-21 23:15:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-18 02:52:30 +00:00
checksum = "35edb675feee39aec9c99fa5ff985081995a06d594114ae14cbe797ad7b7a6d7"
2020-07-21 23:15:57 +00:00
dependencies = [
2021-08-28 22:34:37 +00:00
"base64",
2020-08-24 23:16:34 +00:00
"log",
"ring",
"sct",
"webpki",
2020-07-21 23:15:57 +00:00
]
2018-10-30 19:38:42 +00:00
[[package]]
name = "ryu"
2020-06-26 09:43:29 +00:00
version = "1.0.5"
2018-05-17 11:47:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-08-24 23:16:34 +00:00
checksum = "71d301d4193d031abdd79ff7e3dd721168a9572ef3fe51a1517aba235bd8f86e"
2018-05-17 11:47:21 +00:00
[[package]]
name = "same-file"
2020-03-09 17:16:42 +00:00
version = "1.0.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-08-24 23:16:34 +00:00
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
dependencies = [
2020-08-24 23:16:34 +00:00
"winapi-util",
]
[[package]]
name = "scopeguard"
2020-03-09 17:16:42 +00:00
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-08-24 23:16:34 +00:00
checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
[[package]]
2020-07-21 23:15:57 +00:00
name = "sct"
2021-04-18 02:52:30 +00:00
version = "0.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-18 02:52:30 +00:00
checksum = "b362b83898e0e69f38515b82ee15aa80636befe47c3b6d3d89a911e78fc228ce"
dependencies = [
2020-08-24 23:16:34 +00:00
"ring",
"untrusted",
]
[[package]]
name = "select"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-08-24 23:16:34 +00:00
checksum = "8ee061f90afcc8678bef7a78d0d121683f0ba753f740ff7005f833ec445876b7"
dependencies = [
2020-08-24 23:16:34 +00:00
"bit-set",
"html5ever",
"markup5ever_rcdom",
]
2018-10-30 19:38:42 +00:00
[[package]]
name = "semver"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-08-24 23:16:34 +00:00
checksum = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403"
2018-10-30 19:38:42 +00:00
dependencies = [
2021-08-25 02:50:12 +00:00
"semver-parser 0.7.0",
]
[[package]]
name = "semver"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f301af10236f6df4160f7c3f04eec6dbc70ace82d23326abad5edee88801c6b6"
dependencies = [
"semver-parser 0.10.2",
]
[[package]]
name = "semver"
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "568a8e6258aa33c13358f81fd834adb854c6f7c9468520910a9b1e8fac068012"
2018-10-30 19:38:42 +00:00
[[package]]
name = "semver-parser"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-08-24 23:16:34 +00:00
checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3"
2018-10-30 19:38:42 +00:00
2021-08-25 02:50:12 +00:00
[[package]]
name = "semver-parser"
version = "0.10.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "00b0bef5b7f9e0df16536d3961cfb6e84331c065b4066afb39768d0e319411f7"
dependencies = [
"pest",
]
2018-05-17 11:47:21 +00:00
[[package]]
name = "serde"
2021-08-28 22:34:37 +00:00
version = "1.0.130"
2018-05-17 11:47:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-28 22:34:37 +00:00
checksum = "f12d06de37cf59146fbdecab66aa99f9fe4f78722e3607577a5375d66bd0c913"
2019-03-04 23:02:36 +00:00
dependencies = [
2020-08-24 23:16:34 +00:00
"serde_derive",
2019-03-04 23:02:36 +00:00
]
[[package]]
name = "serde_derive"
2021-08-28 22:34:37 +00:00
version = "1.0.130"
2019-03-04 23:02:36 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-28 22:34:37 +00:00
checksum = "d7bc1a1ab1961464eae040d96713baa5a724a8152c1222492465b54322ec508b"
2019-03-04 23:02:36 +00:00
dependencies = [
2020-08-24 23:16:34 +00:00
"proc-macro2",
"quote",
"syn",
2019-03-04 23:02:36 +00:00
]
2018-05-17 11:47:21 +00:00
[[package]]
name = "serde_json"
2021-08-28 22:34:37 +00:00
version = "1.0.67"
2018-10-30 19:38:42 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-28 22:34:37 +00:00
checksum = "a7f9e390c27c3c0ce8bc5d725f6e4d30a29d26659494aa4b17535f7522c5c950"
2018-10-30 19:38:42 +00:00
dependencies = [
2020-08-24 23:16:34 +00:00
"itoa",
"ryu",
"serde",
2018-10-30 19:38:42 +00:00
]
[[package]]
name = "serde_urlencoded"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "edfa57a7f8d9c1d260a549e7224100f6c43d43f9103e06dd8b4095a9b2b43ce9"
dependencies = [
"form_urlencoded",
"itoa",
"ryu",
"serde",
]
2020-09-11 23:57:53 +00:00
[[package]]
name = "sha-1"
2021-08-28 22:34:37 +00:00
version = "0.9.8"
2020-09-11 23:57:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-28 22:34:37 +00:00
checksum = "99cd6713db3cf16b6c84e06321e049a9b9f699826e16096d23bbcc44d15d51a6"
2020-09-11 23:57:53 +00:00
dependencies = [
"block-buffer",
2021-08-28 22:34:37 +00:00
"cfg-if",
2021-06-01 06:11:55 +00:00
"cpufeatures",
2020-09-11 23:57:53 +00:00
"digest",
"opaque-debug",
]
2018-05-17 11:47:21 +00:00
[[package]]
name = "sha1"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-08-24 23:16:34 +00:00
checksum = "2579985fda508104f7587689507983eadd6a6e84dd35d6d115361f530916fa0d"
2018-05-17 11:47:21 +00:00
2020-06-26 09:50:10 +00:00
[[package]]
name = "sha2"
2021-08-28 22:34:37 +00:00
version = "0.9.6"
2020-06-26 09:50:10 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-28 22:34:37 +00:00
checksum = "9204c41a1597a8c5af23c82d1c921cb01ec0a4c59e07a9c7306062829a3903f3"
2020-06-26 09:50:10 +00:00
dependencies = [
2020-08-24 23:16:34 +00:00
"block-buffer",
2021-08-28 22:34:37 +00:00
"cfg-if",
"cpufeatures",
2020-08-24 23:16:34 +00:00
"digest",
"opaque-debug",
2020-06-26 09:50:10 +00:00
]
2019-05-01 07:15:11 +00:00
[[package]]
name = "signal-hook-registry"
2021-06-28 08:27:46 +00:00
version = "1.4.0"
2018-10-30 19:38:42 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-28 08:27:46 +00:00
checksum = "e51e73328dc4ac0c7ccbda3a494dfa03df1de2f46018127f60c693f2648455b0"
2018-10-30 19:38:42 +00:00
dependencies = [
2020-08-24 23:16:34 +00:00
"libc",
2018-10-30 19:38:42 +00:00
]
2018-05-17 11:47:21 +00:00
[[package]]
name = "simplelog"
2021-03-28 20:46:32 +00:00
version = "0.10.0"
2018-05-17 11:47:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-03-28 20:46:32 +00:00
checksum = "59d0fe306a0ced1c88a58042dc22fc2ddd000982c26d75f6aa09a394547c41e0"
2018-05-17 11:47:21 +00:00
dependencies = [
2020-08-24 23:16:34 +00:00
"chrono",
"log",
"termcolor",
2018-05-17 11:47:21 +00:00
]
[[package]]
name = "siphasher"
2021-08-25 02:50:12 +00:00
version = "0.3.6"
2018-05-17 11:47:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-25 02:50:12 +00:00
checksum = "729a25c17d72b06c68cb47955d44fda88ad2d3e7d77e025663fdd69b93dd71a1"
2018-05-17 11:47:21 +00:00
[[package]]
name = "slab"
2021-08-25 02:50:12 +00:00
version = "0.4.4"
2018-05-17 11:47:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-25 02:50:12 +00:00
checksum = "c307a32c1c5c437f38c7fd45d753050587732ba8628319fbdf12a7e289ccc590"
2018-05-17 11:47:21 +00:00
[[package]]
name = "smallvec"
2021-01-15 19:55:56 +00:00
version = "1.6.1"
2020-06-26 09:51:25 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-15 19:55:56 +00:00
checksum = "fe0f37c9e8f3c5a4a66ad655a93c74daac4ad00c441533bf5c6e7990bb42604e"
2020-06-26 09:51:25 +00:00
2021-03-26 22:29:45 +00:00
[[package]]
name = "socket2"
2021-08-25 02:50:12 +00:00
version = "0.4.1"
2021-03-26 22:29:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-25 02:50:12 +00:00
checksum = "765f090f0e423d2b55843402a07915add955e7d60657db13707a159727326cad"
2021-03-26 22:29:45 +00:00
dependencies = [
"libc",
2021-08-28 22:34:37 +00:00
"winapi",
2021-03-26 22:29:45 +00:00
]
2020-07-21 23:15:57 +00:00
[[package]]
name = "spin"
version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-08-24 23:16:34 +00:00
checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"
2020-07-21 23:15:57 +00:00
2020-09-11 23:57:53 +00:00
[[package]]
name = "standback"
version = "0.2.17"
2020-09-11 23:57:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e113fb6f3de07a243d434a56ec6f186dfd51cb08448239fe7bcae73f87ff28ff"
2020-09-11 23:57:53 +00:00
dependencies = [
2021-08-28 22:34:37 +00:00
"version_check",
2020-09-11 23:57:53 +00:00
]
[[package]]
name = "stdweb"
version = "0.4.20"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d022496b16281348b52d0e30ae99e01a73d737b2f45d38fed4edf79f9325a1d5"
dependencies = [
"discard",
"rustc_version 0.2.3",
2020-09-11 23:57:53 +00:00
"stdweb-derive",
"stdweb-internal-macros",
"stdweb-internal-runtime",
"wasm-bindgen",
]
[[package]]
name = "stdweb-derive"
version = "0.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c87a60a40fccc84bef0652345bbbbbe20a605bf5d0ce81719fc476f5c03b50ef"
dependencies = [
"proc-macro2",
"quote",
"serde",
"serde_derive",
"syn",
]
[[package]]
name = "stdweb-internal-macros"
version = "0.2.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "58fa5ff6ad0d98d1ffa8cb115892b6e69d67799f6763e162a1c9db421dc22e11"
dependencies = [
"base-x",
"proc-macro2",
"quote",
"serde",
"serde_derive",
"serde_json",
"sha1",
"syn",
]
[[package]]
name = "stdweb-internal-runtime"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "213701ba3370744dcd1a12960caa4843b3d68b4d1c0a5d575e0d65b2ee9d16c0"
[[package]]
name = "string_cache"
2020-12-07 09:02:45 +00:00
version = "0.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-07 09:02:45 +00:00
checksum = "8ddb1139b5353f96e429e1a5e19fbaf663bddedaa06d1dbd49f82e352601209a"
dependencies = [
2020-08-24 23:16:34 +00:00
"lazy_static",
"new_debug_unreachable",
"phf_shared 0.8.0",
2020-08-24 23:16:34 +00:00
"precomputed-hash",
"serde",
]
[[package]]
name = "string_cache_codegen"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-08-24 23:16:34 +00:00
checksum = "f24c8e5e19d22a726626f1a5e16fe15b132dcf21d10177fa5a45ce7962996b97"
dependencies = [
"phf_generator 0.8.0",
"phf_shared 0.8.0",
2020-08-24 23:16:34 +00:00
"proc-macro2",
"quote",
]
2018-05-17 11:47:21 +00:00
[[package]]
name = "strsim"
2019-04-07 13:57:06 +00:00
version = "0.8.0"
2018-05-17 11:47:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-08-24 23:16:34 +00:00
checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
2018-05-17 11:47:21 +00:00
2019-02-14 21:24:07 +00:00
[[package]]
2021-08-30 03:04:10 +00:00
name = "strsim"
version = "0.10.0"
2019-02-14 21:24:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-30 03:04:10 +00:00
checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
2019-02-14 21:24:07 +00:00
[[package]]
name = "strum"
2021-06-01 06:14:24 +00:00
version = "0.21.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-01 06:14:24 +00:00
checksum = "aaf86bbcfd1fa9670b7a129f64fc0c9fcbbfe4f1bc4210e9e98fe71ffc12cde2"
[[package]]
name = "strum_macros"
version = "0.21.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d06aaeeee809dbc59eb4556183dd927df67db1540de5be8d3ec0b6636358a5ec"
dependencies = [
2020-08-24 23:16:34 +00:00
"heck",
"proc-macro2",
"quote",
"syn",
]
2018-05-17 11:47:21 +00:00
[[package]]
name = "syn"
2021-08-25 02:50:12 +00:00
version = "1.0.75"
2019-04-24 01:38:22 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-25 02:50:12 +00:00
checksum = "b7f58f7e8eaa0009c5fec437aabf511bd9933e4b2d7407bd05273c01a8906ea7"
2019-04-24 01:38:22 +00:00
dependencies = [
2020-08-24 23:16:34 +00:00
"proc-macro2",
"quote",
"unicode-xid",
2019-08-31 13:28:31 +00:00
]
2019-03-08 18:59:59 +00:00
[[package]]
name = "tar"
version = "0.4.37"
2019-03-08 18:59:59 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d6f5515d3add52e0bbdcad7b83c388bb36ba7b754dda3b5f5bc2d38640cdba5c"
2019-03-08 18:59:59 +00:00
dependencies = [
2020-08-24 23:16:34 +00:00
"filetime",
"libc",
"xattr",
2019-03-08 18:59:59 +00:00
]
[[package]]
name = "tempfile"
2021-01-15 19:55:56 +00:00
version = "3.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-15 19:55:56 +00:00
checksum = "dac1c663cfc93810f88aed9b8941d48cabf856a1b111c29a40439018d870eb22"
dependencies = [
2021-08-28 22:34:37 +00:00
"cfg-if",
2020-08-24 23:16:34 +00:00
"libc",
2021-06-28 08:27:46 +00:00
"rand 0.8.4",
2021-02-23 13:41:42 +00:00
"redox_syscall",
2020-08-24 23:16:34 +00:00
"remove_dir_all",
2021-08-28 22:34:37 +00:00
"winapi",
]
[[package]]
name = "tendril"
2021-01-15 19:55:56 +00:00
version = "0.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-15 19:55:56 +00:00
checksum = "a9ef557cb397a4f0a5a3a628f06515f78563f2209e64d47055d9dc6052bf5e33"
dependencies = [
2020-08-24 23:16:34 +00:00
"futf",
"mac",
"utf-8",
]
2018-05-17 11:47:21 +00:00
[[package]]
name = "termcolor"
2020-12-07 09:02:45 +00:00
version = "1.1.2"
2018-05-17 11:47:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-07 09:02:45 +00:00
checksum = "2dfed899f0eb03f32ee8c6a0aabdb8a7949659e3466561fc0adf54e26d88c5f4"
2018-05-17 11:47:21 +00:00
dependencies = [
2020-08-24 23:16:34 +00:00
"winapi-util",
2018-05-17 11:47:21 +00:00
]
2021-08-30 03:04:10 +00:00
[[package]]
name = "terminal_size"
version = "0.1.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "633c1a546cee861a1a6d0dc69ebeca693bf4296661ba7852b9d21d159e0506df"
dependencies = [
"libc",
"winapi",
]
2018-05-17 11:47:21 +00:00
[[package]]
name = "textwrap"
2019-04-07 13:57:06 +00:00
version = "0.11.0"
2018-05-17 11:47:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-08-24 23:16:34 +00:00
checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
2018-05-17 11:47:21 +00:00
dependencies = [
2020-08-24 23:16:34 +00:00
"unicode-width",
2018-05-17 11:47:21 +00:00
]
2021-08-30 03:04:10 +00:00
[[package]]
name = "textwrap"
version = "0.14.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0066c8d12af8b5acd21e00547c3797fde4e8677254a7ee429176ccebbe93dd80"
dependencies = [
"terminal_size",
"unicode-width",
]
2020-09-11 23:57:53 +00:00
[[package]]
name = "thiserror"
2021-08-30 03:04:10 +00:00
version = "1.0.28"
2020-09-11 23:57:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-30 03:04:10 +00:00
checksum = "283d5230e63df9608ac7d9691adc1dfb6e701225436eb64d0b9a7f0a5a04f6ec"
2020-09-11 23:57:53 +00:00
dependencies = [
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
2021-08-30 03:04:10 +00:00
version = "1.0.28"
2020-09-11 23:57:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-30 03:04:10 +00:00
checksum = "fa3884228611f5cd3608e2d409bf7dce832e4eb3135e3f11addbd7e41bd68e71"
2020-09-11 23:57:53 +00:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
2018-05-17 11:47:21 +00:00
[[package]]
name = "thread_local"
2021-02-23 13:41:42 +00:00
version = "1.1.3"
2018-05-17 11:47:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-23 13:41:42 +00:00
checksum = "8018d24e04c95ac8790716a5987d0fec4f8b27249ffa0f7d33f1369bdfb88cbd"
2018-05-17 11:47:21 +00:00
dependencies = [
2021-02-23 13:41:42 +00:00
"once_cell",
2018-05-17 11:47:21 +00:00
]
[[package]]
name = "time"
version = "0.1.43"
2018-05-17 11:47:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ca8a50ef2360fbd1eeb0ecd46795a87a19024eb4b53c5dc916ca1fd95fe62438"
2018-05-17 11:47:21 +00:00
dependencies = [
2020-08-24 23:16:34 +00:00
"libc",
2021-08-28 22:34:37 +00:00
"winapi",
2018-05-17 11:47:21 +00:00
]
2020-09-11 23:57:53 +00:00
[[package]]
name = "time"
2021-06-28 08:27:46 +00:00
version = "0.2.27"
2020-09-11 23:57:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-28 08:27:46 +00:00
checksum = "4752a97f8eebd6854ff91f1c1824cd6160626ac4bd44287f7f4ea2035a02a242"
2020-09-11 23:57:53 +00:00
dependencies = [
"const_fn",
"libc",
"standback",
"stdweb",
"time-macros",
2021-08-28 22:34:37 +00:00
"version_check",
"winapi",
2020-09-11 23:57:53 +00:00
]
[[package]]
name = "time-macros"
2020-11-03 19:15:45 +00:00
version = "0.1.1"
2020-09-11 23:57:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-03 19:15:45 +00:00
checksum = "957e9c6e26f12cb6d0dd7fc776bb67a706312e7299aed74c8dd5b17ebb27e2f1"
2020-09-11 23:57:53 +00:00
dependencies = [
"proc-macro-hack",
"time-macros-impl",
]
[[package]]
name = "time-macros-impl"
2021-06-28 08:27:46 +00:00
version = "0.1.2"
2020-09-11 23:57:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-28 08:27:46 +00:00
checksum = "fd3c141a1b43194f3f56a1411225df8646c55781d5f26db825b3d98507eb482f"
2020-09-11 23:57:53 +00:00
dependencies = [
"proc-macro-hack",
"proc-macro2",
"quote",
"standback",
"syn",
]
2020-06-26 09:43:29 +00:00
[[package]]
name = "tinyvec"
2021-08-25 02:50:12 +00:00
version = "1.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-25 02:50:12 +00:00
checksum = "848a1e1181b9f6753b5e96a092749e29b11d19ede67dfbbd6c7dc7e0f49b5338"
dependencies = [
"tinyvec_macros",
]
[[package]]
name = "tinyvec_macros"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
2021-01-06 09:32:21 +00:00
[[package]]
name = "tokio"
2021-08-25 02:54:56 +00:00
version = "1.10.1"
2021-01-06 09:32:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-25 02:54:56 +00:00
checksum = "92036be488bb6594459f2e03b60e42df6f937fe6ca5c5ffdcb539c6b84dc40f5"
2021-01-06 09:32:21 +00:00
dependencies = [
"autocfg",
2021-08-28 22:34:37 +00:00
"bytes",
2021-01-06 09:32:21 +00:00
"libc",
"memchr",
2021-08-28 22:34:37 +00:00
"mio",
2021-01-06 09:32:21 +00:00
"num_cpus",
2021-08-28 22:34:37 +00:00
"once_cell",
"parking_lot",
"pin-project-lite",
"signal-hook-registry",
"winapi",
2021-08-27 02:11:10 +00:00
]
2020-03-11 14:18:15 +00:00
[[package]]
2020-07-21 23:15:57 +00:00
name = "tokio-rustls"
2021-01-06 09:32:21 +00:00
version = "0.22.0"
2020-03-11 14:18:15 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-06 09:32:21 +00:00
checksum = "bc6844de72e57df1980054b38be3a9f4702aba4858be64dd700181a8a6d0e1b6"
2020-03-11 14:18:15 +00:00
dependencies = [
2021-08-28 22:34:37 +00:00
"rustls",
"tokio",
2020-08-24 23:16:34 +00:00
"webpki",
2020-03-11 14:18:15 +00:00
]
2021-01-06 09:32:21 +00:00
[[package]]
name = "tokio-util"
2021-06-01 06:11:55 +00:00
version = "0.6.7"
2021-01-06 09:32:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-01 06:11:55 +00:00
checksum = "1caa0b0c8d94a049db56b5acf8cba99dc0623aab1b26d5b5f5e2d945846b3592"
2021-01-06 09:32:21 +00:00
dependencies = [
2021-08-28 22:34:37 +00:00
"bytes",
2021-01-06 09:32:21 +00:00
"futures-core",
"futures-sink",
"log",
2021-08-28 22:34:37 +00:00
"pin-project-lite",
"tokio",
2020-03-11 14:18:15 +00:00
]
[[package]]
name = "tower-service"
2021-02-23 13:41:42 +00:00
version = "0.3.1"
2020-03-11 14:18:15 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-23 13:41:42 +00:00
checksum = "360dfd1d6d30e05fda32ace2c8c70e9c0a9da713275777f5a4dbb8a1893930c6"
2020-03-11 14:18:15 +00:00
[[package]]
2020-07-21 17:42:12 +00:00
name = "tracing"
2021-06-01 06:11:55 +00:00
version = "0.1.26"
2018-10-30 19:38:42 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-01 06:11:55 +00:00
checksum = "09adeb8c97449311ccd28a427f96fb563e7fd31aabf994189879d9da2394b89d"
2018-10-30 19:38:42 +00:00
dependencies = [
2021-08-28 22:34:37 +00:00
"cfg-if",
"pin-project-lite",
2020-08-24 23:16:34 +00:00
"tracing-core",
2018-10-30 19:38:42 +00:00
]
[[package]]
2020-07-21 17:42:12 +00:00
name = "tracing-core"
2021-08-25 02:50:12 +00:00
version = "0.1.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-25 02:50:12 +00:00
checksum = "2ca517f43f0fb96e0c3072ed5c275fe5eece87e8cb52f4a77b69226d3b1c9df8"
dependencies = [
2020-08-24 23:16:34 +00:00
"lazy_static",
]
[[package]]
2020-11-03 19:15:45 +00:00
name = "treeline"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-03 19:15:45 +00:00
checksum = "a7f741b240f1a48843f9b8e0444fb55fb2a4ff67293b50a9179dfd5ea67f8d41"
[[package]]
name = "try-lock"
2020-07-21 17:42:12 +00:00
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-08-24 23:16:34 +00:00
checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642"
2020-07-21 17:42:12 +00:00
[[package]]
name = "twoway"
2021-06-01 06:11:55 +00:00
version = "0.2.2"
2020-07-21 17:42:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-01 06:11:55 +00:00
checksum = "c57ffb460d7c24cd6eda43694110189030a3d1dfe418416d9468fd1c1d290b47"
2020-07-21 17:42:12 +00:00
dependencies = [
2020-08-24 23:16:34 +00:00
"memchr",
"unchecked-index",
2020-07-21 17:42:12 +00:00
]
[[package]]
name = "typenum"
2021-03-20 22:08:30 +00:00
version = "1.13.0"
2018-05-17 11:47:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-03-20 22:08:30 +00:00
checksum = "879f6906492a7cd215bfa4cf595b600146ccfac0c79bcbd1f3000162af5e8b06"
2018-05-17 11:47:21 +00:00
2021-08-25 02:50:12 +00:00
[[package]]
name = "ucd-trie"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "56dee185309b50d1f11bfedef0fe6d036842e3fb77413abef29f8f8d1c5d4c1c"
2020-07-21 17:42:12 +00:00
[[package]]
name = "unchecked-index"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-08-24 23:16:34 +00:00
checksum = "eeba86d422ce181a719445e51872fa30f1f7413b62becb52e95ec91aa262d85c"
2020-07-21 17:42:12 +00:00
2018-05-17 11:47:21 +00:00
[[package]]
name = "unicase"
2020-03-09 17:16:42 +00:00
version = "2.6.0"
2018-05-17 11:47:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-08-24 23:16:34 +00:00
checksum = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6"
2018-05-17 11:47:21 +00:00
dependencies = [
2021-08-28 22:34:37 +00:00
"version_check",
2018-05-17 11:47:21 +00:00
]
[[package]]
name = "unicode-bidi"
2021-08-25 02:50:12 +00:00
version = "0.3.6"
2018-05-17 11:47:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-25 02:50:12 +00:00
checksum = "246f4c42e67e7a4e3c6106ff716a5d067d4132a642840b242e357e468a2a0085"
2018-05-17 11:47:21 +00:00
[[package]]
name = "unicode-normalization"
2021-06-28 08:27:46 +00:00
version = "0.1.19"
2018-05-17 11:47:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-28 08:27:46 +00:00
checksum = "d54590932941a9e9266f0832deed84ebe1bf2e4c9e4a3554d393d18f5e854bf9"
2019-02-11 13:53:36 +00:00
dependencies = [
2020-12-07 09:02:45 +00:00
"tinyvec",
2019-02-11 13:53:36 +00:00
]
2018-05-17 11:47:21 +00:00
2019-02-14 21:24:07 +00:00
[[package]]
name = "unicode-segmentation"
2021-08-25 02:50:12 +00:00
version = "1.8.0"
2019-02-14 21:24:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-25 02:50:12 +00:00
checksum = "8895849a949e7845e06bd6dc1aa51731a103c42707010a5b591c0038fb73385b"
2019-02-14 21:24:07 +00:00
2018-05-17 11:47:21 +00:00
[[package]]
name = "unicode-width"
2020-07-21 17:42:12 +00:00
version = "0.1.8"
2018-05-17 11:47:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-08-24 23:16:34 +00:00
checksum = "9337591893a19b88d8d87f2cec1e73fad5cdfd10e5a6f349f498ad6ea2ffb1e3"
2018-05-17 11:47:21 +00:00
2019-08-31 13:28:31 +00:00
[[package]]
name = "unicode-xid"
2021-06-01 06:11:55 +00:00
version = "0.2.2"
2019-08-31 13:28:31 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-01 06:11:55 +00:00
checksum = "8ccb82d61f80a663efe1f787a51b16b5a51e3314d6ac365b08639f52387b33f3"
2019-08-31 13:28:31 +00:00
2020-07-21 23:15:57 +00:00
[[package]]
name = "untrusted"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-08-24 23:16:34 +00:00
checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
2020-07-21 23:15:57 +00:00
2019-07-25 12:22:31 +00:00
[[package]]
name = "url"
version = "2.2.2"
2019-07-25 12:22:31 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a507c383b2d33b5fc35d1861e77e6b383d158b2da5e14fe51b83dfedf6fd578c"
2019-07-25 12:22:31 +00:00
dependencies = [
2020-11-08 23:16:04 +00:00
"form_urlencoded",
2020-08-24 23:16:34 +00:00
"idna",
"matches",
"percent-encoding",
2019-07-25 12:22:31 +00:00
]
[[package]]
name = "utf-8"
2021-04-18 02:52:30 +00:00
version = "0.7.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-18 02:52:30 +00:00
checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
2018-05-17 11:47:21 +00:00
[[package]]
name = "vec_map"
2020-05-14 23:49:05 +00:00
version = "0.8.2"
2018-05-17 11:47:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-08-24 23:16:34 +00:00
checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191"
2018-05-17 11:47:21 +00:00
2020-03-09 17:16:42 +00:00
[[package]]
name = "version_check"
2021-03-20 22:08:30 +00:00
version = "0.9.3"
2020-03-09 17:16:42 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-03-20 22:08:30 +00:00
checksum = "5fecdca9a5291cc2b8dcf7dc02453fee791a280f3743cb0905f8822ae463b3fe"
2020-03-09 17:16:42 +00:00
[[package]]
name = "wait-timeout"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-08-24 23:16:34 +00:00
checksum = "9f200f5b12eb75f8c1ed65abd4b2db8a6e1b138a20de009dacee265a2498f3f6"
dependencies = [
2020-08-24 23:16:34 +00:00
"libc",
]
[[package]]
name = "walkdir"
2021-03-26 22:29:45 +00:00
version = "2.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-03-26 22:29:45 +00:00
checksum = "808cf2735cd4b6866113f648b791c6adc5714537bc222d9347bb203386ffda56"
dependencies = [
2020-08-24 23:16:34 +00:00
"same-file",
2021-08-28 22:34:37 +00:00
"winapi",
2020-08-24 23:16:34 +00:00
"winapi-util",
]
[[package]]
name = "want"
2020-03-11 14:18:15 +00:00
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-08-24 23:16:34 +00:00
checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0"
dependencies = [
2020-08-24 23:16:34 +00:00
"log",
"try-lock",
]
2019-08-31 13:28:31 +00:00
[[package]]
name = "wasi"
2020-03-09 17:16:42 +00:00
version = "0.9.0+wasi-snapshot-preview1"
2019-08-31 13:28:31 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-08-24 23:16:34 +00:00
checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
2019-08-31 13:28:31 +00:00
2020-09-06 19:44:38 +00:00
[[package]]
name = "wasi"
version = "0.10.2+wasi-snapshot-preview1"
2020-09-06 19:44:38 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fd6fbd9a79829dd1ad0cc20627bf1ed606756a7f77edff7b66b7064f9cb327c6"
2020-09-06 19:44:38 +00:00
2020-03-11 14:18:15 +00:00
[[package]]
name = "wasm-bindgen"
2021-08-25 02:50:12 +00:00
version = "0.2.76"
2020-03-11 14:18:15 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-25 02:50:12 +00:00
checksum = "8ce9b1b516211d33767048e5d47fa2a381ed8b76fc48d2ce4aa39877f9f183e0"
2020-03-11 14:18:15 +00:00
dependencies = [
2021-08-28 22:34:37 +00:00
"cfg-if",
2020-08-24 23:16:34 +00:00
"serde",
"serde_json",
"wasm-bindgen-macro",
2020-03-11 14:18:15 +00:00
]
[[package]]
name = "wasm-bindgen-backend"
2021-08-25 02:50:12 +00:00
version = "0.2.76"
2020-03-11 14:18:15 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-25 02:50:12 +00:00
checksum = "cfe8dc78e2326ba5f845f4b5bf548401604fa20b1dd1d365fb73b6c1d6364041"
2020-03-11 14:18:15 +00:00
dependencies = [
2020-08-24 23:16:34 +00:00
"bumpalo",
"lazy_static",
"log",
"proc-macro2",
"quote",
"syn",
"wasm-bindgen-shared",
2020-03-11 14:18:15 +00:00
]
[[package]]
name = "wasm-bindgen-futures"
2021-08-25 02:50:12 +00:00
version = "0.4.26"
2020-03-11 14:18:15 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-25 02:50:12 +00:00
checksum = "95fded345a6559c2cfee778d562300c581f7d4ff3edb9b0d230d69800d213972"
2020-03-11 14:18:15 +00:00
dependencies = [
2021-08-28 22:34:37 +00:00
"cfg-if",
2020-08-24 23:16:34 +00:00
"js-sys",
"wasm-bindgen",
"web-sys",
2020-03-11 14:18:15 +00:00
]
[[package]]
name = "wasm-bindgen-macro"
2021-08-25 02:50:12 +00:00
version = "0.2.76"
2020-03-11 14:18:15 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-25 02:50:12 +00:00
checksum = "44468aa53335841d9d6b6c023eaab07c0cd4bddbcfdee3e2bb1e8d2cb8069fef"
2020-03-11 14:18:15 +00:00
dependencies = [
2020-08-24 23:16:34 +00:00
"quote",
"wasm-bindgen-macro-support",
2020-03-11 14:18:15 +00:00
]
[[package]]
name = "wasm-bindgen-macro-support"
2021-08-25 02:50:12 +00:00
version = "0.2.76"
2020-03-11 14:18:15 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-25 02:50:12 +00:00
checksum = "0195807922713af1e67dc66132c7328206ed9766af3858164fb583eedc25fbad"
2020-03-11 14:18:15 +00:00
dependencies = [
2020-08-24 23:16:34 +00:00
"proc-macro2",
"quote",
"syn",
"wasm-bindgen-backend",
"wasm-bindgen-shared",
2020-03-11 14:18:15 +00:00
]
[[package]]
name = "wasm-bindgen-shared"
2021-08-25 02:50:12 +00:00
version = "0.2.76"
2020-03-11 14:18:15 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-25 02:50:12 +00:00
checksum = "acdb075a845574a1fa5f09fd77e43f7747599301ea3417a9fbffdeedfc1f4a29"
2020-03-11 14:18:15 +00:00
[[package]]
name = "web-sys"
2021-08-25 02:50:12 +00:00
version = "0.3.53"
2020-03-11 14:18:15 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-25 02:50:12 +00:00
checksum = "224b2f6b67919060055ef1a67807367c2066ed520c3862cc013d26cf893a783c"
2020-03-11 14:18:15 +00:00
dependencies = [
2020-08-24 23:16:34 +00:00
"js-sys",
"wasm-bindgen",
2020-03-11 14:18:15 +00:00
]
2020-07-21 23:15:57 +00:00
[[package]]
name = "webpki"
2020-12-07 09:02:45 +00:00
version = "0.21.4"
2020-07-21 23:15:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-07 09:02:45 +00:00
checksum = "b8e38c0608262c46d4a56202ebabdeb094cef7e560ca7a226c6bf055188aa4ea"
2020-07-21 23:15:57 +00:00
dependencies = [
2020-08-24 23:16:34 +00:00
"ring",
"untrusted",
2020-07-21 23:15:57 +00:00
]
[[package]]
name = "webpki-roots"
2021-04-18 02:52:30 +00:00
version = "0.21.1"
2020-07-21 23:15:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-18 02:52:30 +00:00
checksum = "aabe153544e473b775453675851ecc86863d2a81d786d741f6b76778f2a48940"
2020-07-21 23:15:57 +00:00
dependencies = [
2020-08-24 23:16:34 +00:00
"webpki",
2020-07-21 23:15:57 +00:00
]
2018-05-17 11:47:21 +00:00
[[package]]
name = "winapi"
2020-07-21 17:42:12 +00:00
version = "0.3.9"
2018-05-17 11:47:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-08-24 23:16:34 +00:00
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
2018-05-17 11:47:21 +00:00
dependencies = [
2020-08-24 23:16:34 +00:00
"winapi-i686-pc-windows-gnu",
"winapi-x86_64-pc-windows-gnu",
2018-05-17 11:47:21 +00:00
]
[[package]]
name = "winapi-i686-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-08-24 23:16:34 +00:00
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
2018-05-17 11:47:21 +00:00
[[package]]
name = "winapi-util"
2020-05-14 23:49:05 +00:00
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-08-24 23:16:34 +00:00
checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
dependencies = [
2021-08-28 22:34:37 +00:00
"winapi",
]
2018-05-17 11:47:21 +00:00
[[package]]
name = "winapi-x86_64-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-08-24 23:16:34 +00:00
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
2018-05-17 11:47:21 +00:00
2020-06-26 09:43:29 +00:00
[[package]]
name = "winreg"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-08-24 23:16:34 +00:00
checksum = "0120db82e8a1e0b9fb3345a539c478767c0048d842860994d96113d5b667bd69"
2020-06-26 09:43:29 +00:00
dependencies = [
2021-08-28 22:34:37 +00:00
"winapi",
2018-05-17 11:47:21 +00:00
]
2019-03-08 18:59:59 +00:00
[[package]]
name = "xattr"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-08-24 23:16:34 +00:00
checksum = "244c3741f4240ef46274860397c7c74e50eb23624996930e484c16679633a54c"
2019-03-08 18:59:59 +00:00
dependencies = [
2020-08-24 23:16:34 +00:00
"libc",
2019-03-08 18:59:59 +00:00
]
[[package]]
name = "xml5ever"
version = "0.16.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-08-24 23:16:34 +00:00
checksum = "0b1b52e6e8614d4a58b8e70cf51ec0cc21b256ad8206708bcff8139b5bbd6a59"
dependencies = [
2020-08-24 23:16:34 +00:00
"log",
"mac",
"markup5ever",
"time 0.1.43",
]
[[package]]
name = "yansi"
2018-12-10 15:32:09 +00:00
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-08-24 23:16:34 +00:00
checksum = "9fc79f4a1e39857fc00c3f662cbf2651c771f00e9c15fe2abc341806bd46bd71"
[[package]]
name = "zip"
2021-06-28 08:27:46 +00:00
version = "0.5.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-28 08:27:46 +00:00
checksum = "93ab48844d61251bb3835145c521d88aa4031d7139e8485990f60ca911fa0815"
dependencies = [
2020-09-11 23:57:53 +00:00
"byteorder",
2020-08-24 23:16:34 +00:00
"bzip2",
"crc32fast",
"flate2",
2020-09-11 23:57:53 +00:00
"thiserror",
"time 0.1.43",
2020-08-24 23:16:34 +00:00
]
2021-08-28 22:34:37 +00:00
[[package]]
name = "zstd"
version = "0.7.0+zstd.1.4.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9428752481d8372e15b1bf779ea518a179ad6c771cca2d2c60e4fbff3cc2cd52"
dependencies = [
"zstd-safe",
]
[[package]]
name = "zstd-safe"
version = "3.1.0+zstd.1.4.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5aa1926623ad7fe406e090555387daf73db555b948134b4d73eac5eb08fb666d"
dependencies = [
"libc",
"zstd-sys",
]
[[package]]
name = "zstd-sys"
version = "1.5.0+zstd.1.4.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4e6c094340240369025fc6b731b054ee2a834328fa584310ac96aa4baebdc465"
dependencies = [
"cc",
"libc",
]