KIT-ILIAS-downloader/Cargo.lock

2422 lines
58 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.
2021-05-18 06:50:24 +00:00
version = 3
2020-04-21 20:41:28 +00:00
[[package]]
name = "KIT-ILIAS-downloader"
2021-11-01 16:46:12 +00:00
version = "0.2.24"
2020-04-21 20:41:28 +00:00
dependencies = [
"anyhow",
"atty",
2021-06-02 09:13:13 +00:00
"bytes",
"cfg-if",
"colored",
2021-05-30 11:38:52 +00:00
"cookie_store 0.14.1",
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",
2021-05-13 09:08:35 +00:00
"h2",
"ignore",
"indicatif",
"keyring",
"once_cell",
2020-04-21 20:41:28 +00:00
"regex",
"reqwest",
2021-05-30 11:38:52 +00:00
"reqwest_cookie_store",
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",
"tempfile",
2020-04-21 20:41:28 +00:00
"tokio",
2021-01-20 09:26:38 +00:00
"tokio-util",
"toml",
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"
2021-04-10 11:23:17 +00:00
version = "1.0.2"
2020-04-21 21:31:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-10 11:23:17 +00:00
checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
2020-04-21 21:31:47 +00:00
[[package]]
name = "aes"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "884391ef1066acaa41e766ba8f596341b96e93ce34f9a43e7d24bf0a0eaf0561"
dependencies = [
"aes-soft",
"aesni",
"cipher",
]
[[package]]
name = "aes-soft"
version = "0.6.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "be14c7498ea50828a38d0e24a765ed2effe92a705885b57d029cd67d45744072"
dependencies = [
"cipher",
"opaque-debug",
]
[[package]]
name = "aesni"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ea2e11f5e94c2f7d386164cc2aa1f97823fed6f259e486940a71c174dd01b0ce"
dependencies = [
"cipher",
"opaque-debug",
]
2020-04-21 20:41:28 +00:00
[[package]]
name = "aho-corasick"
2021-05-04 08:47:23 +00:00
version = "0.7.18"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-04 08:47:23 +00:00
checksum = "1e37cfd5e7657ada45f742d6e99ca5788580b5c529dc78faf11ece6dc702656f"
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-10-01 07:16:46 +00:00
version = "1.0.44"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-01 07:16:46 +00:00
checksum = "61604a8f862e1d5c3229fdd78f8b02c68dcf73a4c4b05fd636d12240aaa242c1"
2020-04-21 20:41:28 +00:00
2020-04-21 21:31:47 +00:00
[[package]]
name = "async-compression"
2021-05-04 08:47:23 +00:00
version = "0.3.8"
2020-04-21 21:31:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-04 08:47:23 +00:00
checksum = "5443ccbb270374a2b1055fc72da40e1f237809cd6bb0e97e66d264cd138473a6"
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"
2021-10-01 07:16:46 +00:00
version = "1.3.2"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-01 07:16:46 +00:00
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
2020-04-21 20:41:28 +00:00
[[package]]
name = "block-buffer"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4152116fd6e9dadb291ae18fc1ec3575ed6d84c29642d97890f4b4a3417297e4"
dependencies = [
"generic-array",
]
[[package]]
name = "block-modes"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "57a0e8073e8baa88212fb5823574c02ebccb395136ba9a164ab89379ec6072f0"
dependencies = [
"block-padding",
"cipher",
]
[[package]]
name = "block-padding"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8d696c370c750c948ada61c69a0ee2cbbb9c50b1019ddb86d9317157a99c2cae"
[[package]]
name = "bstr"
2021-10-01 07:16:46 +00:00
version = "0.2.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-01 07:16:46 +00:00
checksum = "ba3569f383e8f1598449f1a423e72e99569137b47740b1da11ef19af3d5c3223"
dependencies = [
"memchr",
]
2020-04-21 20:41:28 +00:00
[[package]]
name = "bumpalo"
2021-10-01 07:16:46 +00:00
version = "3.7.1"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-01 07:16:46 +00:00
checksum = "d9df67f7bf9ef8498769f994239c45613ef0c5899415fb58e9add412d2c1a538"
2020-04-21 20:41:28 +00:00
[[package]]
name = "byteorder"
2021-04-10 11:23:17 +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-04-10 11:23:17 +00:00
checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
2020-04-21 20:41:28 +00:00
[[package]]
name = "bytes"
2021-10-01 07:16:46 +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-10-01 07:16:46 +00:00
checksum = "c4872d67bab6358e59559027aa3b9157c53d9358c51423c17554809a8858e0f8"
2020-04-21 20:41:28 +00:00
[[package]]
name = "cc"
2021-10-01 07:16:46 +00:00
version = "1.0.70"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-01 07:16:46 +00:00
checksum = "d26a6ce4b6a484fa3edb70f7efa6fc430fd2b87285fe8b84304fd0936faa0dc0"
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"
[[package]]
name = "cipher"
version = "0.2.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "12f8e7987cbd042a63249497f41aed09f8e65add917ea6566effbc56578d6801"
dependencies = [
"generic-array",
]
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",
]
[[package]]
name = "colored"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b3616f750b84d8f0de8a58bda93e08e2a81ad3f523089b05f1dffecab48c6cbd"
dependencies = [
"atty",
"lazy_static",
"winapi",
]
[[package]]
name = "console"
version = "0.14.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3993e6445baa160675931ec041a5e03ca84b9c6e32a056150d3aa2bdda0a1f45"
dependencies = [
"encode_unicode",
"lazy_static",
"libc",
"terminal_size",
"winapi",
]
2020-11-01 10:55:44 +00:00
[[package]]
name = "const_fn"
version = "0.4.8"
2020-11-01 10:55:44 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f92cfa0fd5690b3cf8c1ef2cabbd9b7ef22fa53cf5e1f92b05103f6d5d1cf6e7"
2021-04-10 11:23:17 +00:00
[[package]]
name = "convert_case"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e"
2020-11-01 10:55:44 +00:00
2020-04-21 20:41:28 +00:00
[[package]]
name = "cookie"
2021-04-10 11:23:17 +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-04-10 11:23:17 +00:00
checksum = "03a5d7b21829bc7b4bf4754a978a241ae54ea55a40f92bb20216e54096f4b951"
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
]
2021-05-30 11:38:52 +00:00
[[package]]
name = "cookie"
2021-10-01 07:16:46 +00:00
version = "0.15.1"
2021-05-30 11:38:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-01 07:16:46 +00:00
checksum = "d5f1c7727e460397e56abc4bddc1d49e07a1ad78fc98eb2e1c8f032a58a2f80d"
2021-05-30 11:38:52 +00:00
dependencies = [
"percent-encoding",
"time",
"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 = [
2021-05-30 11:38:52 +00:00
"cookie 0.14.4",
2020-11-01 10:55:44 +00:00
"idna",
2020-04-21 20:41:28 +00:00
"log",
2021-05-30 11:38:52 +00:00
"publicsuffix 1.5.6",
"serde",
"serde_json",
"time",
"url",
]
[[package]]
name = "cookie_store"
version = "0.14.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1ba4e410d33a326cee69c778c761b6a822469ed7c6b82aa7802bef6e12716060"
dependencies = [
2021-10-01 07:16:46 +00:00
"cookie 0.15.1",
2021-05-30 11:38:52 +00:00
"idna",
"log",
2021-10-01 07:16:46 +00:00
"publicsuffix 2.1.1",
2020-04-21 20:41:28 +00:00
"serde",
"serde_json",
"time",
2020-11-01 10:55:44 +00:00
"url",
2020-04-21 20:41:28 +00:00
]
[[package]]
name = "core-foundation"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "57d24c7a13c43e870e37c1556b74555437870a04514f7685f5b354e090567171"
dependencies = [
"core-foundation-sys",
"libc",
]
[[package]]
name = "core-foundation-sys"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b3a71ab494c0b5b860bdc8407ae08978052417070c2ced38573a9157ad75b8ac"
[[package]]
2021-05-07 07:18:29 +00:00
name = "cpufeatures"
2021-10-01 07:16:46 +00:00
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-01 07:16:46 +00:00
checksum = "95059428f66df56b63431fdb4e1947ed2190586af5c5a8a8b71122bdf5a7f469"
2021-05-07 07:18:29 +00:00
dependencies = [
"libc",
]
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"
2021-06-02 09:13:13 +00:00
version = "0.8.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-02 09:13:13 +00:00
checksum = "d82cfc11ce7f2c3faef78d8a684447b40d503d9681acebed6cb728d45940c4db"
dependencies = [
2021-02-16 09:06:44 +00:00
"cfg-if",
"lazy_static",
]
[[package]]
name = "crypto-mac"
2021-10-01 07:16:46 +00:00
version = "0.10.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-01 07:16:46 +00:00
checksum = "bff07008ec701e8028e2ceb8f83f0e4274ee62bd2dbdc4fefff2e9a91824081a"
dependencies = [
"generic-array",
"subtle",
]
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]]
name = "dbus"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b4a0c10ea61042b7555729ab0608727bbbb06ce709c11e6047cfa4e10f6d052d"
dependencies = [
"libc",
]
[[package]]
2020-06-19 14:51:26 +00:00
name = "derive_more"
2021-10-01 07:16:46 +00:00
version = "0.99.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-01 07:16:46 +00:00
checksum = "40eebddd2156ce1bb37b20bbe5151340a31828b1f2d22ba4141f3531710e38df"
dependencies = [
2021-04-10 11:23:17 +00:00
"convert_case",
2020-06-19 14:51:26 +00:00
"proc-macro2",
"quote",
2021-10-01 07:16:46 +00:00
"rustc_version 0.3.3",
2020-06-19 14:51:26 +00:00
"syn",
]
[[package]]
name = "digest"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066"
dependencies = [
"generic-array",
]
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-04-10 11:23:17 +00:00
version = "0.4.8"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-10 11:23:17 +00:00
checksum = "56899898ce76aaf4a0f24d914c97ea6ed976d42fec6ad33fcbb0a1103e07b2b0"
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"
2021-04-14 15:07:16 +00:00
[[package]]
name = "either"
version = "1.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457"
[[package]]
name = "encode_unicode"
version = "0.3.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f"
2020-04-21 20:41:28 +00:00
[[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
]
2020-04-21 21:31:47 +00:00
[[package]]
name = "flate2"
2021-10-01 07:16:46 +00:00
version = "1.0.22"
2020-04-21 21:31:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-01 07:16:46 +00:00
checksum = "1e6988e897c1c9c485f43b47a529cef42fde0547f9d8d41a7062518f1d8fc53f"
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"
2021-04-10 11:23:17 +00:00
version = "1.0.1"
2020-11-28 11:56:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-10 11:23:17 +00:00
checksum = "5fc25a87fa4fd2094bffb06925852034d90a17f0d1e05197d4956d3555752191"
2020-11-28 11:56:23 +00:00
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-10-01 07:16:46 +00:00
version = "0.3.17"
2020-11-28 15:42:26 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-01 07:16:46 +00:00
checksum = "a12aa0eb539080d55c3f2d45a67c3b58b6b0773c1a3ca2dfec66d58c97fd66ca"
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-10-01 07:16:46 +00:00
version = "0.3.17"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-01 07:16:46 +00:00
checksum = "5da6ba8c3bb3c165d3c7319fc1cc8304facf1fb8db99c5de877183c08a273888"
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-10-01 07:16:46 +00:00
version = "0.3.17"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-01 07:16:46 +00:00
checksum = "88d1c26957f23603395cd326b0ffe64124b818f4449552f960d815cfba83a53d"
2020-04-21 20:41:28 +00:00
2020-11-28 15:42:26 +00:00
[[package]]
name = "futures-executor"
2021-10-01 07:16:46 +00:00
version = "0.3.17"
2020-11-28 15:42:26 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-01 07:16:46 +00:00
checksum = "45025be030969d763025784f7f355043dc6bc74093e4ecc5000ca4dc50d8745c"
2020-11-28 15:42:26 +00:00
dependencies = [
"futures-core",
"futures-task",
"futures-util",
]
[[package]]
name = "futures-io"
2021-10-01 07:16:46 +00:00
version = "0.3.17"
2020-11-28 15:42:26 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-01 07:16:46 +00:00
checksum = "522de2a0fe3e380f1bc577ba0474108faf3f6b18321dbf60b3b9c39a75073377"
2020-11-28 15:42:26 +00:00
2020-04-21 20:41:28 +00:00
[[package]]
name = "futures-macro"
2021-10-01 07:16:46 +00:00
version = "0.3.17"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-01 07:16:46 +00:00
checksum = "18e4a4b95cea4b4ccbcf1c5675ca7c4ee4e9e75eb79944d07defde18068f79bb"
2020-04-21 20:41:28 +00:00
dependencies = [
2021-05-13 09:08:35 +00:00
"autocfg",
2020-04-21 20:41:28 +00:00
"proc-macro-hack",
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "futures-sink"
2021-10-01 07:16:46 +00:00
version = "0.3.17"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-01 07:16:46 +00:00
checksum = "36ea153c13024fe480590b3e3d4cad89a0cfacecc24577b68f86c6ced9c2bc11"
2020-04-21 20:41:28 +00:00
[[package]]
name = "futures-task"
2021-10-01 07:16:46 +00:00
version = "0.3.17"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-01 07:16:46 +00:00
checksum = "1d3d00f4eddb73e498a54394f228cd55853bdf059259e8e7bc6e69d408892e99"
2020-04-21 20:41:28 +00:00
[[package]]
name = "futures-util"
2021-10-01 07:16:46 +00:00
version = "0.3.17"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-01 07:16:46 +00:00
checksum = "36568465210a3a6ee45e1f165136d68671471a501e632e9a98d96872222b5481"
2020-04-21 20:41:28 +00:00
dependencies = [
2021-05-13 09:08:35 +00:00
"autocfg",
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 = "generic-array"
version = "0.14.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "501466ecc8a30d1d3b7fc9229b122b2ce8ed6e9d9223f1138d4babb253e51817"
dependencies = [
"typenum",
"version_check",
]
2020-04-21 20:41:28 +00:00
[[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 0.9.0+wasi-snapshot-preview1",
]
[[package]]
name = "getrandom"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7fcd999463524c52659517fe2cea98493cfe485d10565e7b0fb07dbba7ad2753"
dependencies = [
"cfg-if",
"libc",
"wasi 0.10.2+wasi-snapshot-preview1",
2020-06-19 14:51:26 +00:00
]
[[package]]
name = "globset"
2021-10-01 07:16:46 +00:00
version = "0.4.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-01 07:16:46 +00:00
checksum = "10463d9ff00a2a068db14231982f5132edebad0d7660cd956a1c30292dbcbfbd"
dependencies = [
"aho-corasick",
"bstr",
"fnv",
"log",
"regex",
]
2020-04-21 20:41:28 +00:00
[[package]]
name = "h2"
2021-10-01 07:16:46 +00:00
version = "0.3.6"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-01 07:16:46 +00:00
checksum = "6c06815895acec637cd6ed6e9662c935b866d20a106f8361892893a7d9234964"
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-04-21 20:41:28 +00:00
]
2021-05-30 11:38:52 +00:00
[[package]]
name = "hashbrown"
version = "0.11.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e"
2020-04-21 21:03:30 +00:00
[[package]]
name = "heck"
2021-06-11 13:21:52 +00:00
version = "0.3.3"
2020-04-21 21:03:30 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-11 13:21:52 +00:00
checksum = "6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c"
2020-04-21 21:03:30 +00:00
dependencies = [
"unicode-segmentation",
]
2020-04-21 20:41:28 +00:00
[[package]]
name = "hermit-abi"
2021-10-01 07:16:46 +00:00
version = "0.1.19"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-01 07:16:46 +00:00
checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
2020-04-21 20:41:28 +00:00
dependencies = [
"libc",
]
[[package]]
name = "hkdf"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "51ab2f639c231793c5f6114bdb9bbe50a7dbbfcd7c7c6bd8475dec2d991e964f"
dependencies = [
"digest",
"hmac",
]
[[package]]
name = "hmac"
version = "0.10.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c1441c6b1e930e2817404b5046f1f989899143a12bf92de603b69f4e0aee1e15"
dependencies = [
"crypto-mac",
"digest",
]
2020-04-21 20:41:28 +00:00
[[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-10-01 07:16:46 +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-10-01 07:16:46 +00:00
checksum = "1323096b05d41827dadeaee54c9981958c0f94e670bc94ed80037d1a7b8b186b"
2020-04-21 20:41:28 +00:00
dependencies = [
"bytes",
"fnv",
"itoa",
]
[[package]]
name = "http-body"
2021-10-01 07:16:46 +00:00
version = "0.4.3"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-01 07:16:46 +00:00
checksum = "399c583b2979440c60be0821a6199eca73bc3c8dcd9d070d75ac726e2c6186e5"
2020-04-21 20:41:28 +00:00
dependencies = [
"bytes",
"http",
2021-04-10 11:23:17 +00:00
"pin-project-lite",
2020-04-21 20:41:28 +00:00
]
[[package]]
name = "httparse"
2021-10-01 07:16:46 +00:00
version = "1.5.1"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-01 07:16:46 +00:00
checksum = "acd94fdbe1d4ff688b67b04eee2e17bd50995534a61539e45adfefb45e5e5503"
2020-04-21 20:41:28 +00:00
2020-11-01 10:55:44 +00:00
[[package]]
name = "httpdate"
version = "1.0.1"
2020-11-01 10:55:44 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6456b8a6c8f33fee7d958fcd1b60d55b11940a79e63ae87013e6d22e26034440"
2020-11-01 10:55:44 +00:00
2020-04-21 20:41:28 +00:00
[[package]]
name = "hyper"
2021-10-01 07:16:46 +00:00
version = "0.14.13"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-01 07:16:46 +00:00
checksum = "15d1cfb9e4f68655fa04c01f59edb405b6074a0f7118ea881e5026e4a1cd8593"
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-06-11 13:21:52 +00:00
"pin-project-lite",
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"
version = "0.2.3"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "418a0a6fab821475f634efe3ccc45c013f742efe03d853e8d3355d5cb850ecf8"
2020-04-21 20:41:28 +00:00
dependencies = [
"matches",
"unicode-bidi",
"unicode-normalization",
]
[[package]]
name = "ignore"
2021-07-08 17:42:14 +00:00
version = "0.4.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-08 17:42:14 +00:00
checksum = "713f1b139373f96a2e0ce3ac931cd01ee973c3c5dd7c40c0c2efe96ad2b6751d"
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-10-01 07:16:46 +00:00
version = "1.7.0"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-01 07:16:46 +00:00
checksum = "bc633605454125dec4b66843673f01c7df2b89479b32e0ed634e43a91cff62a5"
2020-04-21 20:41:28 +00:00
dependencies = [
2020-06-19 14:51:26 +00:00
"autocfg",
2021-10-01 07:16:46 +00:00
"hashbrown",
2020-04-21 20:41:28 +00:00
]
[[package]]
name = "indicatif"
version = "0.16.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2d207dc617c7a380ab07ff572a6e52fa202a2a8f355860ac9c38e23f8196be1b"
dependencies = [
"console",
"lazy_static",
"number_prefix",
"regex",
]
2020-11-01 10:55:44 +00:00
[[package]]
name = "ipnet"
2021-07-08 17:42:14 +00:00
version = "2.3.1"
2020-11-01 10:55:44 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-08 17:42:14 +00:00
checksum = "68f2d64f2edebec4ce84ad108148e67e1064789bee435edc5b60ad398714a3a9"
2020-11-01 10:55:44 +00:00
2020-04-21 20:41:28 +00:00
[[package]]
name = "itoa"
2021-10-01 07:16:46 +00:00
version = "0.4.8"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-01 07:16:46 +00:00
checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4"
2020-04-21 20:41:28 +00:00
[[package]]
name = "js-sys"
2021-10-01 07:16:46 +00:00
version = "0.3.55"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-01 07:16:46 +00:00
checksum = "7cc9ffccd38c451a86bf13657df244e9c3f37493cce8e5e21e940963777acc84"
2020-04-21 20:41:28 +00:00
dependencies = [
"wasm-bindgen",
]
[[package]]
name = "keyring"
version = "0.10.1"
2021-06-02 10:06:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2bcd64f48199f69993c705fd2f76882e53969db93bc6345021bc8bb6462a9ffa"
dependencies = [
"byteorder",
"secret-service",
"security-framework",
"winapi",
]
2020-04-21 20:41:28 +00:00
[[package]]
name = "lazy_static"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
[[package]]
name = "libc"
2021-10-01 07:16:46 +00:00
version = "0.2.103"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-01 07:16:46 +00:00
checksum = "dd8f7255a17a627354f321ef0055d63b898c6fb27eff628af4d1b66b7331edf6"
2020-04-21 20:41:28 +00:00
[[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"
2021-05-04 08:47:23 +00:00
version = "0.10.1"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-04 08:47:23 +00:00
checksum = "a24f40fb03852d1cdd84330cddcaf98e9ec08a7b7768e952fad3b4cf048ec8fd"
2020-04-21 20:41:28 +00:00
dependencies = [
"log",
"phf",
"phf_codegen",
"string_cache",
"string_cache_codegen",
"tendril",
]
[[package]]
name = "matches"
2021-10-01 07:16:46 +00:00
version = "0.1.9"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-01 07:16:46 +00:00
checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f"
2020-04-21 20:41:28 +00:00
[[package]]
name = "memchr"
2021-10-01 07:16:46 +00:00
version = "2.4.1"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-01 07:16:46 +00:00
checksum = "308cc39be01b73d0d18f82a0e7b2a3df85245f84af96fdddc5d202d27e47b86a"
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"
2021-04-10 11:23:17 +00:00
version = "0.4.4"
2020-04-21 21:31:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-10 11:23:17 +00:00
checksum = "a92518e98c078586bc6c934028adcca4c92a53d6a958196de835170a01d84e4b"
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-07-08 17:42:14 +00:00
version = "0.7.13"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-08 17:42:14 +00:00
checksum = "8c2bdb6314ec10835cd3293dd268473a835c02b7b352e788be788b3c6ca6bb16"
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"
2021-04-10 11:23:17 +00:00
version = "0.3.7"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-10 11:23:17 +00:00
checksum = "b9f1c5b025cda876f66ef43a113f91ebc9f4ccef34843000e0adf6ebbab84e21"
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
]
[[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",
]
[[package]]
name = "num"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8b7a8e9be5e039e2ff869df49155f1c06bd01ade2117ec783e56ab0932b67a8f"
dependencies = [
"num-bigint",
"num-complex",
"num-integer",
"num-iter",
"num-rational",
"num-traits",
]
[[package]]
name = "num-bigint"
2021-10-01 07:16:46 +00:00
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-01 07:16:46 +00:00
checksum = "5f6f7833f2cbf2360a6cfd58cd41a53aa7a90bd4c202f5b1c7dd2ed73c57b2c3"
dependencies = [
"autocfg",
"num-integer",
"num-traits",
]
[[package]]
name = "num-complex"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "747d632c0c558b87dbabbe6a82f3b4ae03720d0646ac5b7b4dae89394be5f2c5"
dependencies = [
"num-traits",
]
[[package]]
name = "num-integer"
version = "0.1.44"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d2cc698a63b549a70bc047073d2949cce27cd1c7b0a4a862d08a8031bc2801db"
dependencies = [
"autocfg",
"num-traits",
]
[[package]]
name = "num-iter"
version = "0.1.42"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b2021c8337a54d21aca0d59a92577a029af9431cb59b909b03252b9c164fad59"
dependencies = [
"autocfg",
"num-integer",
"num-traits",
]
[[package]]
name = "num-rational"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "12ac428b1cb17fce6f731001d307d351ec70a6d202fc2e60f7d4c5e42d8f4f07"
dependencies = [
"autocfg",
"num-bigint",
"num-integer",
"num-traits",
]
[[package]]
name = "num-traits"
version = "0.2.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9a64b1ec5cda2586e284722486d802acf1f7dbdc623e2bfc57e65ca1cd099290"
dependencies = [
"autocfg",
]
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",
]
[[package]]
name = "number_prefix"
2021-05-11 07:46:23 +00:00
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-11 07:46:23 +00:00
checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3"
2020-05-03 19:48:24 +00:00
[[package]]
name = "once_cell"
2021-07-08 17:42:14 +00:00
version = "1.8.0"
2020-05-03 19:48:24 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-08 17:42:14 +00:00
checksum = "692fcb63b64b1758029e0a96ee63e049ce8c5948587f2f7208df04625e5f6b56"
2020-05-03 19:48:24 +00:00
[[package]]
name = "opaque-debug"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5"
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"
2021-10-01 07:16:46 +00:00
[[package]]
name = "pest"
version = "2.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "10f4872ae94d7b90ae48754df22fd42ad52ce740b8f370b03da4835417403e53"
dependencies = [
"ucd-trie",
]
2020-04-21 20:41:28 +00:00
[[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 0.7.3",
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-lite"
2021-10-01 07:16:46 +00:00
version = "0.2.7"
2020-11-28 11:56:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-01 07:16:46 +00:00
checksum = "8d31d11c69a6b52a174b42bdc0c30e5e11670f90788b2c471c31c1d17d449443"
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"
2021-10-01 07:16:46 +00:00
version = "1.0.29"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-01 07:16:46 +00:00
checksum = "b9f5105d4fdaab20335ca9565e106a5d9b82b6219b5ba735731124ac6711d23d"
2020-04-21 20:41:28 +00:00
dependencies = [
"unicode-xid",
]
2021-05-30 11:38:52 +00:00
[[package]]
name = "psl-types"
version = "2.0.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "66b398073e7cdd6f05934389a8f5961e3aabfa66675b6f440df4e2c793d51a4f"
2020-04-21 20:41:28 +00:00
[[package]]
name = "publicsuffix"
2021-04-10 11:23:17 +00:00
version = "1.5.6"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-10 11:23:17 +00:00
checksum = "95b4ce31ff0a27d93c8de1849cf58162283752f065a90d508f1105fa6c9a213f"
2020-04-21 20:41:28 +00:00
dependencies = [
2020-11-01 10:55:44 +00:00
"idna",
"url",
2020-04-21 20:41:28 +00:00
]
2021-05-30 11:38:52 +00:00
[[package]]
name = "publicsuffix"
2021-10-01 07:16:46 +00:00
version = "2.1.1"
2021-05-30 11:38:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-01 07:16:46 +00:00
checksum = "292972edad6bbecc137ab84c5e36421a4a6c979ea31d3cc73540dd04315b33e1"
2021-05-30 11:38:52 +00:00
dependencies = [
"byteorder",
2021-10-01 07:16:46 +00:00
"hashbrown",
2021-05-30 11:38:52 +00:00
"idna",
"psl-types",
]
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 = [
"getrandom 0.1.16",
2020-04-21 20:41:28 +00:00
"libc",
"rand_chacha 0.2.2",
"rand_core 0.5.1",
"rand_hc 0.2.0",
2020-04-21 20:41:28 +00:00
"rand_pcg",
]
[[package]]
name = "rand"
version = "0.8.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2e7573632e6454cf6b99d7aac4ccca54be06da05aca2ef7423d22d27d4d4bcd8"
dependencies = [
"libc",
"rand_chacha 0.3.1",
"rand_core 0.6.3",
"rand_hc 0.3.1",
]
2020-04-21 20:41:28 +00:00
[[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 0.5.1",
]
[[package]]
name = "rand_chacha"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
dependencies = [
"ppv-lite86",
"rand_core 0.6.3",
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 = [
"getrandom 0.1.16",
]
[[package]]
name = "rand_core"
version = "0.6.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d34f1408f55294453790c48b2f1ebbb1c5b4b7563eb1f418bcfcfdbb06ebb4e7"
dependencies = [
"getrandom 0.2.3",
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 = [
"rand_core 0.5.1",
]
[[package]]
name = "rand_hc"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d51e9f596de227fda2ea6c84607f5558e196eeaf43c986b724ba4fb8fdf497e7"
dependencies = [
"rand_core 0.6.3",
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 = [
"rand_core 0.5.1",
]
[[package]]
name = "redox_syscall"
version = "0.2.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8383f39639269cde97d255a32bdb68c047337295414940c68bdd30c2e13203ff"
dependencies = [
"bitflags",
2020-04-21 20:41:28 +00:00
]
[[package]]
name = "regex"
2021-05-07 07:18:29 +00:00
version = "1.5.4"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-07 07:18:29 +00:00
checksum = "d07a8629359eb56f1e2fb1652bb04212c072a87ba68546a04065d525673ac461"
2020-04-21 20:41:28 +00:00
dependencies = [
"aho-corasick",
"memchr",
"regex-syntax",
]
[[package]]
name = "regex-syntax"
2021-05-04 08:47:23 +00:00
version = "0.6.25"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-04 08:47:23 +00:00
checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b"
2020-04-21 20:41:28 +00:00
[[package]]
name = "remove_dir_all"
version = "0.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7"
dependencies = [
"winapi",
]
2020-04-21 20:41:28 +00:00
[[package]]
name = "reqwest"
2021-10-01 07:16:46 +00:00
version = "0.11.4"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-01 07:16:46 +00:00
checksum = "246e9f61b9bb77df069a947682be06e31ac43ea37862e244a69f177694ea6d22"
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",
2021-05-30 11:38:52 +00:00
"cookie 0.14.4",
"cookie_store 0.12.0",
2020-04-21 20:41:28 +00:00
"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-04-13 11:01:22 +00:00
"tokio-socks",
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",
]
2021-05-30 11:38:52 +00:00
[[package]]
name = "reqwest_cookie_store"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6a81253b4f49eba884e5b555d08617d2b59be9478fcb53875ded9825d957af4a"
dependencies = [
"bytes",
2021-10-01 07:16:46 +00:00
"cookie 0.15.1",
2021-05-30 11:38:52 +00:00
"cookie_store 0.14.1",
"reqwest",
"url",
]
[[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 = [
2021-10-01 07:16:46 +00:00
"semver 0.9.0",
]
[[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",
2020-11-01 10:55:44 +00:00
]
[[package]]
name = "rustls"
version = "0.19.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "35edb675feee39aec9c99fa5ff985081995a06d594114ae14cbe797ad7b7a6d7"
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 = "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.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b362b83898e0e69f38515b82ee15aa80636befe47c3b6d3d89a911e78fc228ce"
dependencies = [
"ring",
"untrusted",
]
[[package]]
name = "secret-service"
version = "1.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6d752040301c251d653aa740dec847e95767ce312cfc469bee85eb13cbf81d8a"
dependencies = [
"aes",
"block-modes",
"dbus",
"hkdf",
"lazy_static",
"num",
"rand 0.7.3",
"sha2",
]
[[package]]
name = "security-framework"
version = "0.4.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "64808902d7d99f78eaddd2b4e2509713babc3dc3c85ad6f4c447680f3c01e535"
dependencies = [
"bitflags",
"core-foundation",
"core-foundation-sys",
"libc",
"security-framework-sys",
]
[[package]]
name = "security-framework-sys"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "17bf11d99252f512695eb468de5516e5cf75455521e69dfe343f3b74e4748405"
dependencies = [
"core-foundation-sys",
"libc",
]
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 = [
2021-10-01 07:16:46 +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",
2020-11-01 10:55:44 +00:00
]
[[package]]
name = "semver-parser"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3"
2021-10-01 07:16:46 +00:00
[[package]]
name = "semver-parser"
version = "0.10.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "00b0bef5b7f9e0df16536d3961cfb6e84331c065b4066afb39768d0e319411f7"
dependencies = [
"pest",
]
2020-04-21 20:41:28 +00:00
[[package]]
name = "serde"
2021-10-01 07:16:46 +00:00
version = "1.0.130"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-01 07:16:46 +00:00
checksum = "f12d06de37cf59146fbdecab66aa99f9fe4f78722e3607577a5375d66bd0c913"
2020-04-21 20:41:28 +00:00
dependencies = [
"serde_derive",
]
[[package]]
name = "serde_derive"
2021-10-01 07:16:46 +00:00
version = "1.0.130"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-01 07:16:46 +00:00
checksum = "d7bc1a1ab1961464eae040d96713baa5a724a8152c1222492465b54322ec508b"
2020-04-21 20:41:28 +00:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "serde_json"
2021-10-01 07:16:46 +00:00
version = "1.0.68"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-01 07:16:46 +00:00
checksum = "0f690853975602e1bfe1ccbf50504d67174e3bcf340f23b5ea9992e0587a52d8"
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"
[[package]]
name = "sha2"
2021-10-01 07:16:46 +00:00
version = "0.9.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-01 07:16:46 +00:00
checksum = "b69f9a4c9740d74c5baa3fd2e547f9525fa8088a8a958e0ca2409a514e33f5fa"
dependencies = [
"block-buffer",
"cfg-if",
2021-05-07 07:18:29 +00:00
"cpufeatures",
"digest",
"opaque-debug",
]
[[package]]
name = "signal-hook-registry"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e51e73328dc4ac0c7ccbda3a494dfa03df1de2f46018127f60c693f2648455b0"
dependencies = [
"libc",
]
2020-04-21 20:41:28 +00:00
[[package]]
name = "siphasher"
2021-10-01 07:16:46 +00:00
version = "0.3.7"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-01 07:16:46 +00:00
checksum = "533494a8f9b724d33625ab53c6c4800f7cc445895924a8ef649222dcb76e938b"
2020-04-21 20:41:28 +00:00
[[package]]
name = "slab"
2021-10-01 07:16:46 +00:00
version = "0.4.4"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-01 07:16:46 +00:00
checksum = "c307a32c1c5c437f38c7fd45d753050587732ba8628319fbdf12a7e289ccc590"
2020-04-21 20:41:28 +00:00
[[package]]
name = "smallvec"
2021-10-01 07:16:46 +00:00
version = "1.7.0"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-01 07:16:46 +00:00
checksum = "1ecab6c735a6bb4139c0caafd0cc3635748bbb3acf4550e8138122099251f309"
2020-04-21 20:41:28 +00:00
[[package]]
name = "socket2"
2021-10-01 07:16:46 +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-10-01 07:16:46 +00:00
checksum = "5dc90fe6c7be1a323296982db1836d1ea9e47b6839496dde9a541bc496df3516"
2020-04-21 20:41:28 +00:00
dependencies = [
"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-04-10 11:23:17 +00:00
version = "0.2.17"
2020-11-01 10:55:44 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-10 11:23:17 +00:00
checksum = "e113fb6f3de07a243d434a56ec6f186dfd51cb08448239fe7bcae73f87ff28ff"
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",
2021-10-01 07:16:46 +00:00
"rustc_version 0.2.3",
2020-11-01 10:55:44 +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"
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-10-01 07:16:46 +00:00
version = "0.3.23"
2020-04-21 21:03:30 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-01 07:16:46 +00:00
checksum = "bf9d950ef167e25e0bdb073cf1d68e9ad2795ac826f2f3f59647817cf23c0bfa"
2020-04-21 21:03:30 +00:00
dependencies = [
"clap",
"lazy_static",
"structopt-derive",
]
[[package]]
name = "structopt-derive"
2021-10-01 07:16:46 +00:00
version = "0.4.16"
2020-04-21 21:03:30 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-01 07:16:46 +00:00
checksum = "134d838a2c9943ac3125cf6df165eda53493451b719f3255b2a26b85f772d0ba"
2020-04-21 21:03:30 +00:00
dependencies = [
"heck",
"proc-macro-error",
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "subtle"
2021-10-01 07:16:46 +00:00
version = "2.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-01 07:16:46 +00:00
checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601"
2020-04-21 20:41:28 +00:00
[[package]]
name = "syn"
2021-10-01 07:16:46 +00:00
version = "1.0.77"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-01 07:16:46 +00:00
checksum = "5239bc68e0fef57495900cfea4e8dc75596d9a319d7e16b1e0a440d24e6fe0a0"
2020-04-21 20:41:28 +00:00
dependencies = [
"proc-macro2",
"quote",
"unicode-xid",
]
[[package]]
name = "tempfile"
version = "3.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dac1c663cfc93810f88aed9b8941d48cabf856a1b111c29a40439018d870eb22"
dependencies = [
"cfg-if",
"libc",
"rand 0.8.4",
"redox_syscall",
"remove_dir_all",
"winapi",
]
2020-04-21 20:41:28 +00:00
[[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",
]
[[package]]
name = "terminal_size"
version = "0.1.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "633c1a546cee861a1a6d0dc69ebeca693bf4296661ba7852b9d21d159e0506df"
dependencies = [
"libc",
"winapi",
]
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"
2021-04-14 15:07:16 +00:00
[[package]]
name = "thiserror"
2021-10-01 07:16:46 +00:00
version = "1.0.29"
2021-04-14 15:07:16 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-01 07:16:46 +00:00
checksum = "602eca064b2d83369e2b2f34b09c70b605402801927c65c11071ac911d299b88"
2021-04-14 15:07:16 +00:00
dependencies = [
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
2021-10-01 07:16:46 +00:00
version = "1.0.29"
2021-04-14 15:07:16 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-01 07:16:46 +00:00
checksum = "bad553cc2c78e8de258400763a647e80e6d1b31ee237275d756f6836d204494c"
2021-04-14 15:07:16 +00:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
2020-04-21 20:41:28 +00:00
[[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-07-08 17:42:14 +00:00
version = "0.2.27"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-08 17:42:14 +00:00
checksum = "4752a97f8eebd6854ff91f1c1824cd6160626ac4bd44287f7f4ea2035a02a242"
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"
2021-07-08 17:42:14 +00:00
version = "0.1.2"
2020-11-01 10:55:44 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-08 17:42:14 +00:00
checksum = "fd3c141a1b43194f3f56a1411225df8646c55781d5f26db825b3d98507eb482f"
2020-11-01 10:55:44 +00:00
dependencies = [
"proc-macro-hack",
"proc-macro2",
"quote",
"standback",
"syn",
]
2020-06-19 14:51:26 +00:00
[[package]]
name = "tinyvec"
2021-10-01 07:16:46 +00:00
version = "1.5.0"
2020-06-19 14:51:26 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-01 07:16:46 +00:00
checksum = "f83b2a3d4d9091d0abd7eba4dc2710b1718583bd4d8992e2190720ea38f391f7"
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-10-01 07:16:46 +00:00
version = "1.12.0"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-01 07:16:46 +00:00
checksum = "c2c2416fdedca8443ae44b4527de1ea633af61d8f7169ffa6e72c5b53d24efcc"
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",
"once_cell",
2021-01-20 09:26:38 +00:00
"pin-project-lite",
"signal-hook-registry",
2020-04-21 20:41:28 +00:00
"tokio-macros",
2021-07-08 17:42:14 +00:00
"winapi",
2020-04-21 20:41:28 +00:00
]
[[package]]
name = "tokio-macros"
2021-10-01 07:16:46 +00:00
version = "1.4.1"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-01 07:16:46 +00:00
checksum = "154794c8f499c2619acd19e839294703e9e32e7630ef5f46ea80d4ef0fbee5eb"
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
]
2021-04-13 11:01:22 +00:00
[[package]]
name = "tokio-socks"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "51165dfa029d2a65969413a6cc96f354b86b464498702f174a4efa13608fd8c0"
dependencies = [
"either",
"futures-util",
"thiserror",
"tokio",
]
2020-04-21 20:41:28 +00:00
[[package]]
name = "tokio-util"
2021-10-01 07:16:46 +00:00
version = "0.6.8"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-01 07:16:46 +00:00
checksum = "08d3725d3efa29485e87311c5b699de63cde14b00ed4d256b8318aa30ca452cd"
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 = "toml"
version = "0.5.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a31142970826733df8241ef35dc040ef98c679ab14d7c3e54d827099b3acecaa"
dependencies = [
"serde",
]
2020-04-21 20:41:28 +00:00
[[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-10-01 07:16:46 +00:00
version = "0.1.28"
2020-07-15 20:36:39 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-01 07:16:46 +00:00
checksum = "84f96e095c0c82419687c20ddf5cb3eadb61f4e1405923c9dc8e53a1adacbda8"
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"
2021-10-01 07:16:46 +00:00
version = "0.1.20"
2020-07-15 20:36:39 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-01 07:16:46 +00:00
checksum = "46125608c26121c81b0c6d693eab5a420e416da7e43c426d2e8f7df8da8a3acf"
2020-07-15 20:36:39 +00:00
dependencies = [
"lazy_static",
]
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 = "typenum"
2021-10-01 07:16:46 +00:00
version = "1.14.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-01 07:16:46 +00:00
checksum = "b63708a265f51345575b27fe43f9500ad611579e764c79edbc2037b1121959ec"
[[package]]
name = "ucd-trie"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "56dee185309b50d1f11bfedef0fe6d036842e3fb77413abef29f8f8d1c5d4c1c"
2020-04-21 20:41:28 +00:00
[[package]]
name = "unicode-bidi"
2021-10-01 07:16:46 +00:00
version = "0.3.6"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-01 07:16:46 +00:00
checksum = "246f4c42e67e7a4e3c6106ff716a5d067d4132a642840b242e357e468a2a0085"
2020-04-21 20:41:28 +00:00
[[package]]
name = "unicode-normalization"
2021-06-11 13:21:52 +00:00
version = "0.1.19"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-11 13:21:52 +00:00
checksum = "d54590932941a9e9266f0832deed84ebe1bf2e4c9e4a3554d393d18f5e854bf9"
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"
2021-10-01 07:16:46 +00:00
version = "1.8.0"
2020-04-21 21:03:30 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-01 07:16:46 +00:00
checksum = "8895849a949e7845e06bd6dc1aa51731a103c42707010a5b591c0038fb73385b"
2020-04-21 21:03:30 +00:00
2020-04-21 20:41:28 +00:00
[[package]]
name = "unicode-width"
2021-10-01 07:16:46 +00:00
version = "0.1.9"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-01 07:16:46 +00:00
checksum = "3ed742d4ea2bd1176e236172c8429aaf54486e7ac098db29ffe6529e0ce50973"
2020-04-21 20:41:28 +00:00
[[package]]
name = "unicode-xid"
2021-05-04 08:47:23 +00:00
version = "0.2.2"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-04 08:47:23 +00:00
checksum = "8ccb82d61f80a663efe1f787a51b16b5a51e3314d6ac365b08639f52387b33f3"
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"
2021-05-11 07:46:23 +00:00
version = "2.2.2"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-11 07:46:23 +00:00
checksum = "a507c383b2d33b5fc35d1861e77e6b383d158b2da5e14fe51b83dfedf6fd578c"
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.6"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
2020-04-21 20:41:28 +00:00
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"
2021-04-10 11:23:17 +00:00
version = "0.9.3"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-10 11:23:17 +00:00
checksum = "5fecdca9a5291cc2b8dcf7dc02453fee791a280f3743cb0905f8822ae463b3fe"
2020-04-21 20:41:28 +00:00
[[package]]
name = "walkdir"
2021-04-10 11:23:17 +00:00
version = "2.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-10 11:23:17 +00:00
checksum = "808cf2735cd4b6866113f648b791c6adc5714537bc222d9347bb203386ffda56"
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"
[[package]]
name = "wasi"
version = "0.10.2+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fd6fbd9a79829dd1ad0cc20627bf1ed606756a7f77edff7b66b7064f9cb327c6"
2020-04-21 20:41:28 +00:00
[[package]]
name = "wasm-bindgen"
2021-10-01 07:16:46 +00:00
version = "0.2.78"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-01 07:16:46 +00:00
checksum = "632f73e236b219150ea279196e54e610f5dbafa5d61786303d4da54f84e47fce"
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-10-01 07:16:46 +00:00
version = "0.2.78"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-01 07:16:46 +00:00
checksum = "a317bf8f9fba2476b4b2c85ef4c4af8ff39c3c7f0cdfeed4f82c34a880aa837b"
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-10-01 07:16:46 +00:00
version = "0.4.28"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-01 07:16:46 +00:00
checksum = "8e8d7523cb1f2a4c96c1317ca690031b714a51cc14e05f712446691f413f5d39"
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-10-01 07:16:46 +00:00
version = "0.2.78"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-01 07:16:46 +00:00
checksum = "d56146e7c495528bf6587663bea13a8eb588d39b36b679d83972e1a2dbbdacf9"
2020-04-21 20:41:28 +00:00
dependencies = [
"quote",
"wasm-bindgen-macro-support",
]
[[package]]
name = "wasm-bindgen-macro-support"
2021-10-01 07:16:46 +00:00
version = "0.2.78"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-01 07:16:46 +00:00
checksum = "7803e0eea25835f8abdc585cd3021b3deb11543c6fe226dcd30b228857c5c5ab"
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-10-01 07:16:46 +00:00
version = "0.2.78"
2020-11-28 11:56:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-01 07:16:46 +00:00
checksum = "0237232789cf037d5480773fe568aac745bfe2afbc11a863e97901780a6b47cc"
2020-11-28 11:56:23 +00:00
2020-04-21 20:41:28 +00:00
[[package]]
name = "web-sys"
2021-10-01 07:16:46 +00:00
version = "0.3.55"
2020-04-21 20:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-01 07:16:46 +00:00
checksum = "38eb105f1c59d9eaa6b5cdc92b859d85b926e82cb2e0945cd0c9259faa6fe9fb"
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-04-10 11:23:17 +00:00
version = "0.21.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-10 11:23:17 +00:00
checksum = "aabe153544e473b775453675851ecc86863d2a81d786d741f6b76778f2a48940"
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
]