KIT-ILIAS-downloader/Cargo.lock

1933 lines
46 KiB
Plaintext
Raw Normal View History

2020-04-21 20:41:28 +00:00
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
[[package]]
name = "KIT-ILIAS-downloader"
2021-02-16 09:08:10 +00:00
version = "0.2.14"
2020-04-21 20:41:28 +00:00
dependencies = [
"anyhow",
2020-11-28 15:42:26 +00:00
"futures",
2020-11-28 11:56:23 +00:00
"futures-channel",
2020-04-21 20:41:28 +00:00
"futures-util",
"ignore",
2020-04-21 20:41:28 +00:00
"lazy_static",
"parking_lot",
"regex",
"reqwest",
2020-04-21 21:12:05 +00:00
"rpassword",
"rprompt",
2020-04-21 20:41:28 +00:00
"scraper",
"serde_json",
2020-04-21 21:03:30 +00:00
"structopt",
2020-04-21 20:41:28 +00:00
"tokio",
2021-01-20 09:26:38 +00:00
"tokio-util",
2020-11-01 10:55:44 +00:00
"url",
2020-04-21 20:41:28 +00:00
]
2020-04-21 21:31:47 +00:00
[[package]]
2020-07-13 07:44:27 +00:00
name = "adler"
version = "0.2.3"
2020-04-21 21:31:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-07-13 07:44:27 +00:00
checksum = "ee2a4ec343196209d6594e19543ae87a39f96d5534d7174822a3ad825dd6ed7e"
2020-04-21 21:31:47 +00:00
2020-04-21 20:41:28 +00:00
[[package]]
name = "aho-corasick"
2020-11-28 11:56:23 +00:00
version = "0.7.15"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-28 11:56:23 +00:00
checksum = "7404febffaa47dac81aa44dba71523c9d069b1bdc50a77db41195149e17f68e5"
2020-04-21 20:41:28 +00:00
dependencies = [
"memchr",
]
2020-04-21 21:03:30 +00:00
[[package]]
name = "ansi_term"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b"
dependencies = [
2021-01-20 09:26:38 +00:00
"winapi",
2020-04-21 21:03:30 +00:00
]
[[package]]
name = "anyhow"
2021-01-20 09:26:38 +00:00
version = "1.0.38"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-20 09:26:38 +00:00
checksum = "afddf7f520a80dbf76e6f50a35bca42a2331ef227a28b3b6dc5c2e2338d114b1"
2020-04-21 20:41:28 +00:00
2020-04-21 21:31:47 +00:00
[[package]]
name = "async-compression"
2021-01-20 09:26:38 +00:00
version = "0.3.7"
2020-04-21 21:31:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-20 09:26:38 +00:00
checksum = "b72c1f1154e234325b50864a349b9c8e56939e266a4c307c0f159812df2f9537"
2020-04-21 21:31:47 +00:00
dependencies = [
"flate2",
"futures-core",
"memchr",
2021-01-20 09:26:38 +00:00
"pin-project-lite",
"tokio",
2020-04-21 21:31:47 +00:00
]
2020-04-21 21:03:30 +00:00
[[package]]
name = "atty"
version = "0.2.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
dependencies = [
"hermit-abi",
"libc",
2021-01-20 09:26:38 +00:00
"winapi",
2020-04-21 21:03:30 +00:00
]
2020-04-21 20:41:28 +00:00
[[package]]
name = "autocfg"
2020-11-01 10:55:44 +00:00
version = "1.0.1"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-01 10:55:44 +00:00
checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a"
2020-04-21 20:41:28 +00:00
[[package]]
2020-11-01 10:55:44 +00:00
name = "base-x"
2020-11-28 11:56:23 +00:00
version = "0.2.8"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-28 11:56:23 +00:00
checksum = "a4521f3e3d031370679b3b140beb36dfe4801b09ac77e30c61941f97df3ef28b"
2020-04-21 20:41:28 +00:00
2020-11-28 11:56:23 +00:00
[[package]]
name = "base64"
version = "0.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd"
2020-04-21 20:41:28 +00:00
[[package]]
name = "bitflags"
version = "1.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693"
[[package]]
name = "bstr"
2021-02-16 09:06:44 +00:00
version = "0.2.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-16 09:06:44 +00:00
checksum = "a40b47ad93e1a5404e6c18dec46b628214fee441c70f4ab5d6942142cc268a3d"
dependencies = [
"memchr",
]
2020-04-21 20:41:28 +00:00
[[package]]
name = "bumpalo"
2021-02-16 09:06:44 +00:00
version = "3.6.0"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-16 09:06:44 +00:00
checksum = "099e596ef14349721d9016f6b80dd3419ea1bf289ab9b44df8e4dfd3a005d5d9"
2020-04-21 20:41:28 +00:00
[[package]]
name = "byteorder"
2021-01-20 09:26:38 +00:00
version = "1.4.2"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-20 09:26:38 +00:00
checksum = "ae44d1a3d5a19df61dd0c8beb138458ac2a53a7ac09eba97d55592540004306b"
2020-04-21 20:41:28 +00:00
[[package]]
name = "bytes"
2021-01-20 09:26:38 +00:00
version = "1.0.1"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-20 09:26:38 +00:00
checksum = "b700ce4376041dcd0a327fd0097c41095743c4c8af8887265942faf1100bd040"
2020-04-21 20:41:28 +00:00
[[package]]
name = "cc"
2021-01-20 09:26:38 +00:00
version = "1.0.66"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-20 09:26:38 +00:00
checksum = "4c0496836a84f8d0495758516b8621a622beb77c0fed418570e50764093ced48"
2020-04-21 20:41:28 +00:00
2020-11-01 10:55:44 +00:00
[[package]]
name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
2020-04-21 21:03:30 +00:00
[[package]]
name = "clap"
2020-11-01 10:55:44 +00:00
version = "2.33.3"
2020-04-21 21:03:30 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-01 10:55:44 +00:00
checksum = "37e58ac78573c40708d45522f0d80fa2f01cc4f9b4e2bf749807255454312002"
2020-04-21 21:03:30 +00:00
dependencies = [
"ansi_term",
"atty",
"bitflags",
"strsim",
"textwrap",
"unicode-width",
"vec_map",
]
2020-11-01 10:55:44 +00:00
[[package]]
name = "const_fn"
2021-01-20 09:26:38 +00:00
version = "0.4.5"
2020-11-01 10:55:44 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-20 09:26:38 +00:00
checksum = "28b9d6de7f49e22cf97ad17fc4036ece69300032f45f78f30b4a4482cdc3f4a6"
2020-11-01 10:55:44 +00:00
2020-04-21 20:41:28 +00:00
[[package]]
name = "cookie"
2020-11-28 11:56:23 +00:00
version = "0.14.3"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-28 11:56:23 +00:00
checksum = "784ad0fbab4f3e9cef09f20e0aea6000ae08d2cb98ac4c0abc53df18803d702f"
2020-04-21 20:41:28 +00:00
dependencies = [
2020-11-01 10:55:44 +00:00
"percent-encoding",
2020-04-21 20:41:28 +00:00
"time",
2020-11-01 10:55:44 +00:00
"version_check",
2020-04-21 20:41:28 +00:00
]
[[package]]
name = "cookie_store"
2020-11-01 10:55:44 +00:00
version = "0.12.0"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-01 10:55:44 +00:00
checksum = "3818dfca4b0cb5211a659bbcbb94225b7127407b2b135e650d717bfb78ab10d3"
2020-04-21 20:41:28 +00:00
dependencies = [
"cookie",
2020-11-01 10:55:44 +00:00
"idna",
2020-04-21 20:41:28 +00:00
"log",
"publicsuffix",
"serde",
"serde_json",
"time",
2020-11-01 10:55:44 +00:00
"url",
2020-04-21 20:41:28 +00:00
]
2020-04-21 21:31:47 +00:00
[[package]]
name = "crc32fast"
2020-11-01 10:55:44 +00:00
version = "1.2.1"
2020-04-21 21:31:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-01 10:55:44 +00:00
checksum = "81156fece84ab6a9f2afdb109ce3ae577e42b1228441eded99bd77f627953b1a"
2020-04-21 21:31:47 +00:00
dependencies = [
2021-02-16 09:06:44 +00:00
"cfg-if",
2020-04-21 21:31:47 +00:00
]
[[package]]
name = "crossbeam-utils"
2020-11-28 11:56:23 +00:00
version = "0.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-28 11:56:23 +00:00
checksum = "02d96d1e189ef58269ebe5b97953da3274d83a93af647c2ddd6f9dab28cedb8d"
dependencies = [
2020-06-19 14:51:26 +00:00
"autocfg",
2021-02-16 09:06:44 +00:00
"cfg-if",
"lazy_static",
]
2020-04-21 20:41:28 +00:00
[[package]]
name = "cssparser"
2020-06-19 14:51:26 +00:00
version = "0.27.2"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-06-19 14:51:26 +00:00
checksum = "754b69d351cdc2d8ee09ae203db831e005560fc6030da058f86ad60c92a9cb0a"
2020-04-21 20:41:28 +00:00
dependencies = [
"cssparser-macros",
"dtoa-short",
"itoa",
"matches",
"phf",
"proc-macro2",
"quote",
2020-06-19 14:51:26 +00:00
"smallvec",
2020-04-21 20:41:28 +00:00
"syn",
]
[[package]]
name = "cssparser-macros"
2020-06-19 14:51:26 +00:00
version = "0.6.0"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-06-19 14:51:26 +00:00
checksum = "dfae75de57f2b2e85e8768c3ea840fd159c8f33e2b6522c7835b7abac81be16e"
2020-04-21 20:41:28 +00:00
dependencies = [
"quote",
"syn",
]
[[package]]
2020-06-19 14:51:26 +00:00
name = "derive_more"
2020-11-01 10:55:44 +00:00
version = "0.99.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-01 10:55:44 +00:00
checksum = "41cb0e6161ad61ed084a36ba71fbba9e3ac5aee3606fb607fe08da6acbcf3d8c"
dependencies = [
2020-06-19 14:51:26 +00:00
"proc-macro2",
"quote",
"syn",
]
2020-11-01 10:55:44 +00:00
[[package]]
name = "discard"
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "212d0f5754cb6769937f4501cc0e67f4f4483c8d2c3e1e922ee9edbe4ab4c7c0"
2020-04-21 20:41:28 +00:00
[[package]]
name = "dtoa"
2021-01-20 09:26:38 +00:00
version = "0.4.7"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-20 09:26:38 +00:00
checksum = "88d7ed2934d741c6b37e33e3832298e8850b53fd2d2bea03873375596c7cea4e"
2020-04-21 20:41:28 +00:00
[[package]]
name = "dtoa-short"
2021-01-20 09:26:38 +00:00
version = "0.3.3"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-20 09:26:38 +00:00
checksum = "bde03329ae10e79ede66c9ce4dc930aa8599043b0743008548680f25b91502d6"
2020-04-21 20:41:28 +00:00
dependencies = [
"dtoa",
]
[[package]]
name = "ego-tree"
version = "0.6.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3a68a4904193147e0a8dec3314640e6db742afd5f6e634f428a6af230d9b3591"
[[package]]
name = "encoding_rs"
2021-02-16 09:06:44 +00:00
version = "0.8.28"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-16 09:06:44 +00:00
checksum = "80df024fbc5ac80f87dfef0d9f5209a252f2a497f7f42944cff24d8253cac065"
2020-04-21 20:41:28 +00:00
dependencies = [
2021-02-16 09:06:44 +00:00
"cfg-if",
2020-04-21 20:41:28 +00:00
]
[[package]]
name = "error-chain"
2020-11-01 10:55:44 +00:00
version = "0.12.4"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-01 10:55:44 +00:00
checksum = "2d2f06b9cac1506ece98fe3231e3cc9c4410ec3d5b1f24ae1c8946f0742cdefc"
2020-04-21 20:41:28 +00:00
dependencies = [
"version_check",
]
2020-04-21 21:31:47 +00:00
[[package]]
name = "flate2"
2021-02-16 09:06:44 +00:00
version = "1.0.20"
2020-04-21 21:31:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-16 09:06:44 +00:00
checksum = "cd3aec53de10fe96d7d8c565eb17f2c687bb5518a2ec453b5b1252964526abe0"
2020-04-21 21:31:47 +00:00
dependencies = [
2021-02-16 09:06:44 +00:00
"cfg-if",
2020-04-21 21:31:47 +00:00
"crc32fast",
"libc",
"miniz_oxide",
]
2020-04-21 20:41:28 +00:00
[[package]]
name = "fnv"
2020-05-18 09:14:21 +00:00
version = "1.0.7"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-18 09:14:21 +00:00
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
2020-04-21 20:41:28 +00:00
2020-11-28 11:56:23 +00:00
[[package]]
name = "form_urlencoded"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ece68d15c92e84fa4f19d3780f1294e5ca82a78a6d515f1efaabcc144688be00"
dependencies = [
"matches",
"percent-encoding",
]
2020-04-21 20:41:28 +00:00
[[package]]
name = "futf"
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7c9c1ce3fa9336301af935ab852c437817d14cd33690446569392e65170aac3b"
dependencies = [
"mac",
"new_debug_unreachable",
]
2020-11-28 15:42:26 +00:00
[[package]]
name = "futures"
2021-01-20 09:26:38 +00:00
version = "0.3.12"
2020-11-28 15:42:26 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-20 09:26:38 +00:00
checksum = "da9052a1a50244d8d5aa9bf55cbc2fb6f357c86cc52e46c62ed390a7180cf150"
2020-11-28 15:42:26 +00:00
dependencies = [
"futures-channel",
"futures-core",
"futures-executor",
"futures-io",
"futures-sink",
"futures-task",
"futures-util",
]
2020-04-21 20:41:28 +00:00
[[package]]
name = "futures-channel"
2021-01-20 09:26:38 +00:00
version = "0.3.12"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-20 09:26:38 +00:00
checksum = "f2d31b7ec7efab6eefc7c57233bb10b847986139d88cc2f5a02a1ae6871a1846"
2020-04-21 20:41:28 +00:00
dependencies = [
"futures-core",
2020-11-28 15:42:26 +00:00
"futures-sink",
2020-04-21 20:41:28 +00:00
]
[[package]]
name = "futures-core"
2021-01-20 09:26:38 +00:00
version = "0.3.12"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-20 09:26:38 +00:00
checksum = "79e5145dde8da7d1b3892dad07a9c98fc04bc39892b1ecc9692cf53e2b780a65"
2020-04-21 20:41:28 +00:00
2020-11-28 15:42:26 +00:00
[[package]]
name = "futures-executor"
2021-01-20 09:26:38 +00:00
version = "0.3.12"
2020-11-28 15:42:26 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-20 09:26:38 +00:00
checksum = "e9e59fdc009a4b3096bf94f740a0f2424c082521f20a9b08c5c07c48d90fd9b9"
2020-11-28 15:42:26 +00:00
dependencies = [
"futures-core",
"futures-task",
"futures-util",
]
[[package]]
name = "futures-io"
2021-01-20 09:26:38 +00:00
version = "0.3.12"
2020-11-28 15:42:26 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-20 09:26:38 +00:00
checksum = "28be053525281ad8259d47e4de5de657b25e7bac113458555bb4b70bc6870500"
2020-11-28 15:42:26 +00:00
2020-04-21 20:41:28 +00:00
[[package]]
name = "futures-macro"
2021-01-20 09:26:38 +00:00
version = "0.3.12"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-20 09:26:38 +00:00
checksum = "c287d25add322d9f9abdcdc5927ca398917996600182178774032e9f8258fedd"
2020-04-21 20:41:28 +00:00
dependencies = [
"proc-macro-hack",
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "futures-sink"
2021-01-20 09:26:38 +00:00
version = "0.3.12"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-20 09:26:38 +00:00
checksum = "caf5c69029bda2e743fddd0582d1083951d65cc9539aebf8812f36c3491342d6"
2020-04-21 20:41:28 +00:00
[[package]]
name = "futures-task"
2021-01-20 09:26:38 +00:00
version = "0.3.12"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-20 09:26:38 +00:00
checksum = "13de07eb8ea81ae445aca7b69f5f7bf15d7bf4912d8ca37d6645c77ae8a58d86"
2020-05-12 04:49:54 +00:00
dependencies = [
"once_cell",
]
2020-04-21 20:41:28 +00:00
[[package]]
name = "futures-util"
2021-01-20 09:26:38 +00:00
version = "0.3.12"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-20 09:26:38 +00:00
checksum = "632a8cd0f2a4b3fdea1657f08bde063848c3bd00f9bbf6e256b8be78802e624b"
2020-04-21 20:41:28 +00:00
dependencies = [
2020-11-28 15:42:26 +00:00
"futures-channel",
2020-04-21 20:41:28 +00:00
"futures-core",
2020-11-28 15:42:26 +00:00
"futures-io",
2020-04-21 20:41:28 +00:00
"futures-macro",
2020-11-28 15:42:26 +00:00
"futures-sink",
2020-04-21 20:41:28 +00:00
"futures-task",
2020-11-28 15:42:26 +00:00
"memchr",
2021-01-20 09:26:38 +00:00
"pin-project-lite",
2020-04-21 20:41:28 +00:00
"pin-utils",
"proc-macro-hack",
"proc-macro-nested",
"slab",
]
[[package]]
name = "fxhash"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c"
dependencies = [
"byteorder",
]
[[package]]
name = "getopts"
version = "0.2.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "14dbbfd5c71d70241ecf9e6f13737f7b5ce823821063188d7e46c41d371eebd5"
dependencies = [
"unicode-width",
]
2020-06-19 14:51:26 +00:00
[[package]]
name = "getrandom"
2021-01-20 09:26:38 +00:00
version = "0.1.16"
2020-06-19 14:51:26 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-20 09:26:38 +00:00
checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce"
2020-06-19 14:51:26 +00:00
dependencies = [
2021-02-16 09:06:44 +00:00
"cfg-if",
2020-06-19 14:51:26 +00:00
"libc",
"wasi",
]
[[package]]
name = "globset"
2020-11-01 10:55:44 +00:00
version = "0.4.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-01 10:55:44 +00:00
checksum = "c152169ef1e421390738366d2f796655fec62621dabbd0fd476f905934061e4a"
dependencies = [
"aho-corasick",
"bstr",
"fnv",
"log",
"regex",
]
2020-04-21 20:41:28 +00:00
[[package]]
name = "h2"
2021-01-20 09:26:38 +00:00
version = "0.3.0"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-20 09:26:38 +00:00
checksum = "6b67e66362108efccd8ac053abafc8b7a8d86a37e6e48fc4f6f7485eb5e9e6a5"
2020-04-21 20:41:28 +00:00
dependencies = [
"bytes",
"fnv",
"futures-core",
"futures-sink",
"futures-util",
"http",
"indexmap",
"slab",
"tokio",
"tokio-util",
2020-07-15 20:36:39 +00:00
"tracing",
2020-11-01 10:55:44 +00:00
"tracing-futures",
2020-04-21 20:41:28 +00:00
]
2020-11-01 10:55:44 +00:00
[[package]]
name = "hashbrown"
version = "0.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d7afe4a420e3fe79967a00898cc1f4db7c8a49a9333a29f8a4bd76a253d5cd04"
2020-04-21 21:03:30 +00:00
[[package]]
name = "heck"
2021-01-20 09:26:38 +00:00
version = "0.3.2"
2020-04-21 21:03:30 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-20 09:26:38 +00:00
checksum = "87cbf45460356b7deeb5e3415b5563308c0a9b057c85e12b06ad551f98d0a6ac"
2020-04-21 21:03:30 +00:00
dependencies = [
"unicode-segmentation",
]
2020-04-21 20:41:28 +00:00
[[package]]
name = "hermit-abi"
2021-01-20 09:26:38 +00:00
version = "0.1.18"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-20 09:26:38 +00:00
checksum = "322f4de77956e22ed0e5032c359a0f1273f1f7f0d79bfa3b8ffbc730d7fbcc5c"
2020-04-21 20:41:28 +00:00
dependencies = [
"libc",
]
[[package]]
name = "html5ever"
2020-06-19 14:51:26 +00:00
version = "0.25.1"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-06-19 14:51:26 +00:00
checksum = "aafcf38a1a36118242d29b92e1b08ef84e67e4a5ed06e0a80be20e6a32bfed6b"
2020-04-21 20:41:28 +00:00
dependencies = [
"log",
"mac",
"markup5ever",
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "http"
2021-01-20 09:26:38 +00:00
version = "0.2.3"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-20 09:26:38 +00:00
checksum = "7245cd7449cc792608c3c8a9eaf69bd4eabbabf802713748fd739c98b82f0747"
2020-04-21 20:41:28 +00:00
dependencies = [
"bytes",
"fnv",
"itoa",
]
[[package]]
name = "http-body"
2021-01-20 09:26:38 +00:00
version = "0.4.0"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-20 09:26:38 +00:00
checksum = "2861bd27ee074e5ee891e8b539837a9430012e249d7f0ca2d795650f579c1994"
2020-04-21 20:41:28 +00:00
dependencies = [
"bytes",
"http",
]
[[package]]
name = "httparse"
2021-02-16 09:06:44 +00:00
version = "1.3.5"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-16 09:06:44 +00:00
checksum = "615caabe2c3160b313d52ccc905335f4ed5f10881dd63dc5699d47e90be85691"
2020-04-21 20:41:28 +00:00
2020-11-01 10:55:44 +00:00
[[package]]
name = "httpdate"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "494b4d60369511e7dea41cf646832512a94e542f68bb9c49e54518e0f468eb47"
2020-04-21 20:41:28 +00:00
[[package]]
name = "hyper"
2021-02-16 09:06:44 +00:00
version = "0.14.4"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-16 09:06:44 +00:00
checksum = "e8e946c2b1349055e0b72ae281b238baf1a3ea7307c7e9f9d64673bdd9c26ac7"
2020-04-21 20:41:28 +00:00
dependencies = [
"bytes",
"futures-channel",
"futures-core",
"futures-util",
"h2",
"http",
"http-body",
"httparse",
2020-11-01 10:55:44 +00:00
"httpdate",
2020-04-21 20:41:28 +00:00
"itoa",
2021-02-16 09:06:44 +00:00
"pin-project 1.0.5",
2020-06-19 14:51:26 +00:00
"socket2",
2020-04-21 20:41:28 +00:00
"tokio",
"tower-service",
2020-07-15 20:36:39 +00:00
"tracing",
2020-04-21 20:41:28 +00:00
"want",
]
[[package]]
name = "hyper-rustls"
2021-01-20 09:26:38 +00:00
version = "0.22.1"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-20 09:26:38 +00:00
checksum = "5f9f7a97316d44c0af9b0301e65010573a853a9fc97046d7331d7f6bc0fd5a64"
2020-04-21 20:41:28 +00:00
dependencies = [
"futures-util",
2020-04-21 20:41:28 +00:00
"hyper",
"log",
"rustls",
2020-04-21 20:41:28 +00:00
"tokio",
"tokio-rustls",
"webpki",
2020-04-21 20:41:28 +00:00
]
[[package]]
name = "idna"
2021-02-16 09:06:44 +00:00
version = "0.2.1"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-16 09:06:44 +00:00
checksum = "de910d521f7cc3135c4de8db1cb910e0b5ed1dc6f57c381cd07e8e661ce10094"
2020-04-21 20:41:28 +00:00
dependencies = [
"matches",
"unicode-bidi",
"unicode-normalization",
]
[[package]]
name = "ignore"
2020-11-28 11:56:23 +00:00
version = "0.4.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-28 11:56:23 +00:00
checksum = "b287fb45c60bb826a0dc68ff08742b9d88a2fea13d6e0c286b3172065aaf878c"
dependencies = [
"crossbeam-utils",
"globset",
"lazy_static",
"log",
"memchr",
"regex",
"same-file",
"thread_local",
"walkdir",
"winapi-util",
]
2020-04-21 20:41:28 +00:00
[[package]]
name = "indexmap"
2021-01-20 09:26:38 +00:00
version = "1.6.1"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-20 09:26:38 +00:00
checksum = "4fb1fa934250de4de8aef298d81c729a7d33d8c239daa3a7575e6b92bfc7313b"
2020-04-21 20:41:28 +00:00
dependencies = [
2020-06-19 14:51:26 +00:00
"autocfg",
2020-11-01 10:55:44 +00:00
"hashbrown",
2020-04-21 20:41:28 +00:00
]
2020-07-15 20:36:39 +00:00
[[package]]
name = "instant"
2020-11-28 11:56:23 +00:00
version = "0.1.9"
2020-07-15 20:36:39 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-28 11:56:23 +00:00
checksum = "61124eeebbd69b8190558df225adf7e4caafce0d743919e5d6b19652314ec5ec"
2020-11-01 10:55:44 +00:00
dependencies = [
2021-02-16 09:06:44 +00:00
"cfg-if",
2020-11-01 10:55:44 +00:00
]
2020-07-15 20:36:39 +00:00
2020-11-01 10:55:44 +00:00
[[package]]
name = "ipnet"
version = "2.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "47be2f14c678be2fdcab04ab1171db51b2762ce6f0a8ee87c8dd4a04ed216135"
2020-04-21 20:41:28 +00:00
[[package]]
name = "itoa"
2021-01-20 09:26:38 +00:00
version = "0.4.7"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-20 09:26:38 +00:00
checksum = "dd25036021b0de88a0aff6b850051563c6516d0bf53f8638938edbb9de732736"
2020-04-21 20:41:28 +00:00
[[package]]
name = "js-sys"
2021-02-16 09:06:44 +00:00
version = "0.3.47"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-16 09:06:44 +00:00
checksum = "5cfb73131c35423a367daf8cbd24100af0d077668c8c2943f0e7dd775fef0f65"
2020-04-21 20:41:28 +00:00
dependencies = [
"wasm-bindgen",
]
[[package]]
name = "lazy_static"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
[[package]]
name = "libc"
2021-02-16 09:06:44 +00:00
version = "0.2.86"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-16 09:06:44 +00:00
checksum = "b7282d924be3275cec7f6756ff4121987bc6481325397dde6ba3e7802b1a8b1c"
2020-04-21 20:41:28 +00:00
[[package]]
name = "lock_api"
2020-11-28 11:56:23 +00:00
version = "0.4.2"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-28 11:56:23 +00:00
checksum = "dd96ffd135b2fd7b973ac026d28085defbe8983df057ced3eb4f2130b0831312"
2020-04-21 20:41:28 +00:00
dependencies = [
"scopeguard",
]
[[package]]
name = "log"
2021-02-16 09:06:44 +00:00
version = "0.4.14"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-16 09:06:44 +00:00
checksum = "51b9bbe6c47d51fc3e1a9b945965946b4c44142ab8792c50835a980d362c2710"
2020-04-21 20:41:28 +00:00
dependencies = [
2021-02-16 09:06:44 +00:00
"cfg-if",
2020-04-21 20:41:28 +00:00
]
[[package]]
name = "mac"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4"
[[package]]
name = "markup5ever"
2020-06-19 14:51:26 +00:00
version = "0.10.0"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-06-19 14:51:26 +00:00
checksum = "aae38d669396ca9b707bfc3db254bc382ddb94f57cc5c235f34623a669a01dab"
2020-04-21 20:41:28 +00:00
dependencies = [
"log",
"phf",
"phf_codegen",
"serde",
"serde_derive",
"serde_json",
"string_cache",
"string_cache_codegen",
"tendril",
]
[[package]]
name = "matches"
version = "0.1.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7ffc5c5338469d4d3ea17d269fa8ea3512ad247247c30bd2df69e68309ed0a08"
[[package]]
name = "memchr"
2020-11-01 10:55:44 +00:00
version = "2.3.4"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-01 10:55:44 +00:00
checksum = "0ee1c47aaa256ecabcaea351eae4a9b01ef39ed810004e298d2511ed284b1525"
2020-04-21 20:41:28 +00:00
[[package]]
name = "mime"
version = "0.3.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2a60c7ce501c71e03a9c9c0d35b861413ae925bd979cc7a4e30d060069aaac8d"
2020-04-21 21:31:47 +00:00
[[package]]
name = "miniz_oxide"
2020-11-01 10:55:44 +00:00
version = "0.4.3"
2020-04-21 21:31:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-01 10:55:44 +00:00
checksum = "0f2d26ec3309788e423cfbf68ad1800f061638098d76a83681af979dc4eda19d"
2020-04-21 21:31:47 +00:00
dependencies = [
2020-07-13 07:44:27 +00:00
"adler",
2020-11-01 10:55:44 +00:00
"autocfg",
2020-04-21 21:31:47 +00:00
]
2020-04-21 20:41:28 +00:00
[[package]]
name = "mio"
2021-01-20 09:26:38 +00:00
version = "0.7.7"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-20 09:26:38 +00:00
checksum = "e50ae3f04d169fcc9bde0b547d1c205219b7157e07ded9c5aff03e0637cb3ed7"
2020-04-21 20:41:28 +00:00
dependencies = [
"libc",
"log",
2021-01-20 09:26:38 +00:00
"miow",
"ntapi",
"winapi",
2020-04-21 20:41:28 +00:00
]
[[package]]
name = "miow"
2020-11-28 11:56:23 +00:00
version = "0.3.6"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-28 11:56:23 +00:00
checksum = "5a33c1b55807fbed163481b5ba66db4b2fa6cde694a5027be10fb724206c5897"
2020-04-21 20:41:28 +00:00
dependencies = [
"socket2",
2021-01-20 09:26:38 +00:00
"winapi",
2020-04-21 20:41:28 +00:00
]
[[package]]
name = "new_debug_unreachable"
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e4a24736216ec316047a1fc4252e27dabb04218aa4a3f37c6e7ddbf1f9782b54"
[[package]]
name = "nodrop"
version = "0.1.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "72ef4a56884ca558e5ddb05a1d1e7e1bfd9a68d9ed024c21704cc98872dae1bb"
2021-01-20 09:26:38 +00:00
[[package]]
name = "ntapi"
version = "0.3.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f6bb902e437b6d86e03cce10a7e2af662292c5dfef23b65899ea3ac9354ad44"
dependencies = [
"winapi",
]
2020-04-21 20:41:28 +00:00
[[package]]
name = "num_cpus"
version = "1.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "05499f3756671c15885fee9034446956fff3f243d6077b91e5767df161f766b3"
dependencies = [
"hermit-abi",
"libc",
]
2020-05-03 19:48:24 +00:00
[[package]]
name = "once_cell"
2020-11-28 11:56:23 +00:00
version = "1.5.2"
2020-05-03 19:48:24 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-28 11:56:23 +00:00
checksum = "13bd41f508810a131401606d54ac32a467c97172d74ba7662562ebba5ad07fa0"
2020-05-03 19:48:24 +00:00
2020-04-21 20:41:28 +00:00
[[package]]
name = "parking_lot"
2020-11-28 11:56:23 +00:00
version = "0.11.1"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-28 11:56:23 +00:00
checksum = "6d7744ac029df22dca6284efe4e898991d28e3085c706c972bcd7da4a27a15eb"
2020-04-21 20:41:28 +00:00
dependencies = [
2020-07-15 20:36:39 +00:00
"instant",
2020-04-21 20:41:28 +00:00
"lock_api",
"parking_lot_core",
]
[[package]]
name = "parking_lot_core"
2021-02-16 09:06:44 +00:00
version = "0.8.3"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-16 09:06:44 +00:00
checksum = "fa7a782938e745763fe6907fc6ba86946d72f49fe7e21de074e08128a99fb018"
2020-04-21 20:41:28 +00:00
dependencies = [
2021-02-16 09:06:44 +00:00
"cfg-if",
2020-07-15 20:36:39 +00:00
"instant",
2020-04-21 20:41:28 +00:00
"libc",
"redox_syscall",
2020-06-19 14:51:26 +00:00
"smallvec",
2021-01-20 09:26:38 +00:00
"winapi",
2020-04-21 20:41:28 +00:00
]
[[package]]
name = "percent-encoding"
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e"
[[package]]
name = "phf"
2020-06-19 14:51:26 +00:00
version = "0.8.0"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-06-19 14:51:26 +00:00
checksum = "3dfb61232e34fcb633f43d12c58f83c1df82962dcdfa565a4e866ffc17dafe12"
2020-04-21 20:41:28 +00:00
dependencies = [
2020-06-19 14:51:26 +00:00
"phf_macros",
2020-04-21 20:41:28 +00:00
"phf_shared",
2020-06-19 14:51:26 +00:00
"proc-macro-hack",
2020-04-21 20:41:28 +00:00
]
[[package]]
name = "phf_codegen"
2020-06-19 14:51:26 +00:00
version = "0.8.0"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-06-19 14:51:26 +00:00
checksum = "cbffee61585b0411840d3ece935cce9cb6321f01c45477d30066498cd5e1a815"
2020-04-21 20:41:28 +00:00
dependencies = [
"phf_generator",
"phf_shared",
]
[[package]]
name = "phf_generator"
2020-06-19 14:51:26 +00:00
version = "0.8.0"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-06-19 14:51:26 +00:00
checksum = "17367f0cc86f2d25802b2c26ee58a7b23faeccf78a396094c13dced0d0182526"
2020-04-21 20:41:28 +00:00
dependencies = [
"phf_shared",
"rand",
2020-04-21 20:41:28 +00:00
]
2020-06-19 14:51:26 +00:00
[[package]]
name = "phf_macros"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7f6fde18ff429ffc8fe78e2bf7f8b7a5a5a6e2a8b58bc5a9ac69198bbda9189c"
dependencies = [
"phf_generator",
"phf_shared",
"proc-macro-hack",
"proc-macro2",
"quote",
"syn",
]
2020-04-21 20:41:28 +00:00
[[package]]
name = "phf_shared"
2020-06-19 14:51:26 +00:00
version = "0.8.0"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-06-19 14:51:26 +00:00
checksum = "c00cf8b9eafe68dde5e9eaa2cef8ee84a9336a47d566ec55ca16589633b65af7"
2020-04-21 20:41:28 +00:00
dependencies = [
"siphasher",
]
[[package]]
name = "pin-project"
2020-11-01 10:55:44 +00:00
version = "0.4.27"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-01 10:55:44 +00:00
checksum = "2ffbc8e94b38ea3d2d8ba92aea2983b503cd75d0888d75b86bb37970b5698e15"
2020-04-21 20:41:28 +00:00
dependencies = [
2020-11-01 10:55:44 +00:00
"pin-project-internal 0.4.27",
]
[[package]]
name = "pin-project"
2021-02-16 09:06:44 +00:00
version = "1.0.5"
2020-11-01 10:55:44 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-16 09:06:44 +00:00
checksum = "96fa8ebb90271c4477f144354485b8068bd8f6b78b428b01ba892ca26caf0b63"
2020-11-01 10:55:44 +00:00
dependencies = [
2021-02-16 09:06:44 +00:00
"pin-project-internal 1.0.5",
2020-04-21 20:41:28 +00:00
]
[[package]]
name = "pin-project-internal"
2020-11-01 10:55:44 +00:00
version = "0.4.27"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-01 10:55:44 +00:00
checksum = "65ad2ae56b6abe3a1ee25f15ee605bacadb9a764edaba9c2bf4103800d4a1895"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "pin-project-internal"
2021-02-16 09:06:44 +00:00
version = "1.0.5"
2020-11-01 10:55:44 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-16 09:06:44 +00:00
checksum = "758669ae3558c6f74bd2a18b41f7ac0b5a195aea6639d6a9b5e5d1ad5ba24c0b"
2020-04-21 20:41:28 +00:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "pin-project-lite"
2021-01-20 09:26:38 +00:00
version = "0.2.4"
2020-11-28 11:56:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-20 09:26:38 +00:00
checksum = "439697af366c49a6d0a010c56a0d97685bc140ce0d377b13a2ea2aa42d64a827"
2020-11-28 11:56:23 +00:00
2020-04-21 20:41:28 +00:00
[[package]]
name = "pin-utils"
2020-04-28 09:48:44 +00:00
version = "0.1.0"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-04-28 09:48:44 +00:00
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
2020-04-21 20:41:28 +00:00
2020-06-19 14:51:26 +00:00
[[package]]
name = "ppv-lite86"
2020-11-28 11:56:23 +00:00
version = "0.2.10"
2020-06-19 14:51:26 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-28 11:56:23 +00:00
checksum = "ac74c624d6b2d21f425f752262f42188365d7b8ff1aff74c82e45136510a4857"
2020-06-19 14:51:26 +00:00
2020-04-21 20:41:28 +00:00
[[package]]
name = "precomputed-hash"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c"
2020-04-21 21:03:30 +00:00
[[package]]
name = "proc-macro-error"
2020-11-01 10:55:44 +00:00
version = "1.0.4"
2020-04-21 21:03:30 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-01 10:55:44 +00:00
checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
2020-04-21 21:03:30 +00:00
dependencies = [
"proc-macro-error-attr",
"proc-macro2",
"quote",
"syn",
"version_check",
]
[[package]]
name = "proc-macro-error-attr"
2020-11-01 10:55:44 +00:00
version = "1.0.4"
2020-04-21 21:03:30 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-01 10:55:44 +00:00
checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
2020-04-21 21:03:30 +00:00
dependencies = [
"proc-macro2",
"quote",
"version_check",
]
2020-04-21 20:41:28 +00:00
[[package]]
name = "proc-macro-hack"
2020-11-01 10:55:44 +00:00
version = "0.5.19"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-01 10:55:44 +00:00
checksum = "dbf0c48bc1d91375ae5c3cd81e3722dff1abcf81a30960240640d223f59fe0e5"
2020-04-21 20:41:28 +00:00
[[package]]
name = "proc-macro-nested"
2021-01-20 09:26:38 +00:00
version = "0.1.7"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-20 09:26:38 +00:00
checksum = "bc881b2c22681370c6a780e47af9840ef841837bc98118431d4e1868bd0c1086"
2020-04-21 20:41:28 +00:00
[[package]]
name = "proc-macro2"
2020-11-01 10:55:44 +00:00
version = "1.0.24"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-01 10:55:44 +00:00
checksum = "1e0704ee1a7e00d7bb417d0770ea303c1bccbabf0ef1667dae92b5967f5f8a71"
2020-04-21 20:41:28 +00:00
dependencies = [
"unicode-xid",
]
[[package]]
name = "publicsuffix"
version = "1.5.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3bbaa49075179162b49acac1c6aa45fb4dafb5f13cf6794276d77bc7fd95757b"
dependencies = [
"error-chain",
2020-11-01 10:55:44 +00:00
"idna",
2020-04-21 20:41:28 +00:00
"lazy_static",
"regex",
2020-11-01 10:55:44 +00:00
"url",
2020-04-21 20:41:28 +00:00
]
[[package]]
name = "quote"
2021-02-16 09:06:44 +00:00
version = "1.0.9"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-16 09:06:44 +00:00
checksum = "c3d0b9745dc2debf507c8422de05d7226cc1f0644216dfdfead988f9b1ab32a7"
2020-04-21 20:41:28 +00:00
dependencies = [
"proc-macro2",
]
[[package]]
name = "rand"
2020-06-19 14:51:26 +00:00
version = "0.7.3"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-06-19 14:51:26 +00:00
checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03"
2020-04-21 20:41:28 +00:00
dependencies = [
2020-06-19 14:51:26 +00:00
"getrandom",
2020-04-21 20:41:28 +00:00
"libc",
"rand_chacha",
2020-06-19 14:51:26 +00:00
"rand_core",
"rand_hc",
2020-04-21 20:41:28 +00:00
"rand_pcg",
]
[[package]]
name = "rand_chacha"
2020-06-19 14:51:26 +00:00
version = "0.2.2"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-06-19 14:51:26 +00:00
checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402"
2020-04-21 20:41:28 +00:00
dependencies = [
2020-06-19 14:51:26 +00:00
"ppv-lite86",
"rand_core",
2020-04-21 20:41:28 +00:00
]
[[package]]
name = "rand_core"
2020-06-19 14:51:26 +00:00
version = "0.5.1"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-06-19 14:51:26 +00:00
checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19"
2020-04-21 20:41:28 +00:00
dependencies = [
2020-06-19 14:51:26 +00:00
"getrandom",
2020-04-21 20:41:28 +00:00
]
[[package]]
name = "rand_hc"
2020-06-19 14:51:26 +00:00
version = "0.2.0"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-06-19 14:51:26 +00:00
checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c"
2020-04-21 20:41:28 +00:00
dependencies = [
2020-06-19 14:51:26 +00:00
"rand_core",
2020-04-21 20:41:28 +00:00
]
[[package]]
name = "rand_pcg"
2020-06-19 14:51:26 +00:00
version = "0.2.1"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-06-19 14:51:26 +00:00
checksum = "16abd0c1b639e9eb4d7c50c0b8100b0d0f849be2349829c740fe8e6eb4816429"
2020-04-21 20:41:28 +00:00
dependencies = [
2020-06-19 14:51:26 +00:00
"rand_core",
2020-04-21 20:41:28 +00:00
]
[[package]]
name = "redox_syscall"
2021-02-16 09:06:44 +00:00
version = "0.2.5"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-16 09:06:44 +00:00
checksum = "94341e4e44e24f6b591b59e47a8a027df12e008d73fd5672dbea9cc22f4507d9"
dependencies = [
"bitflags",
]
2020-04-21 20:41:28 +00:00
[[package]]
name = "regex"
2021-01-20 09:26:38 +00:00
version = "1.4.3"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-20 09:26:38 +00:00
checksum = "d9251239e129e16308e70d853559389de218ac275b515068abc96829d05b948a"
2020-04-21 20:41:28 +00:00
dependencies = [
"aho-corasick",
"memchr",
"regex-syntax",
"thread_local",
]
[[package]]
name = "regex-syntax"
2021-01-20 09:26:38 +00:00
version = "0.6.22"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-20 09:26:38 +00:00
checksum = "b5eb417147ba9860a96cfe72a0b93bf88fee1744b5636ec99ab20c1aa9376581"
2020-04-21 20:41:28 +00:00
[[package]]
name = "reqwest"
2021-01-20 09:26:38 +00:00
version = "0.11.0"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-20 09:26:38 +00:00
checksum = "fd281b1030aa675fb90aa994d07187645bb3c8fc756ca766e7c3070b439de9de"
2020-04-21 20:41:28 +00:00
dependencies = [
2020-04-21 21:31:47 +00:00
"async-compression",
2021-01-20 09:26:38 +00:00
"base64",
2020-04-21 20:41:28 +00:00
"bytes",
"cookie",
"cookie_store",
"encoding_rs",
"futures-core",
"futures-util",
"http",
"http-body",
"hyper",
"hyper-rustls",
2020-11-01 10:55:44 +00:00
"ipnet",
2020-04-21 20:41:28 +00:00
"js-sys",
"lazy_static",
"log",
"mime",
2020-11-01 10:55:44 +00:00
"percent-encoding",
2021-01-20 09:26:38 +00:00
"pin-project-lite",
"rustls",
2020-04-21 20:41:28 +00:00
"serde",
"serde_json",
"serde_urlencoded",
"time",
"tokio",
"tokio-rustls",
2021-01-20 09:26:38 +00:00
"tokio-util",
2020-11-01 10:55:44 +00:00
"url",
2020-04-21 20:41:28 +00:00
"wasm-bindgen",
"wasm-bindgen-futures",
"web-sys",
"webpki-roots",
2020-04-21 20:41:28 +00:00
"winreg",
]
[[package]]
name = "ring"
2021-02-16 09:06:44 +00:00
version = "0.16.20"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-16 09:06:44 +00:00
checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc"
dependencies = [
"cc",
"libc",
2020-05-03 19:48:24 +00:00
"once_cell",
"spin",
"untrusted",
"web-sys",
2021-01-20 09:26:38 +00:00
"winapi",
]
2020-04-21 21:12:05 +00:00
[[package]]
name = "rpassword"
2021-01-20 09:26:38 +00:00
version = "5.0.1"
2020-04-21 21:12:05 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-20 09:26:38 +00:00
checksum = "ffc936cf8a7ea60c58f030fd36a612a48f440610214dc54bc36431f9ea0c3efb"
2020-04-21 21:12:05 +00:00
dependencies = [
"libc",
2021-01-20 09:26:38 +00:00
"winapi",
2020-04-21 21:12:05 +00:00
]
[[package]]
name = "rprompt"
version = "1.0.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b386f4748bdae2aefc96857f5fda07647f851d089420e577831e2a14b45230f8"
2020-11-01 10:55:44 +00:00
[[package]]
name = "rustc_version"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a"
dependencies = [
"semver",
]
[[package]]
name = "rustls"
2021-01-20 09:26:38 +00:00
version = "0.19.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-20 09:26:38 +00:00
checksum = "064fd21ff87c6e87ed4506e68beb42459caa4a0e2eb144932e6776768556980b"
dependencies = [
2021-01-20 09:26:38 +00:00
"base64",
"log",
"ring",
"sct",
"webpki",
]
2020-04-21 20:41:28 +00:00
[[package]]
name = "ryu"
2020-06-19 14:51:26 +00:00
version = "1.0.5"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-06-19 14:51:26 +00:00
checksum = "71d301d4193d031abdd79ff7e3dd721168a9572ef3fe51a1517aba235bd8f86e"
2020-04-21 20:41:28 +00:00
[[package]]
name = "same-file"
version = "1.0.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
dependencies = [
"winapi-util",
]
2020-04-21 20:41:28 +00:00
[[package]]
name = "scopeguard"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
[[package]]
name = "scraper"
2020-06-19 14:51:26 +00:00
version = "0.12.0"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-06-19 14:51:26 +00:00
checksum = "48e02aa790c80c2e494130dec6a522033b6a23603ffc06360e9fe6c611ea2c12"
2020-04-21 20:41:28 +00:00
dependencies = [
"cssparser",
"ego-tree",
"getopts",
"html5ever",
"matches",
"selectors",
2020-06-19 14:51:26 +00:00
"smallvec",
2020-04-21 20:41:28 +00:00
"tendril",
]
[[package]]
name = "sct"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e3042af939fca8c3453b7af0f1c66e533a15a86169e39de2657310ade8f98d3c"
dependencies = [
"ring",
"untrusted",
]
2020-04-21 20:41:28 +00:00
[[package]]
name = "selectors"
2020-06-19 14:51:26 +00:00
version = "0.22.0"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-06-19 14:51:26 +00:00
checksum = "df320f1889ac4ba6bc0cdc9c9af7af4bd64bb927bccdf32d81140dc1f9be12fe"
2020-04-21 20:41:28 +00:00
dependencies = [
"bitflags",
"cssparser",
2020-06-19 14:51:26 +00:00
"derive_more",
2020-04-21 20:41:28 +00:00
"fxhash",
"log",
"matches",
"phf",
"phf_codegen",
"precomputed-hash",
"servo_arc",
2020-06-19 14:51:26 +00:00
"smallvec",
2020-04-21 20:41:28 +00:00
"thin-slice",
]
2020-11-01 10:55:44 +00:00
[[package]]
name = "semver"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403"
dependencies = [
"semver-parser",
]
[[package]]
name = "semver-parser"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3"
2020-04-21 20:41:28 +00:00
[[package]]
name = "serde"
2021-02-16 09:06:44 +00:00
version = "1.0.123"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-16 09:06:44 +00:00
checksum = "92d5161132722baa40d802cc70b15262b98258453e85e5d1d365c757c73869ae"
2020-04-21 20:41:28 +00:00
dependencies = [
"serde_derive",
]
[[package]]
name = "serde_derive"
2021-02-16 09:06:44 +00:00
version = "1.0.123"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-16 09:06:44 +00:00
checksum = "9391c295d64fc0abb2c556bad848f33cb8296276b1ad2677d1ae1ace4f258f31"
2020-04-21 20:41:28 +00:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "serde_json"
2021-02-16 09:06:44 +00:00
version = "1.0.62"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-16 09:06:44 +00:00
checksum = "ea1c6153794552ea7cf7cf63b1231a25de00ec90db326ba6264440fa08e31486"
2020-04-21 20:41:28 +00:00
dependencies = [
"itoa",
"ryu",
"serde",
]
[[package]]
name = "serde_urlencoded"
2020-11-28 11:56:23 +00:00
version = "0.7.0"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-28 11:56:23 +00:00
checksum = "edfa57a7f8d9c1d260a549e7224100f6c43d43f9103e06dd8b4095a9b2b43ce9"
2020-04-21 20:41:28 +00:00
dependencies = [
2020-11-28 11:56:23 +00:00
"form_urlencoded",
2020-04-21 20:41:28 +00:00
"itoa",
2020-11-28 11:56:23 +00:00
"ryu",
2020-04-21 20:41:28 +00:00
"serde",
]
[[package]]
name = "servo_arc"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d98238b800e0d1576d8b6e3de32827c2d74bee68bb97748dcf5071fb53965432"
dependencies = [
"nodrop",
"stable_deref_trait",
]
2020-11-01 10:55:44 +00:00
[[package]]
name = "sha1"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2579985fda508104f7587689507983eadd6a6e84dd35d6d115361f530916fa0d"
2020-04-21 20:41:28 +00:00
[[package]]
name = "signal-hook-registry"
2021-01-20 09:26:38 +00:00
version = "1.3.0"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-20 09:26:38 +00:00
checksum = "16f1d0fef1604ba8f7a073c7e701f213e056707210e9020af4528e0101ce11a6"
2020-04-21 20:41:28 +00:00
dependencies = [
"libc",
]
[[package]]
name = "siphasher"
2020-06-19 14:51:26 +00:00
version = "0.3.3"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-06-19 14:51:26 +00:00
checksum = "fa8f3741c7372e75519bd9346068370c9cdaabcc1f9599cbcf2a2719352286b7"
2020-04-21 20:41:28 +00:00
[[package]]
name = "slab"
version = "0.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c111b5bd5695e56cffe5129854aa230b39c93a305372fdbb2668ca2394eea9f8"
[[package]]
name = "smallvec"
2021-01-20 09:26:38 +00:00
version = "1.6.1"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-20 09:26:38 +00:00
checksum = "fe0f37c9e8f3c5a4a66ad655a93c74daac4ad00c441533bf5c6e7990bb42604e"
2020-04-21 20:41:28 +00:00
[[package]]
name = "socket2"
2021-01-20 09:26:38 +00:00
version = "0.3.19"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-20 09:26:38 +00:00
checksum = "122e570113d28d773067fab24266b66753f6ea915758651696b6e35e49f88d6e"
2020-04-21 20:41:28 +00:00
dependencies = [
2021-02-16 09:06:44 +00:00
"cfg-if",
2020-04-21 20:41:28 +00:00
"libc",
2021-01-20 09:26:38 +00:00
"winapi",
2020-04-21 20:41:28 +00:00
]
[[package]]
name = "spin"
version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"
2020-04-21 20:41:28 +00:00
[[package]]
name = "stable_deref_trait"
2020-07-13 07:44:27 +00:00
version = "1.2.0"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-07-13 07:44:27 +00:00
checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
2020-04-21 20:41:28 +00:00
2020-11-01 10:55:44 +00:00
[[package]]
name = "standback"
2021-02-16 09:06:44 +00:00
version = "0.2.15"
2020-11-01 10:55:44 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-16 09:06:44 +00:00
checksum = "a2beb4d1860a61f571530b3f855a1b538d0200f7871c63331ecd6f17b1f014f8"
2020-11-01 10:55:44 +00:00
dependencies = [
"version_check",
]
[[package]]
name = "stdweb"
version = "0.4.20"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d022496b16281348b52d0e30ae99e01a73d737b2f45d38fed4edf79f9325a1d5"
dependencies = [
"discard",
"rustc_version",
"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"
2020-04-21 20:41:28 +00:00
[[package]]
name = "string_cache"
2020-11-28 11:56:23 +00:00
version = "0.8.1"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-28 11:56:23 +00:00
checksum = "8ddb1139b5353f96e429e1a5e19fbaf663bddedaa06d1dbd49f82e352601209a"
2020-04-21 20:41:28 +00:00
dependencies = [
"lazy_static",
"new_debug_unreachable",
"phf_shared",
"precomputed-hash",
"serde",
]
[[package]]
name = "string_cache_codegen"
2020-06-19 14:51:26 +00:00
version = "0.5.1"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-06-19 14:51:26 +00:00
checksum = "f24c8e5e19d22a726626f1a5e16fe15b132dcf21d10177fa5a45ce7962996b97"
2020-04-21 20:41:28 +00:00
dependencies = [
"phf_generator",
"phf_shared",
"proc-macro2",
"quote",
]
2020-04-21 21:03:30 +00:00
[[package]]
name = "strsim"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
[[package]]
name = "structopt"
2021-01-20 09:26:38 +00:00
version = "0.3.21"
2020-04-21 21:03:30 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-20 09:26:38 +00:00
checksum = "5277acd7ee46e63e5168a80734c9f6ee81b1367a7d8772a2d765df2a3705d28c"
2020-04-21 21:03:30 +00:00
dependencies = [
"clap",
"lazy_static",
"structopt-derive",
]
[[package]]
name = "structopt-derive"
2021-01-20 09:26:38 +00:00
version = "0.4.14"
2020-04-21 21:03:30 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-20 09:26:38 +00:00
checksum = "5ba9cdfda491b814720b6b06e0cac513d922fc407582032e8706e9f137976f90"
2020-04-21 21:03:30 +00:00
dependencies = [
"heck",
"proc-macro-error",
"proc-macro2",
"quote",
"syn",
]
2020-04-21 20:41:28 +00:00
[[package]]
name = "syn"
2021-02-16 09:06:44 +00:00
version = "1.0.60"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-16 09:06:44 +00:00
checksum = "c700597eca8a5a762beb35753ef6b94df201c81cca676604f547495a0d7f0081"
2020-04-21 20:41:28 +00:00
dependencies = [
"proc-macro2",
"quote",
"unicode-xid",
]
[[package]]
name = "tendril"
2021-01-20 09:26:38 +00:00
version = "0.4.2"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-20 09:26:38 +00:00
checksum = "a9ef557cb397a4f0a5a3a628f06515f78563f2209e64d47055d9dc6052bf5e33"
2020-04-21 20:41:28 +00:00
dependencies = [
"futf",
"mac",
"utf-8",
]
2020-04-21 21:03:30 +00:00
[[package]]
name = "textwrap"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
dependencies = [
"unicode-width",
]
2020-04-21 20:41:28 +00:00
[[package]]
name = "thin-slice"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8eaa81235c7058867fa8c0e7314f33dcce9c215f535d1913822a2b3f5e289f3c"
[[package]]
name = "thread_local"
2021-02-16 09:06:44 +00:00
version = "1.1.3"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-16 09:06:44 +00:00
checksum = "8018d24e04c95ac8790716a5987d0fec4f8b27249ffa0f7d33f1369bdfb88cbd"
2020-04-21 20:41:28 +00:00
dependencies = [
2021-02-16 09:06:44 +00:00
"once_cell",
2020-04-21 20:41:28 +00:00
]
[[package]]
name = "time"
2021-02-16 09:06:44 +00:00
version = "0.2.25"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-16 09:06:44 +00:00
checksum = "1195b046942c221454c2539395f85413b33383a067449d78aab2b7b052a142f7"
2020-04-21 20:41:28 +00:00
dependencies = [
2020-11-01 10:55:44 +00:00
"const_fn",
2020-04-21 20:41:28 +00:00
"libc",
2020-11-01 10:55:44 +00:00
"standback",
"stdweb",
"time-macros",
"version_check",
2021-01-20 09:26:38 +00:00
"winapi",
2020-04-21 20:41:28 +00:00
]
2020-11-01 10:55:44 +00:00
[[package]]
name = "time-macros"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "957e9c6e26f12cb6d0dd7fc776bb67a706312e7299aed74c8dd5b17ebb27e2f1"
dependencies = [
"proc-macro-hack",
"time-macros-impl",
]
[[package]]
name = "time-macros-impl"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e5c3be1edfad6027c69f5491cf4cb310d1a71ecd6af742788c6ff8bced86b8fa"
dependencies = [
"proc-macro-hack",
"proc-macro2",
"quote",
"standback",
"syn",
]
2020-06-19 14:51:26 +00:00
[[package]]
name = "tinyvec"
2021-02-16 09:06:44 +00:00
version = "1.1.1"
2020-06-19 14:51:26 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-16 09:06:44 +00:00
checksum = "317cca572a0e89c3ce0ca1f1bdc9369547fe318a683418e42ac8f59d14701023"
2020-11-28 11:56:23 +00:00
dependencies = [
"tinyvec_macros",
]
[[package]]
name = "tinyvec_macros"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
2020-06-19 14:51:26 +00:00
2020-04-21 20:41:28 +00:00
[[package]]
name = "tokio"
2021-02-16 09:06:44 +00:00
version = "1.2.0"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-16 09:06:44 +00:00
checksum = "e8190d04c665ea9e6b6a0dc45523ade572c088d2e6566244c1122671dbf4ae3a"
2020-04-21 20:41:28 +00:00
dependencies = [
2021-01-20 09:26:38 +00:00
"autocfg",
2020-04-21 20:41:28 +00:00
"bytes",
"libc",
"memchr",
"mio",
"num_cpus",
2021-01-20 09:26:38 +00:00
"once_cell",
"parking_lot",
"pin-project-lite",
2020-04-21 20:41:28 +00:00
"signal-hook-registry",
"tokio-macros",
2021-01-20 09:26:38 +00:00
"winapi",
2020-04-21 20:41:28 +00:00
]
[[package]]
name = "tokio-macros"
2021-02-16 09:06:44 +00:00
version = "1.1.0"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-16 09:06:44 +00:00
checksum = "caf7b11a536f46a809a8a9f0bb4237020f70ecbf115b842360afb127ea2fda57"
2020-04-21 20:41:28 +00:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "tokio-rustls"
2021-01-20 09:26:38 +00:00
version = "0.22.0"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-20 09:26:38 +00:00
checksum = "bc6844de72e57df1980054b38be3a9f4702aba4858be64dd700181a8a6d0e1b6"
2020-04-21 20:41:28 +00:00
dependencies = [
"rustls",
2020-04-21 20:41:28 +00:00
"tokio",
"webpki",
2020-04-21 20:41:28 +00:00
]
[[package]]
name = "tokio-util"
2021-02-16 09:06:44 +00:00
version = "0.6.3"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-16 09:06:44 +00:00
checksum = "ebb7cb2f00c5ae8df755b252306272cd1790d39728363936e01827e11f0b017b"
2020-04-21 20:41:28 +00:00
dependencies = [
"bytes",
"futures-core",
"futures-sink",
"log",
2021-01-20 09:26:38 +00:00
"pin-project-lite",
2020-04-21 20:41:28 +00:00
"tokio",
]
[[package]]
name = "tower-service"
2021-02-16 09:06:44 +00:00
version = "0.3.1"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-16 09:06:44 +00:00
checksum = "360dfd1d6d30e05fda32ace2c8c70e9c0a9da713275777f5a4dbb8a1893930c6"
2020-04-21 20:41:28 +00:00
2020-07-15 20:36:39 +00:00
[[package]]
name = "tracing"
2021-02-16 09:06:44 +00:00
version = "0.1.23"
2020-07-15 20:36:39 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-16 09:06:44 +00:00
checksum = "f7d40a22fd029e33300d8d89a5cc8ffce18bb7c587662f54629e94c9de5487f3"
2020-07-15 20:36:39 +00:00
dependencies = [
2021-02-16 09:06:44 +00:00
"cfg-if",
2021-01-20 09:26:38 +00:00
"pin-project-lite",
2020-07-15 20:36:39 +00:00
"tracing-core",
]
[[package]]
name = "tracing-core"
2020-11-01 10:55:44 +00:00
version = "0.1.17"
2020-07-15 20:36:39 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-01 10:55:44 +00:00
checksum = "f50de3927f93d202783f4513cda820ab47ef17f624b03c096e86ef00c67e6b5f"
2020-07-15 20:36:39 +00:00
dependencies = [
"lazy_static",
]
2020-11-01 10:55:44 +00:00
[[package]]
name = "tracing-futures"
version = "0.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ab7bb6f14721aa00656086e9335d363c5c8747bae02ebe32ea2c7dece5689b4c"
dependencies = [
"pin-project 0.4.27",
"tracing",
]
2020-04-21 20:41:28 +00:00
[[package]]
name = "try-lock"
2020-07-13 07:44:27 +00:00
version = "0.2.3"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-07-13 07:44:27 +00:00
checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642"
2020-04-21 20:41:28 +00:00
[[package]]
name = "unicode-bidi"
version = "0.3.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "49f2bd0c6468a8230e1db229cff8029217cf623c767ea5d60bfbd42729ea54d5"
dependencies = [
"matches",
]
[[package]]
name = "unicode-normalization"
2021-02-16 09:06:44 +00:00
version = "0.1.17"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-16 09:06:44 +00:00
checksum = "07fbfce1c8a97d547e8b5334978438d9d6ec8c20e38f56d4a4374d181493eaef"
2020-04-21 20:41:28 +00:00
dependencies = [
2020-06-19 14:51:26 +00:00
"tinyvec",
2020-04-21 20:41:28 +00:00
]
2020-04-21 21:03:30 +00:00
[[package]]
name = "unicode-segmentation"
2020-11-28 11:56:23 +00:00
version = "1.7.1"
2020-04-21 21:03:30 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-28 11:56:23 +00:00
checksum = "bb0d2e7be6ae3a5fa87eed5fb451aff96f2573d2694942e40543ae0bbe19c796"
2020-04-21 21:03:30 +00:00
2020-04-21 20:41:28 +00:00
[[package]]
name = "unicode-width"
2020-07-13 07:44:27 +00:00
version = "0.1.8"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-07-13 07:44:27 +00:00
checksum = "9337591893a19b88d8d87f2cec1e73fad5cdfd10e5a6f349f498ad6ea2ffb1e3"
2020-04-21 20:41:28 +00:00
[[package]]
name = "unicode-xid"
2020-07-13 07:44:27 +00:00
version = "0.2.1"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-07-13 07:44:27 +00:00
checksum = "f7fe0bb3479651439c9112f72b6c505038574c9fbb575ed1bf3b797fa39dd564"
2020-04-21 20:41:28 +00:00
[[package]]
name = "untrusted"
2020-05-03 19:48:24 +00:00
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-03 19:48:24 +00:00
checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
2020-04-21 20:41:28 +00:00
[[package]]
name = "url"
2020-11-28 11:56:23 +00:00
version = "2.2.0"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-28 11:56:23 +00:00
checksum = "5909f2b0817350449ed73e8bcd81c8c3c8d9a7a5d8acba4b27db277f1868976e"
2020-04-21 20:41:28 +00:00
dependencies = [
2020-11-28 11:56:23 +00:00
"form_urlencoded",
2020-11-01 10:55:44 +00:00
"idna",
2020-04-21 20:41:28 +00:00
"matches",
2020-11-01 10:55:44 +00:00
"percent-encoding",
2020-04-21 20:41:28 +00:00
]
[[package]]
name = "utf-8"
version = "0.7.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "05e42f7c18b8f902290b009cde6d651262f956c98bc51bca4cd1d511c9cd85c7"
2020-04-21 21:03:30 +00:00
[[package]]
name = "vec_map"
2020-05-06 20:51:02 +00:00
version = "0.8.2"
2020-04-21 21:03:30 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-06 20:51:02 +00:00
checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191"
2020-04-21 21:03:30 +00:00
2020-04-21 20:41:28 +00:00
[[package]]
name = "version_check"
2020-06-19 14:51:26 +00:00
version = "0.9.2"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-06-19 14:51:26 +00:00
checksum = "b5a972e5669d67ba988ce3dc826706fb0a8b01471c088cb0b6110b805cc36aed"
2020-04-21 20:41:28 +00:00
[[package]]
name = "walkdir"
version = "2.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "777182bc735b6424e1a57516d35ed72cb8019d85c8c9bf536dccb3445c1a2f7d"
dependencies = [
"same-file",
2021-01-20 09:26:38 +00:00
"winapi",
"winapi-util",
]
2020-04-21 20:41:28 +00:00
[[package]]
name = "want"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0"
dependencies = [
"log",
"try-lock",
]
2020-06-19 14:51:26 +00:00
[[package]]
name = "wasi"
version = "0.9.0+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
2020-04-21 20:41:28 +00:00
[[package]]
name = "wasm-bindgen"
2021-02-16 09:06:44 +00:00
version = "0.2.70"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-16 09:06:44 +00:00
checksum = "55c0f7123de74f0dab9b7d00fd614e7b19349cd1e2f5252bbe9b1754b59433be"
2020-04-21 20:41:28 +00:00
dependencies = [
2021-02-16 09:06:44 +00:00
"cfg-if",
2020-04-21 20:41:28 +00:00
"serde",
"serde_json",
"wasm-bindgen-macro",
]
[[package]]
name = "wasm-bindgen-backend"
2021-02-16 09:06:44 +00:00
version = "0.2.70"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-16 09:06:44 +00:00
checksum = "7bc45447f0d4573f3d65720f636bbcc3dd6ce920ed704670118650bcd47764c7"
2020-04-21 20:41:28 +00:00
dependencies = [
"bumpalo",
"lazy_static",
"log",
"proc-macro2",
"quote",
"syn",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-futures"
2021-02-16 09:06:44 +00:00
version = "0.4.20"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-16 09:06:44 +00:00
checksum = "3de431a2910c86679c34283a33f66f4e4abd7e0aec27b6669060148872aadf94"
2020-04-21 20:41:28 +00:00
dependencies = [
2021-02-16 09:06:44 +00:00
"cfg-if",
2020-04-21 20:41:28 +00:00
"js-sys",
"wasm-bindgen",
"web-sys",
]
[[package]]
name = "wasm-bindgen-macro"
2021-02-16 09:06:44 +00:00
version = "0.2.70"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-16 09:06:44 +00:00
checksum = "3b8853882eef39593ad4174dd26fc9865a64e84026d223f63bb2c42affcbba2c"
2020-04-21 20:41:28 +00:00
dependencies = [
"quote",
"wasm-bindgen-macro-support",
]
[[package]]
name = "wasm-bindgen-macro-support"
2021-02-16 09:06:44 +00:00
version = "0.2.70"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-16 09:06:44 +00:00
checksum = "4133b5e7f2a531fa413b3a1695e925038a05a71cf67e87dafa295cb645a01385"
2020-04-21 20:41:28 +00:00
dependencies = [
"proc-macro2",
"quote",
"syn",
"wasm-bindgen-backend",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-shared"
2021-02-16 09:06:44 +00:00
version = "0.2.70"
2020-11-28 11:56:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-16 09:06:44 +00:00
checksum = "dd4945e4943ae02d15c13962b38a5b1e81eadd4b71214eee75af64a4d6a4fd64"
2020-11-28 11:56:23 +00:00
2020-04-21 20:41:28 +00:00
[[package]]
name = "web-sys"
2021-02-16 09:06:44 +00:00
version = "0.3.47"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-16 09:06:44 +00:00
checksum = "c40dc691fc48003eba817c38da7113c15698142da971298003cac3ef175680b3"
2020-04-21 20:41:28 +00:00
dependencies = [
"js-sys",
"wasm-bindgen",
]
[[package]]
name = "webpki"
2021-01-20 09:26:38 +00:00
version = "0.21.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-20 09:26:38 +00:00
checksum = "b8e38c0608262c46d4a56202ebabdeb094cef7e560ca7a226c6bf055188aa4ea"
dependencies = [
"ring",
"untrusted",
]
[[package]]
name = "webpki-roots"
2021-01-20 09:26:38 +00:00
version = "0.21.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-20 09:26:38 +00:00
checksum = "82015b7e0b8bad8185994674a13a93306bea76cf5a16c5a181382fd3a5ec2376"
dependencies = [
"webpki",
]
2020-04-21 20:41:28 +00:00
[[package]]
name = "winapi"
2020-07-13 07:44:27 +00:00
version = "0.3.9"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-07-13 07:44:27 +00:00
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
2020-04-21 20:41:28 +00:00
dependencies = [
"winapi-i686-pc-windows-gnu",
"winapi-x86_64-pc-windows-gnu",
]
[[package]]
name = "winapi-i686-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
[[package]]
name = "winapi-util"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
dependencies = [
2021-01-20 09:26:38 +00:00
"winapi",
]
2020-04-21 20:41:28 +00:00
[[package]]
name = "winapi-x86_64-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
[[package]]
name = "winreg"
2020-06-19 14:51:26 +00:00
version = "0.7.0"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-06-19 14:51:26 +00:00
checksum = "0120db82e8a1e0b9fb3345a539c478767c0048d842860994d96113d5b667bd69"
2020-04-21 20:41:28 +00:00
dependencies = [
2021-01-20 09:26:38 +00:00
"winapi",
2020-04-21 20:41:28 +00:00
]