Files
topgrade/Cargo.lock

2276 lines
55 KiB
Plaintext
Raw Normal View History

2019-04-14 11:35:18 +03:00
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
2021-07-06 09:38:10 +03:00
version = 3
2018-11-07 14:31:44 +02:00
[[package]]
2021-07-06 09:38:10 +03:00
name = "adler"
version = "1.0.2"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-06 09:38:10 +03:00
checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
2018-11-07 14:31:44 +02:00
2020-02-29 20:15:28 +02:00
[[package]]
name = "ahash"
2021-01-07 10:03:20 +02:00
version = "0.4.7"
2020-02-29 20:15:28 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-07 10:03:20 +02:00
checksum = "739f4a8db6605981345c5654f3a85b056ce52f37a39d34da03f25bf2151ea16e"
2020-02-29 20:15:28 +02:00
2018-06-17 14:17:36 +03:00
[[package]]
name = "aho-corasick"
version = "0.7.18"
2018-06-17 14:17:36 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1e37cfd5e7657ada45f742d6e99ca5788580b5c529dc78faf11ece6dc702656f"
2018-06-17 14:17:36 +03:00
dependencies = [
2020-05-09 07:22:51 +03:00
"memchr",
2018-06-17 14:17:36 +03:00
]
2018-06-12 11:30:03 +03:00
[[package]]
name = "ansi_term"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-09 07:22:51 +03:00
checksum = "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b"
2018-06-12 11:30:03 +03:00
dependencies = [
2021-01-07 10:03:20 +02:00
"winapi",
2018-06-12 11:30:03 +03:00
]
[[package]]
name = "anyhow"
2021-07-06 09:38:10 +03:00
version = "1.0.41"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-06 09:38:10 +03:00
checksum = "15af2628f6890fe2609a3b91bef4c83450512802e59489f9c1cb1fa5df064a61"
2019-06-02 09:08:47 +03:00
[[package]]
2019-08-13 14:27:41 +03:00
name = "arrayref"
2020-02-10 22:17:59 +02:00
version = "0.3.6"
2019-06-02 09:08:47 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-09 07:22:51 +03:00
checksum = "a4c527152e37cf757a3f78aae5a06fbeefdb07ccc535c980a3208ee3060dd544"
2019-06-02 09:08:47 +03:00
2018-11-07 14:31:44 +02:00
[[package]]
name = "arrayvec"
2020-11-02 14:00:04 +02:00
version = "0.5.2"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-02 14:00:04 +02:00
checksum = "23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b"
2018-11-07 14:31:44 +02:00
[[package]]
name = "async-io"
2021-07-06 09:38:10 +03:00
version = "1.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-06 09:38:10 +03:00
checksum = "a811e6a479f2439f0c04038796b5cfb3d2ad56c230e0f2d3f7b04d68cfee607b"
dependencies = [
"concurrent-queue",
"futures-lite",
"libc",
"log",
"once_cell",
"parking",
"polling",
"slab",
2021-07-06 09:38:10 +03:00
"socket2",
"waker-fn",
"winapi",
]
2018-06-12 11:30:03 +03:00
[[package]]
name = "atty"
2020-02-10 22:17:59 +02:00
version = "0.2.14"
2018-06-12 11:30:03 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-09 07:22:51 +03:00
checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
2018-06-12 11:30:03 +03:00
dependencies = [
2020-05-09 07:22:51 +03:00
"hermit-abi",
"libc",
2021-01-07 10:03:20 +02:00
"winapi",
2018-06-12 11:30:03 +03:00
]
2020-02-10 22:17:59 +02:00
[[package]]
name = "autocfg"
2020-11-02 14:00:04 +02:00
version = "1.0.1"
2020-02-10 22:17:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-02 14:00:04 +02:00
checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a"
2020-02-10 22:17:59 +02:00
2020-06-11 17:39:06 +03:00
[[package]]
name = "base64"
2020-12-07 20:51:41 +02:00
version = "0.13.0"
2020-06-11 17:39:06 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-07 20:51:41 +02:00
checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd"
2020-06-18 22:25:27 +03:00
[[package]]
name = "bitflags"
version = "0.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4efd02e230a02e18f92fc2735f44597385ed02ad8f831e7c1c1156ee5e1ab3a5"
2020-06-11 17:39:06 +03:00
2018-06-12 11:30:03 +03:00
[[package]]
name = "bitflags"
2019-10-26 21:36:50 +03:00
version = "1.2.1"
2018-06-12 11:30:03 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-09 07:22:51 +03:00
checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693"
2018-06-12 11:30:03 +03:00
2019-06-02 09:08:47 +03:00
[[package]]
2019-08-13 14:27:41 +03:00
name = "blake2b_simd"
2020-12-07 20:51:41 +02:00
version = "0.5.11"
2019-06-02 09:08:47 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-07 20:51:41 +02:00
checksum = "afa748e348ad3be8263be728124b24a24f268266f6f5d58af9d75f6a40b5c587"
2019-06-02 09:08:47 +03:00
dependencies = [
2020-05-09 07:22:51 +03:00
"arrayref",
"arrayvec",
"constant_time_eq",
2019-06-02 09:08:47 +03:00
]
2020-01-03 10:26:21 +02:00
[[package]]
name = "block"
version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-09 07:22:51 +03:00
checksum = "0d8c1fef690941d3e7788d328517591fecc684c084084702d6ff1641e993699a"
[[package]]
name = "bumpalo"
2021-07-06 09:38:10 +03:00
version = "3.7.0"
2020-05-09 07:22:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-06 09:38:10 +03:00
checksum = "9c59e7af012c713f529e7a3ee57ce9b31ddd858d4b512923602f74608b009631"
2020-01-03 10:26:21 +02:00
2018-11-07 14:31:44 +02:00
[[package]]
name = "byteorder"
2021-07-06 09:38:10 +03:00
version = "1.4.3"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-06 09:38:10 +03:00
checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
2018-11-07 14:31:44 +02:00
[[package]]
2020-05-09 07:22:51 +03:00
name = "bytes"
version = "1.0.1"
2019-07-16 08:56:26 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b700ce4376041dcd0a327fd0097c41095743c4c8af8887265942faf1100bd040"
[[package]]
name = "cache-padded"
version = "1.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "631ae5198c9be5e753e5cc215e1bd73c2b466a3565173db433f52bb9d3e66dba"
2018-05-29 23:48:30 +03:00
[[package]]
name = "cc"
2021-07-06 09:38:10 +03:00
version = "1.0.68"
2018-05-29 23:48:30 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-06 09:38:10 +03:00
checksum = "4a72c244c1ff497a746a7e1fb3d14bd08420ecda70c8f25c7112f2781652d787"
2018-05-29 23:48:30 +03:00
[[package]]
name = "cfg-if"
2019-10-03 08:13:47 +03:00
version = "0.1.10"
2018-05-29 23:48:30 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-09 07:22:51 +03:00
checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
2018-05-29 23:48:30 +03:00
2020-11-02 14:00:04 +02:00
[[package]]
name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
2019-05-21 16:40:00 +03:00
[[package]]
name = "chrono"
2020-11-02 14:00:04 +02:00
version = "0.4.19"
2019-05-21 16:40:00 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-02 14:00:04 +02:00
checksum = "670ad68c9088c2a963aaa298cb369688cf3f9465ce5e2d4ca10e6e0098a1ce73"
2019-05-21 16:40:00 +03:00
dependencies = [
2020-11-02 14:00:04 +02:00
"libc",
2020-05-09 07:22:51 +03:00
"num-integer",
"num-traits",
"time",
2021-01-07 10:03:20 +02:00
"winapi",
2019-05-21 16:40:00 +03:00
]
2018-06-12 11:30:03 +03:00
[[package]]
name = "clap"
2020-11-02 14:00:04 +02:00
version = "2.33.3"
2018-06-12 11:30:03 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-02 14:00:04 +02:00
checksum = "37e58ac78573c40708d45522f0d80fa2f01cc4f9b4e2bf749807255454312002"
2018-06-12 11:30:03 +03:00
dependencies = [
2020-05-09 07:22:51 +03:00
"ansi_term",
"atty",
2020-06-18 22:25:27 +03:00
"bitflags 1.2.1",
2020-05-09 07:22:51 +03:00
"strsim",
"textwrap",
"unicode-width",
"vec_map",
2018-06-12 11:30:03 +03:00
]
[[package]]
name = "concurrent-queue"
version = "1.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "30ed07550be01594c6026cff2a1d7fe9c8f683caa798e12b68694ac9e88286a3"
dependencies = [
"cache-padded",
]
[[package]]
name = "console"
version = "0.14.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3993e6445baa160675931ec041a5e03ca84b9c6e32a056150d3aa2bdda0a1f45"
2020-06-05 15:28:43 +03:00
dependencies = [
"encode_unicode",
"lazy_static",
"libc",
"regex",
2020-06-11 17:39:06 +03:00
"terminal_size",
2020-06-05 15:28:43 +03:00
"unicode-width",
2021-01-07 10:03:20 +02:00
"winapi",
2020-12-07 20:51:41 +02:00
]
2019-06-02 09:08:47 +03:00
[[package]]
name = "constant_time_eq"
2020-02-10 22:17:59 +02:00
version = "0.1.5"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-09 07:22:51 +03:00
checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc"
2020-02-13 15:38:28 +02:00
2019-05-12 10:20:40 +03:00
[[package]]
name = "core-foundation"
2020-12-07 20:51:41 +02:00
version = "0.9.1"
2019-05-12 10:20:40 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-07 20:51:41 +02:00
checksum = "0a89e2ae426ea83155dccf10c0fa6b1463ef6d5fcb44cee0b224a408fa640a62"
2019-05-12 10:20:40 +03:00
dependencies = [
2020-05-09 07:22:51 +03:00
"core-foundation-sys",
"libc",
2019-05-12 10:20:40 +03:00
]
[[package]]
name = "core-foundation-sys"
2020-12-07 20:51:41 +02:00
version = "0.8.2"
2019-05-12 10:20:40 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-07 20:51:41 +02:00
checksum = "ea221b5284a47e40033bf9b66f35f984ec0ea2931eb03505246cd27a963f981b"
2019-05-12 10:20:40 +03:00
[[package]]
name = "crc32fast"
2020-11-02 14:00:04 +02:00
version = "1.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-02 14:00:04 +02:00
checksum = "81156fece84ab6a9f2afdb109ce3ae577e42b1228441eded99bd77f627953b1a"
dependencies = [
2020-11-02 14:00:04 +02:00
"cfg-if 1.0.0",
2020-02-13 15:38:28 +02:00
]
[[package]]
2020-05-09 07:22:51 +03:00
name = "crossbeam-utils"
2021-07-06 09:38:10 +03:00
version = "0.8.5"
2020-02-13 15:38:28 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-06 09:38:10 +03:00
checksum = "d82cfc11ce7f2c3faef78d8a684447b40d503d9681acebed6cb728d45940c4db"
2020-02-13 15:38:28 +02:00
dependencies = [
2020-12-07 20:51:41 +02:00
"cfg-if 1.0.0",
2020-05-09 07:22:51 +03:00
"lazy_static",
2020-02-13 15:38:28 +02:00
]
2020-01-03 10:26:21 +02:00
[[package]]
name = "derivative"
version = "2.2.0"
2020-01-03 10:26:21 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fcc3dd5e9e9c0b295d6e1e4d811fb6f157d5ffd784b8d202fc62eac8035a770b"
2020-01-03 10:26:21 +02:00
dependencies = [
"proc-macro2",
"quote 1.0.9",
2021-07-06 09:38:10 +03:00
"syn 1.0.73",
2020-01-03 10:26:21 +02:00
]
[[package]]
name = "directories"
version = "3.0.2"
2019-06-02 09:08:47 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e69600ff1703123957937708eb27f7a564e48885c537782722ed0ba3189ce1d7"
2019-06-02 09:08:47 +03:00
dependencies = [
2020-05-09 07:22:51 +03:00
"dirs-sys",
2019-06-02 09:08:47 +03:00
]
2020-01-03 10:26:21 +02:00
[[package]]
name = "dirs"
version = "1.0.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-09 07:22:51 +03:00
checksum = "3fd78930633bd1c6e35c4b42b1df7b0cbc6bc191146e512bb3bedf243fcc3901"
2020-01-03 10:26:21 +02:00
dependencies = [
2020-05-09 07:22:51 +03:00
"libc",
"redox_users 0.3.5",
2021-01-07 10:03:20 +02:00
"winapi",
2020-01-03 10:26:21 +02:00
]
2020-01-05 21:55:05 +02:00
[[package]]
2021-01-07 10:03:20 +02:00
name = "dirs-next"
version = "2.0.0"
2020-01-05 21:55:05 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-07 10:03:20 +02:00
checksum = "b98cf8ebf19c3d1b223e151f99a4f9f0690dca41414773390fc824184ac833e1"
2020-01-05 21:55:05 +02:00
dependencies = [
2021-01-07 10:03:20 +02:00
"cfg-if 1.0.0",
"dirs-sys-next",
2020-01-05 21:55:05 +02:00
]
2019-06-02 09:08:47 +03:00
[[package]]
name = "dirs-sys"
version = "0.3.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "03d86534ed367a67548dc68113a0f5db55432fdfbb6e6f9d77704397d95d5780"
dependencies = [
2020-05-09 07:22:51 +03:00
"libc",
"redox_users 0.4.0",
2021-01-07 10:03:20 +02:00
"winapi",
]
[[package]]
name = "dirs-sys-next"
version = "0.1.2"
2021-01-07 10:03:20 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d"
2021-01-07 10:03:20 +02:00
dependencies = [
"libc",
"redox_users 0.4.0",
2021-01-07 10:03:20 +02:00
"winapi",
]
2020-02-29 20:15:28 +02:00
[[package]]
name = "dlv-list"
2021-07-06 09:38:10 +03:00
version = "0.2.3"
2020-02-29 20:15:28 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-06 09:38:10 +03:00
checksum = "68df3f2b690c1b86e65ef7830956aededf3cb0a16f898f79b9a6f421a7b6211b"
2020-02-29 20:15:28 +02:00
dependencies = [
2021-07-06 09:38:10 +03:00
"rand",
2020-02-29 20:15:28 +02:00
]
[[package]]
name = "either"
2020-11-02 14:00:04 +02:00
version = "1.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-02 14:00:04 +02:00
checksum = "e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457"
2019-01-14 09:28:20 +02:00
[[package]]
name = "encode_unicode"
2019-08-26 21:06:15 +03:00
version = "0.3.6"
2019-01-14 09:28:20 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-09 07:22:51 +03:00
checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f"
2019-01-14 09:28:20 +02:00
2018-11-07 14:31:44 +02:00
[[package]]
name = "encoding_rs"
version = "0.8.28"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "80df024fbc5ac80f87dfef0d9f5209a252f2a497f7f42944cff24d8253cac065"
2018-11-07 14:31:44 +02:00
dependencies = [
2020-12-07 20:51:41 +02:00
"cfg-if 1.0.0",
2018-11-07 14:31:44 +02:00
]
[[package]]
name = "enumflags2"
version = "0.6.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "83c8d82922337cd23a15f88b70d8e4ef5f11da38dd7cdb55e84dd5de99695da0"
dependencies = [
"enumflags2_derive",
"serde",
]
[[package]]
name = "enumflags2_derive"
version = "0.6.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "946ee94e3dbf58fdd324f9ce245c7b238d46a66f00e86a020b71996349e46cce"
dependencies = [
"proc-macro2",
"quote 1.0.9",
2021-07-06 09:38:10 +03:00
"syn 1.0.73",
]
2018-06-17 14:17:36 +03:00
[[package]]
name = "env_logger"
2020-02-10 22:17:59 +02:00
version = "0.7.1"
2018-06-17 14:17:36 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-09 07:22:51 +03:00
checksum = "44533bbbb3bb3c1fa17d9f2e4e38bbbaf8396ba82193c4cb1b6445d711445d36"
2018-06-17 14:17:36 +03:00
dependencies = [
2020-05-09 07:22:51 +03:00
"atty",
"humantime",
"log",
"regex",
"termcolor",
2020-02-13 15:38:28 +02:00
]
[[package]]
name = "fastrand"
version = "1.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "77b705829d1e87f762c2df6da140b26af5839e1033aa84aa5f56bb688e4e1bdb"
dependencies = [
"instant",
]
2018-11-07 14:31:44 +02:00
[[package]]
name = "filetime"
version = "0.2.14"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1d34cfa13a63ae058bfa601fe9e313bbdb3746427c1459185464ce0fcf62e1e8"
2018-11-07 14:31:44 +02:00
dependencies = [
2020-12-07 20:51:41 +02:00
"cfg-if 1.0.0",
2020-05-09 07:22:51 +03:00
"libc",
2021-07-06 09:38:10 +03:00
"redox_syscall 0.2.9",
2021-01-07 10:03:20 +02:00
"winapi",
2018-11-07 14:31:44 +02:00
]
[[package]]
name = "flate2"
2021-07-06 09:38:10 +03:00
version = "1.0.20"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-06 09:38:10 +03:00
checksum = "cd3aec53de10fe96d7d8c565eb17f2c687bb5518a2ec453b5b1252964526abe0"
2018-11-07 14:31:44 +02:00
dependencies = [
2021-07-06 09:38:10 +03:00
"cfg-if 1.0.0",
2020-05-09 07:22:51 +03:00
"crc32fast",
"libc",
"miniz_oxide",
2018-11-07 14:31:44 +02:00
]
[[package]]
name = "fnv"
2020-06-11 17:39:06 +03:00
version = "1.0.7"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-06-11 17:39:06 +03:00
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
2018-11-07 14:31:44 +02:00
[[package]]
name = "foreign-types"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-09 07:22:51 +03:00
checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
2018-11-07 14:31:44 +02:00
dependencies = [
2020-05-09 07:22:51 +03:00
"foreign-types-shared",
2018-11-07 14:31:44 +02:00
]
[[package]]
name = "foreign-types-shared"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-09 07:22:51 +03:00
checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
2018-11-07 14:31:44 +02:00
2020-12-07 20:51:41 +02:00
[[package]]
name = "form_urlencoded"
2021-02-22 13:03:42 +02:00
version = "1.0.1"
2020-12-07 20:51:41 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-22 13:03:42 +02:00
checksum = "5fc25a87fa4fd2094bffb06925852034d90a17f0d1e05197d4956d3555752191"
2020-12-07 20:51:41 +02:00
dependencies = [
"matches",
2021-01-07 10:03:20 +02:00
"percent-encoding",
]
[[package]]
name = "futures"
2021-07-06 09:38:10 +03:00
version = "0.3.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-06 09:38:10 +03:00
checksum = "0e7e43a803dae2fa37c1f6a8fe121e1f7bf9548b4dfc0522a42f34145dadfc27"
dependencies = [
"futures-channel",
"futures-core",
"futures-executor",
"futures-io",
"futures-sink",
"futures-task",
"futures-util",
]
2020-05-09 07:22:51 +03:00
[[package]]
name = "futures-channel"
2021-07-06 09:38:10 +03:00
version = "0.3.15"
2020-05-09 07:22:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-06 09:38:10 +03:00
checksum = "e682a68b29a882df0545c143dc3646daefe80ba479bcdede94d5a703de2871e2"
2020-05-09 07:22:51 +03:00
dependencies = [
"futures-core",
"futures-sink",
2020-05-09 07:22:51 +03:00
]
2018-11-07 14:31:44 +02:00
[[package]]
2020-05-09 07:22:51 +03:00
name = "futures-core"
2021-07-06 09:38:10 +03:00
version = "0.3.15"
2020-02-10 22:17:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-06 09:38:10 +03:00
checksum = "0402f765d8a89a26043b889b26ce3c4679d268fa6bb22cd7c6aad98340e179d1"
2020-02-10 22:17:59 +02:00
[[package]]
name = "futures-executor"
2021-07-06 09:38:10 +03:00
version = "0.3.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-06 09:38:10 +03:00
checksum = "badaa6a909fac9e7236d0620a2f57f7664640c56575b71a7552fbd68deafab79"
dependencies = [
"futures-core",
"futures-task",
"futures-util",
]
2020-02-10 22:17:59 +02:00
[[package]]
2020-05-09 07:22:51 +03:00
name = "futures-io"
2021-07-06 09:38:10 +03:00
version = "0.3.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-06 09:38:10 +03:00
checksum = "acc499defb3b348f8d8f3f66415835a9131856ff7714bf10dadfc4ec4bdb29a1"
[[package]]
name = "futures-lite"
2021-07-06 09:38:10 +03:00
version = "1.12.0"
2020-05-09 07:22:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-06 09:38:10 +03:00
checksum = "7694489acd39452c77daa48516b894c153f192c3578d5a839b62c58099fcbf48"
dependencies = [
"fastrand",
"futures-core",
"futures-io",
"memchr",
"parking",
"pin-project-lite",
"waker-fn",
]
2020-05-09 07:22:51 +03:00
[[package]]
name = "futures-macro"
2021-07-06 09:38:10 +03:00
version = "0.3.15"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-06 09:38:10 +03:00
checksum = "a4c40298486cdf52cc00cd6d6987892ba502c7656a16a4192a9992b1ccedd121"
2018-11-07 14:31:44 +02:00
dependencies = [
2021-07-06 09:38:10 +03:00
"autocfg",
2020-05-09 07:22:51 +03:00
"proc-macro-hack",
"proc-macro2",
2021-02-13 06:38:13 +02:00
"quote 1.0.9",
2021-07-06 09:38:10 +03:00
"syn 1.0.73",
2020-05-09 07:22:51 +03:00
]
[[package]]
name = "futures-sink"
2021-07-06 09:38:10 +03:00
version = "0.3.15"
2020-05-09 07:22:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-06 09:38:10 +03:00
checksum = "a57bead0ceff0d6dde8f465ecd96c9338121bb7717d3e7b108059531870c4282"
2020-05-09 07:22:51 +03:00
[[package]]
name = "futures-task"
2021-07-06 09:38:10 +03:00
version = "0.3.15"
2020-05-09 07:22:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-06 09:38:10 +03:00
checksum = "8a16bef9fc1a4dddb5bee51c989e3fbba26569cbb0e31f5b303c184e3dd33dae"
2020-05-09 07:22:51 +03:00
[[package]]
name = "futures-util"
2021-07-06 09:38:10 +03:00
version = "0.3.15"
2020-05-09 07:22:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-06 09:38:10 +03:00
checksum = "feb5c238d27e2bf94ffdfd27b2c29e3df4a68c4193bb6427384259e2bf191967"
2020-05-09 07:22:51 +03:00
dependencies = [
2021-07-06 09:38:10 +03:00
"autocfg",
"futures-channel",
2020-05-09 07:22:51 +03:00
"futures-core",
"futures-io",
"futures-macro",
"futures-sink",
2020-05-09 07:22:51 +03:00
"futures-task",
"memchr",
"pin-project-lite",
2020-05-09 07:22:51 +03:00
"pin-utils",
"proc-macro-hack",
"proc-macro-nested",
"slab",
2018-11-07 14:31:44 +02:00
]
2019-07-16 08:56:26 +03:00
[[package]]
name = "getrandom"
2021-01-07 10:03:20 +02:00
version = "0.1.16"
2019-07-16 08:56:26 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-07 10:03:20 +02:00
checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce"
2019-07-16 08:56:26 +03:00
dependencies = [
2021-01-07 10:03:20 +02:00
"cfg-if 1.0.0",
2020-05-09 07:22:51 +03:00
"libc",
2020-11-02 14:00:04 +02:00
"wasi 0.9.0+wasi-snapshot-preview1",
2019-07-16 08:56:26 +03:00
]
[[package]]
name = "getrandom"
2021-07-06 09:38:10 +03:00
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-06 09:38:10 +03:00
checksum = "7fcd999463524c52659517fe2cea98493cfe485d10565e7b0fb07dbba7ad2753"
dependencies = [
"cfg-if 1.0.0",
"libc",
2021-07-06 09:38:10 +03:00
"wasi 0.10.0+wasi-snapshot-preview1",
]
[[package]]
name = "glob"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-09 07:22:51 +03:00
checksum = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574"
2018-11-07 14:31:44 +02:00
[[package]]
name = "h2"
2021-07-06 09:38:10 +03:00
version = "0.3.3"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-06 09:38:10 +03:00
checksum = "825343c4eef0b63f541f8903f395dc5beb362a979b5799a84062527ef1e37726"
2018-11-07 14:31:44 +02:00
dependencies = [
"bytes",
2020-05-09 07:22:51 +03:00
"fnv",
"futures-core",
"futures-sink",
"futures-util",
"http",
"indexmap",
"slab",
"tokio",
"tokio-util",
2020-07-14 08:20:01 +03:00
"tracing",
2018-11-07 14:31:44 +02:00
]
2020-02-29 20:15:28 +02:00
[[package]]
name = "hashbrown"
2021-01-07 10:03:20 +02:00
version = "0.9.1"
2020-02-29 20:15:28 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-07 10:03:20 +02:00
checksum = "d7afe4a420e3fe79967a00898cc1f4db7c8a49a9333a29f8a4bd76a253d5cd04"
2020-02-29 20:15:28 +02:00
dependencies = [
2020-05-09 07:22:51 +03:00
"ahash",
2020-02-29 20:15:28 +02:00
]
2021-07-06 09:38:10 +03:00
[[package]]
name = "hashbrown"
version = "0.11.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e"
2018-12-12 13:05:02 +02:00
[[package]]
name = "heck"
2021-07-06 09:38:10 +03:00
version = "0.3.3"
2018-12-12 13:05:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-06 09:38:10 +03:00
checksum = "6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c"
2018-12-12 13:05:02 +02:00
dependencies = [
2020-05-09 07:22:51 +03:00
"unicode-segmentation",
2019-11-04 06:42:20 +02:00
]
[[package]]
name = "hermit-abi"
2021-07-06 09:38:10 +03:00
version = "0.1.19"
2019-11-04 06:42:20 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-06 09:38:10 +03:00
checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
2019-11-04 06:42:20 +02:00
dependencies = [
2020-05-09 07:22:51 +03:00
"libc",
2018-12-12 13:05:02 +02:00
]
2018-11-07 14:31:44 +02:00
[[package]]
name = "http"
2021-07-06 09:38:10 +03:00
version = "0.2.4"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-06 09:38:10 +03:00
checksum = "527e8c9ac747e28542699a951517aa9a6945af506cd1f2e1b53a576c17b6cc11"
2018-11-07 14:31:44 +02:00
dependencies = [
"bytes",
2020-05-09 07:22:51 +03:00
"fnv",
"itoa",
2018-11-07 14:31:44 +02:00
]
2019-05-30 21:14:21 +03:00
[[package]]
name = "http-body"
2021-07-06 09:38:10 +03:00
version = "0.4.2"
2019-05-30 21:14:21 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-06 09:38:10 +03:00
checksum = "60daa14be0e0786db0f03a9e57cb404c9d756eed2b6c62b9ea98ec5743ec75a9"
2019-05-30 21:14:21 +03:00
dependencies = [
"bytes",
2020-05-09 07:22:51 +03:00
"http",
2021-07-06 09:38:10 +03:00
"pin-project-lite",
2019-05-30 21:14:21 +03:00
]
2018-11-07 14:31:44 +02:00
[[package]]
name = "httparse"
2021-07-06 09:38:10 +03:00
version = "1.4.1"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-06 09:38:10 +03:00
checksum = "f3a87b616e37e93c22fb19bcd386f02f3af5ea98a25670ad0fce773de23c5e68"
2018-11-07 14:31:44 +02:00
2020-11-02 14:00:04 +02:00
[[package]]
name = "httpdate"
2021-07-06 09:38:10 +03:00
version = "1.0.1"
2020-11-02 14:00:04 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-06 09:38:10 +03:00
checksum = "6456b8a6c8f33fee7d958fcd1b60d55b11940a79e63ae87013e6d22e26034440"
2020-11-02 14:00:04 +02:00
2018-06-17 14:17:36 +03:00
[[package]]
name = "humantime"
2019-09-10 22:54:20 +03:00
version = "1.3.0"
2018-06-17 14:17:36 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-09 07:22:51 +03:00
checksum = "df004cfca50ef23c36850aaaa59ad52cc70d0e90243c3c7737a4dd32dc7a3c4f"
2018-06-17 14:17:36 +03:00
dependencies = [
2020-05-09 07:22:51 +03:00
"quick-error",
2018-06-17 14:17:36 +03:00
]
2018-11-07 14:31:44 +02:00
[[package]]
name = "hyper"
2021-07-06 09:38:10 +03:00
version = "0.14.9"
2020-05-09 07:22:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-06 09:38:10 +03:00
checksum = "07d6baa1b441335f3ce5098ac421fb6547c46dda735ca1bc6d0153c838f9dd83"
2020-05-09 07:22:51 +03:00
dependencies = [
"bytes",
2020-05-09 07:22:51 +03:00
"futures-channel",
"futures-core",
"futures-util",
"h2",
"http",
"http-body",
"httparse",
2020-11-02 14:00:04 +02:00
"httpdate",
2020-05-09 07:22:51 +03:00
"itoa",
2021-07-06 09:38:10 +03:00
"pin-project-lite",
"socket2",
2020-05-09 07:22:51 +03:00
"tokio",
"tower-service",
2020-07-14 08:20:01 +03:00
"tracing",
2020-05-09 07:22:51 +03:00
"want",
2018-11-07 14:31:44 +02:00
]
2020-02-13 15:38:28 +02:00
[[package]]
2020-05-09 07:22:51 +03:00
name = "hyper-tls"
2021-01-07 10:03:20 +02:00
version = "0.5.0"
2020-02-13 15:38:28 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-07 10:03:20 +02:00
checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905"
2020-02-13 15:38:28 +02:00
dependencies = [
"bytes",
2020-05-09 07:22:51 +03:00
"hyper",
"native-tls",
"tokio",
2021-01-07 10:03:20 +02:00
"tokio-native-tls",
2018-11-07 14:31:44 +02:00
]
2019-09-04 21:07:43 +03:00
[[package]]
name = "idna"
2021-07-06 09:38:10 +03:00
version = "0.2.3"
2019-09-04 21:07:43 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-06 09:38:10 +03:00
checksum = "418a0a6fab821475f634efe3ccc45c013f742efe03d853e8d3355d5cb850ecf8"
2019-09-04 21:07:43 +03:00
dependencies = [
2020-05-09 07:22:51 +03:00
"matches",
"unicode-bidi",
"unicode-normalization",
2019-09-04 21:07:43 +03:00
]
2018-11-07 14:31:44 +02:00
[[package]]
name = "indexmap"
2021-07-06 09:38:10 +03:00
version = "1.7.0"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-06 09:38:10 +03:00
checksum = "bc633605454125dec4b66843673f01c7df2b89479b32e0ed634e43a91cff62a5"
2019-10-26 21:36:50 +03:00
dependencies = [
2020-05-09 07:22:51 +03:00
"autocfg",
2021-07-06 09:38:10 +03:00
"hashbrown 0.11.2",
2019-10-26 21:36:50 +03:00
]
2018-11-07 14:31:44 +02:00
2019-08-13 14:27:41 +03:00
[[package]]
name = "indicatif"
2021-01-07 10:03:20 +02:00
version = "0.15.0"
2019-08-13 14:27:41 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-07 10:03:20 +02:00
checksum = "7baab56125e25686df467fe470785512329883aab42696d661247aca2a2896e4"
2019-08-13 14:27:41 +03:00
dependencies = [
2021-01-07 10:03:20 +02:00
"console",
2020-05-09 07:22:51 +03:00
"lazy_static",
"number_prefix",
"regex",
2019-08-13 14:27:41 +03:00
]
[[package]]
name = "instant"
version = "0.1.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "61124eeebbd69b8190558df225adf7e4caafce0d743919e5d6b19652314ec5ec"
dependencies = [
"cfg-if 1.0.0",
]
2020-08-09 09:14:39 +03:00
[[package]]
name = "ipnet"
2021-07-06 09:38:10 +03:00
version = "2.3.1"
2020-08-09 09:14:39 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-06 09:38:10 +03:00
checksum = "68f2d64f2edebec4ce84ad108148e67e1064789bee435edc5b60ad398714a3a9"
2020-08-09 09:14:39 +03:00
2018-11-07 14:31:44 +02:00
[[package]]
name = "itoa"
2021-01-07 10:03:20 +02:00
version = "0.4.7"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-07 10:03:20 +02:00
checksum = "dd25036021b0de88a0aff6b850051563c6516d0bf53f8638938edbb9de732736"
2020-05-09 07:22:51 +03:00
[[package]]
name = "js-sys"
2021-07-06 09:38:10 +03:00
version = "0.3.51"
2020-05-09 07:22:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-06 09:38:10 +03:00
checksum = "83bdfbace3a0e81a4253f73b49e960b053e396a11012cbd49b9b74d6a2b67062"
2020-05-09 07:22:51 +03:00
dependencies = [
"wasm-bindgen",
]
2018-11-07 14:31:44 +02:00
[[package]]
name = "lazy_static"
2019-08-26 21:06:15 +03:00
version = "1.4.0"
2018-06-17 14:17:36 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-09 07:22:51 +03:00
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
2018-06-17 14:17:36 +03:00
2018-05-29 23:48:30 +03:00
[[package]]
name = "libc"
2021-07-06 09:38:10 +03:00
version = "0.2.97"
2018-05-29 23:48:30 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-06 09:38:10 +03:00
checksum = "12b8adadd720df158f4d70dfe7ccc6adb0472d7c55ca83445f6a5ab3e36f8fb6"
2018-05-29 23:48:30 +03:00
2018-06-17 14:17:36 +03:00
[[package]]
name = "log"
version = "0.4.14"
2018-06-17 14:17:36 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "51b9bbe6c47d51fc3e1a9b945965946b4c44142ab8792c50835a980d362c2710"
2018-06-17 14:17:36 +03:00
dependencies = [
"cfg-if 1.0.0",
2018-06-17 14:17:36 +03:00
]
2020-01-03 10:26:21 +02:00
[[package]]
name = "mac-notification-sys"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-09 07:22:51 +03:00
checksum = "3dfb6b71a9a89cd38b395d994214297447e8e63b1ba5708a9a2b0b1048ceda76"
2020-01-03 10:26:21 +02:00
dependencies = [
2020-05-09 07:22:51 +03:00
"cc",
"chrono",
2021-01-07 10:03:20 +02:00
"dirs",
2020-05-09 07:22:51 +03:00
"objc-foundation",
2020-01-03 10:26:21 +02:00
]
[[package]]
name = "malloc_buf"
version = "0.0.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-09 07:22:51 +03:00
checksum = "62bb907fe88d54d8d9ce32a3cceab4218ed2f6b7d35617cafe9adf84e43919cb"
2020-01-03 10:26:21 +02:00
dependencies = [
2020-05-09 07:22:51 +03:00
"libc",
2020-01-03 10:26:21 +02:00
]
2018-11-07 14:31:44 +02:00
[[package]]
name = "matches"
version = "0.1.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-09 07:22:51 +03:00
checksum = "7ffc5c5338469d4d3ea17d269fa8ea3512ad247247c30bd2df69e68309ed0a08"
2020-02-13 15:38:28 +02:00
2018-06-17 14:17:36 +03:00
[[package]]
name = "memchr"
version = "2.4.0"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b16bd47d9e329435e309c58469fe0791c2d0d1ba96ec0954152a5ae2b04387dc"
2020-02-13 15:38:28 +02:00
2018-11-07 14:31:44 +02:00
[[package]]
name = "mime"
2020-02-10 22:17:59 +02:00
version = "0.3.16"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-09 07:22:51 +03:00
checksum = "2a60c7ce501c71e03a9c9c0d35b861413ae925bd979cc7a4e30d060069aaac8d"
2018-11-07 14:31:44 +02:00
[[package]]
name = "miniz_oxide"
2021-07-06 09:38:10 +03:00
version = "0.4.4"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-06 09:38:10 +03:00
checksum = "a92518e98c078586bc6c934028adcca4c92a53d6a958196de835170a01d84e4b"
2018-11-07 14:31:44 +02:00
dependencies = [
2021-07-06 09:38:10 +03:00
"adler",
"autocfg",
2018-11-07 14:31:44 +02:00
]
[[package]]
name = "mio"
2021-07-06 09:38:10 +03:00
version = "0.7.13"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-06 09:38:10 +03:00
checksum = "8c2bdb6314ec10835cd3293dd268473a835c02b7b352e788be788b3c6ca6bb16"
2018-11-07 14:31:44 +02:00
dependencies = [
2020-05-09 07:22:51 +03:00
"libc",
"log",
2021-01-07 10:03:20 +02:00
"miow",
"ntapi",
"winapi",
2018-11-07 14:31:44 +02:00
]
[[package]]
name = "miow"
2021-07-06 09:38:10 +03:00
version = "0.3.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-06 09:38:10 +03:00
checksum = "b9f1c5b025cda876f66ef43a113f91ebc9f4ccef34843000e0adf6ebbab84e21"
dependencies = [
2021-01-07 10:03:20 +02:00
"winapi",
]
2018-11-07 14:31:44 +02:00
[[package]]
name = "native-tls"
2021-01-07 10:03:20 +02:00
version = "0.2.7"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-07 10:03:20 +02:00
checksum = "b8d96b2e1c8da3957d58100b09f102c6d9cfdfced01b7ec5a8974044bb09dbd4"
2018-11-07 14:31:44 +02:00
dependencies = [
2020-05-09 07:22:51 +03:00
"lazy_static",
"libc",
"log",
"openssl",
"openssl-probe",
"openssl-sys",
"schannel",
"security-framework",
"security-framework-sys",
"tempfile",
2018-11-07 14:31:44 +02:00
]
[[package]]
name = "nb-connect"
version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b1bb540dc6ef51cfe1916ec038ce7a620daf3a111e2502d745197cd53d6bca15"
dependencies = [
"libc",
2021-07-06 09:38:10 +03:00
"socket2",
]
[[package]]
name = "nix"
version = "0.17.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "50e4785f2c3b7589a0d0c1dd60285e1188adac4006e8abd6dd578e1567027363"
dependencies = [
"bitflags 1.2.1",
"cc",
"cfg-if 0.1.10",
"libc",
"void",
]
[[package]]
name = "nix"
version = "0.20.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fa9b4819da1bc61c0ea48b63b7bc8604064dd43013e7cc325df098d49cd7c18a"
dependencies = [
2020-06-18 22:25:27 +03:00
"bitflags 1.2.1",
2020-05-09 07:22:51 +03:00
"cc",
2021-01-07 10:03:20 +02:00
"cfg-if 1.0.0",
2020-05-09 07:22:51 +03:00
"libc",
]
2020-01-03 10:26:21 +02:00
[[package]]
name = "notify-rust"
2021-07-06 09:38:10 +03:00
version = "4.5.2"
2020-01-03 10:26:21 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-06 09:38:10 +03:00
checksum = "2a2ca742cd7268b60c35828d318357f0b1bb9b82088e157ccf3013eb3ce70247"
2020-01-03 10:26:21 +02:00
dependencies = [
2020-05-09 07:22:51 +03:00
"mac-notification-sys",
"serde",
2020-06-18 22:25:27 +03:00
"winrt-notification",
"zbus",
"zvariant",
"zvariant_derive",
2020-01-03 10:26:21 +02:00
]
2021-01-07 10:03:20 +02:00
[[package]]
name = "ntapi"
version = "0.3.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f6bb902e437b6d86e03cce10a7e2af662292c5dfef23b65899ea3ac9354ad44"
dependencies = [
"winapi",
]
2019-05-21 16:40:00 +03:00
[[package]]
name = "num-integer"
2020-11-02 14:00:04 +02:00
version = "0.1.44"
2019-05-21 16:40:00 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-02 14:00:04 +02:00
checksum = "d2cc698a63b549a70bc047073d2949cce27cd1c7b0a4a862d08a8031bc2801db"
2019-05-21 16:40:00 +03:00
dependencies = [
2020-05-09 07:22:51 +03:00
"autocfg",
"num-traits",
2019-05-21 16:40:00 +03:00
]
[[package]]
name = "num-traits"
2020-11-02 14:00:04 +02:00
version = "0.2.14"
2019-05-21 16:40:00 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-02 14:00:04 +02:00
checksum = "9a64b1ec5cda2586e284722486d802acf1f7dbdc623e2bfc57e65ca1cd099290"
2019-05-30 21:14:21 +03:00
dependencies = [
2020-05-09 07:22:51 +03:00
"autocfg",
2019-05-30 21:14:21 +03:00
]
2019-05-21 16:40:00 +03:00
2018-11-07 14:31:44 +02:00
[[package]]
name = "num_cpus"
2020-06-11 17:39:06 +03:00
version = "1.13.0"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-06-11 17:39:06 +03:00
checksum = "05499f3756671c15885fee9034446956fff3f243d6077b91e5767df161f766b3"
2018-11-07 14:31:44 +02:00
dependencies = [
2020-05-09 07:22:51 +03:00
"hermit-abi",
"libc",
2018-11-07 14:31:44 +02:00
]
2019-05-12 10:20:40 +03:00
[[package]]
2019-08-13 14:27:41 +03:00
name = "number_prefix"
2020-05-09 07:22:51 +03:00
version = "0.3.0"
2019-05-12 10:20:40 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-09 07:22:51 +03:00
checksum = "17b02fc0ff9a9e4b35b3342880f48e896ebf69f2967921fe8646bf5b7125956a"
2019-05-12 10:20:40 +03:00
2020-01-03 10:26:21 +02:00
[[package]]
name = "objc"
version = "0.2.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-09 07:22:51 +03:00
checksum = "915b1b472bc21c53464d6c8461c9d3af805ba1ef837e1cac254428f4a77177b1"
2020-01-03 10:26:21 +02:00
dependencies = [
2020-05-09 07:22:51 +03:00
"malloc_buf",
2020-01-03 10:26:21 +02:00
]
[[package]]
name = "objc-foundation"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-09 07:22:51 +03:00
checksum = "1add1b659e36c9607c7aab864a76c7a4c2760cd0cd2e120f3fb8b952c7e22bf9"
2020-01-03 10:26:21 +02:00
dependencies = [
2020-05-09 07:22:51 +03:00
"block",
"objc",
"objc_id",
2020-01-03 10:26:21 +02:00
]
[[package]]
name = "objc_id"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-09 07:22:51 +03:00
checksum = "c92d4ddb4bd7b50d730c215ff871754d0da6b2178849f8a2a2ab69712d0c073b"
2020-01-03 10:26:21 +02:00
dependencies = [
2020-05-09 07:22:51 +03:00
"objc",
2020-01-03 10:26:21 +02:00
]
2020-05-15 21:10:15 +03:00
[[package]]
name = "once_cell"
2021-07-06 09:38:10 +03:00
version = "1.8.0"
2020-05-15 21:10:15 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-06 09:38:10 +03:00
checksum = "692fcb63b64b1758029e0a96ee63e049ce8c5948587f2f7208df04625e5f6b56"
2020-05-15 21:10:15 +03:00
2018-11-07 14:31:44 +02:00
[[package]]
name = "openssl"
2021-07-06 09:38:10 +03:00
version = "0.10.35"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-06 09:38:10 +03:00
checksum = "549430950c79ae24e6d02e0b7404534ecf311d94cc9f861e9e4020187d13d885"
2018-11-07 14:31:44 +02:00
dependencies = [
2020-06-18 22:25:27 +03:00
"bitflags 1.2.1",
2021-01-07 10:03:20 +02:00
"cfg-if 1.0.0",
2020-05-09 07:22:51 +03:00
"foreign-types",
"libc",
2021-07-06 09:38:10 +03:00
"once_cell",
2020-05-09 07:22:51 +03:00
"openssl-sys",
2018-11-07 14:31:44 +02:00
]
[[package]]
name = "openssl-probe"
2021-07-06 09:38:10 +03:00
version = "0.1.4"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-06 09:38:10 +03:00
checksum = "28988d872ab76095a6e6ac88d99b54fd267702734fd7ffe610ca27f533ddb95a"
2018-11-07 14:31:44 +02:00
[[package]]
name = "openssl-sys"
2021-07-06 09:38:10 +03:00
version = "0.9.65"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-06 09:38:10 +03:00
checksum = "7a7907e3bfa08bb85105209cdfcb6c63d109f8f6c1ed6ca318fff5c1853fbc1d"
2018-11-07 14:31:44 +02:00
dependencies = [
2020-05-09 07:22:51 +03:00
"autocfg",
"cc",
"libc",
"pkg-config",
"vcpkg",
2018-11-07 14:31:44 +02:00
]
2020-02-29 20:15:28 +02:00
[[package]]
name = "ordered-multimap"
2021-01-07 10:03:20 +02:00
version = "0.3.1"
2020-02-29 20:15:28 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-07 10:03:20 +02:00
checksum = "1c672c7ad9ec066e428c00eb917124a06f08db19e2584de982cc34b1f4c12485"
2020-02-29 20:15:28 +02:00
dependencies = [
2020-05-09 07:22:51 +03:00
"dlv-list",
2021-07-06 09:38:10 +03:00
"hashbrown 0.9.1",
2020-02-29 20:15:28 +02:00
]
[[package]]
name = "parking"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "427c3892f9e783d91cc128285287e70a59e206ca452770ece88a76f7a3eddd72"
[[package]]
name = "parselnk"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d098204d9ef47f80312460c1555a152972ea9f0a67487a77b2ab7e03fd510d4f"
dependencies = [
"bitflags 1.2.1",
"byteorder",
"chrono",
"thiserror",
"widestring",
]
2019-05-12 10:20:40 +03:00
[[package]]
2020-05-09 07:22:51 +03:00
name = "percent-encoding"
2021-01-07 10:03:20 +02:00
version = "2.1.0"
2019-05-12 10:20:40 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-07 10:03:20 +02:00
checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e"
2019-05-12 10:20:40 +03:00
2019-11-28 06:17:15 +02:00
[[package]]
2021-01-07 10:03:20 +02:00
name = "pest"
version = "2.1.3"
2019-11-28 06:17:15 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-07 10:03:20 +02:00
checksum = "10f4872ae94d7b90ae48754df22fd42ad52ce740b8f370b03da4835417403e53"
dependencies = [
"ucd-trie",
]
2019-11-28 06:17:15 +02:00
2018-11-07 14:31:44 +02:00
[[package]]
2020-05-09 07:22:51 +03:00
name = "pin-project-lite"
2021-07-06 09:38:10 +03:00
version = "0.2.7"
2020-12-07 20:51:41 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-06 09:38:10 +03:00
checksum = "8d31d11c69a6b52a174b42bdc0c30e5e11670f90788b2c471c31c1d17d449443"
2020-12-07 20:51:41 +02:00
2019-09-04 21:07:43 +03:00
[[package]]
2020-05-09 07:22:51 +03:00
name = "pin-utils"
2020-05-15 21:10:15 +03:00
version = "0.1.0"
2019-09-04 21:07:43 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-15 21:10:15 +03:00
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
2019-09-04 21:07:43 +03:00
[[package]]
2018-11-07 14:31:44 +02:00
name = "pkg-config"
2020-11-02 14:00:04 +02:00
version = "0.3.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-02 14:00:04 +02:00
checksum = "3831453b3449ceb48b6d9c7ad7c96d5ea673e9b470a1dc578c2ce6521230884c"
[[package]]
name = "polling"
2021-07-06 09:38:10 +03:00
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-06 09:38:10 +03:00
checksum = "92341d779fa34ea8437ef4d82d440d5e1ce3f3ff7f824aa64424cd481f9a1f25"
dependencies = [
"cfg-if 1.0.0",
"libc",
"log",
2021-07-06 09:38:10 +03:00
"wepoll-ffi",
"winapi",
]
2019-07-16 08:56:26 +03:00
[[package]]
name = "ppv-lite86"
2020-12-07 20:51:41 +02:00
version = "0.2.10"
2019-07-16 08:56:26 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-07 20:51:41 +02:00
checksum = "ac74c624d6b2d21f425f752262f42188365d7b8ff1aff74c82e45136510a4857"
2019-07-16 08:56:26 +03:00
2019-08-04 09:33:01 +03:00
[[package]]
name = "pretty_env_logger"
2020-02-10 22:17:59 +02:00
version = "0.4.0"
2019-08-04 09:33:01 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-09 07:22:51 +03:00
checksum = "926d36b9553851b8b0005f1275891b392ee4d2d833852c417ed025477350fb9d"
2019-08-04 09:33:01 +03:00
dependencies = [
2020-05-09 07:22:51 +03:00
"env_logger",
"log",
2019-08-04 09:33:01 +03:00
]
[[package]]
name = "proc-macro-crate"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1d6ea3c4595b96363c13943497db34af4460fb474a95c43f4446ad341b8c9785"
dependencies = [
"toml",
]
2021-07-06 09:38:10 +03:00
[[package]]
name = "proc-macro-crate"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "41fdbd1df62156fbc5945f4762632564d7d038153091c3fcf1067f6aef7cff92"
dependencies = [
"thiserror",
"toml",
]
2019-09-04 21:07:43 +03:00
[[package]]
name = "proc-macro-error"
2020-08-09 09:14:39 +03:00
version = "1.0.4"
2019-09-04 21:07:43 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-08-09 09:14:39 +03:00
checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
2019-09-04 21:07:43 +03:00
dependencies = [
2020-05-09 07:22:51 +03:00
"proc-macro-error-attr",
"proc-macro2",
2021-02-13 06:38:13 +02:00
"quote 1.0.9",
2021-07-06 09:38:10 +03:00
"syn 1.0.73",
2020-05-09 07:22:51 +03:00
"version_check",
2020-01-05 21:55:05 +02:00
]
[[package]]
name = "proc-macro-error-attr"
2020-08-09 09:14:39 +03:00
version = "1.0.4"
2020-01-05 21:55:05 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-08-09 09:14:39 +03:00
checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
2020-01-05 21:55:05 +02:00
dependencies = [
2020-05-09 07:22:51 +03:00
"proc-macro2",
2021-02-13 06:38:13 +02:00
"quote 1.0.9",
2020-05-09 07:22:51 +03:00
"version_check",
2019-09-04 21:07:43 +03:00
]
2020-02-29 20:15:28 +02:00
[[package]]
name = "proc-macro-hack"
2020-11-02 14:00:04 +02:00
version = "0.5.19"
2020-02-29 20:15:28 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-02 14:00:04 +02:00
checksum = "dbf0c48bc1d91375ae5c3cd81e3722dff1abcf81a30960240640d223f59fe0e5"
2020-02-29 20:15:28 +02:00
[[package]]
2020-05-09 07:22:51 +03:00
name = "proc-macro-nested"
version = "0.1.7"
2019-08-22 21:53:38 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bc881b2c22681370c6a780e47af9840ef841837bc98118431d4e1868bd0c1086"
2019-08-22 21:53:38 +03:00
2019-05-12 10:20:40 +03:00
[[package]]
2020-05-09 07:22:51 +03:00
name = "proc-macro2"
2021-07-06 09:38:10 +03:00
version = "1.0.27"
2019-05-12 10:20:40 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-06 09:38:10 +03:00
checksum = "f0d8caf72986c1a598726adc988bb5984792ef84f5ee5aa50209145ee8077038"
2020-02-13 15:38:28 +02:00
dependencies = [
2021-07-06 09:38:10 +03:00
"unicode-xid 0.2.2",
2020-02-13 15:38:28 +02:00
]
2019-05-12 10:20:40 +03:00
2018-06-17 14:17:36 +03:00
[[package]]
2020-02-13 15:38:28 +02:00
name = "quick-error"
version = "1.2.3"
2018-06-17 14:17:36 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-09 07:22:51 +03:00
checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
2018-06-17 14:17:36 +03:00
2018-11-07 14:31:44 +02:00
[[package]]
2020-05-09 07:22:51 +03:00
name = "quick-xml"
2021-01-07 10:03:20 +02:00
version = "0.20.0"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-07 10:03:20 +02:00
checksum = "26aab6b48e2590e4a64d1ed808749ba06257882b461d01ca71baeb747074a6dd"
2018-11-07 14:31:44 +02:00
dependencies = [
2020-05-09 07:22:51 +03:00
"memchr",
2018-11-07 14:31:44 +02:00
]
2019-08-13 14:27:41 +03:00
[[package]]
2020-05-09 07:22:51 +03:00
name = "quote"
2020-06-18 22:25:27 +03:00
version = "0.3.15"
2019-08-13 14:27:41 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-06-18 22:25:27 +03:00
checksum = "7a6e920b65c65f10b2ae65c831a81a073a89edd28c7cce89475bff467ab4167a"
2019-08-13 14:27:41 +03:00
2020-02-13 15:38:28 +02:00
[[package]]
2020-06-18 22:25:27 +03:00
name = "quote"
2021-02-13 06:38:13 +02:00
version = "1.0.9"
2020-02-13 15:38:28 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-13 06:38:13 +02:00
checksum = "c3d0b9745dc2debf507c8422de05d7226cc1f0644216dfdfead988f9b1ab32a7"
2020-02-13 15:38:28 +02:00
dependencies = [
2020-06-18 22:25:27 +03:00
"proc-macro2",
2020-02-13 15:38:28 +02:00
]
[[package]]
name = "rand"
2021-07-06 09:38:10 +03:00
version = "0.8.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-06 09:38:10 +03:00
checksum = "2e7573632e6454cf6b99d7aac4ccca54be06da05aca2ef7423d22d27d4d4bcd8"
dependencies = [
"libc",
2021-07-06 09:38:10 +03:00
"rand_chacha",
"rand_core",
"rand_hc",
]
[[package]]
name = "rand_chacha"
2021-07-06 09:38:10 +03:00
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-06 09:38:10 +03:00
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
dependencies = [
"ppv-lite86",
2021-07-06 09:38:10 +03:00
"rand_core",
]
[[package]]
name = "rand_core"
2021-07-06 09:38:10 +03:00
version = "0.6.3"
2019-07-16 08:56:26 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-06 09:38:10 +03:00
checksum = "d34f1408f55294453790c48b2f1ebbb1c5b4b7563eb1f418bcfcfdbb06ebb4e7"
2019-07-16 08:56:26 +03:00
dependencies = [
2021-07-06 09:38:10 +03:00
"getrandom 0.2.3",
]
[[package]]
name = "rand_hc"
2021-07-06 09:38:10 +03:00
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-06 09:38:10 +03:00
checksum = "d51e9f596de227fda2ea6c84607f5558e196eeaf43c986b724ba4fb8fdf497e7"
dependencies = [
2021-07-06 09:38:10 +03:00
"rand_core",
2018-12-12 13:05:02 +02:00
]
2018-05-31 16:00:01 +03:00
[[package]]
name = "redox_syscall"
2020-07-14 08:20:01 +03:00
version = "0.1.57"
2018-05-31 16:00:01 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-07-14 08:20:01 +03:00
checksum = "41cc0f7e4d5d4544e8861606a285bb08d3e70712ccc7d2b84d7c0ccfaf4b05ce"
2018-05-31 16:00:01 +03:00
[[package]]
name = "redox_syscall"
2021-07-06 09:38:10 +03:00
version = "0.2.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-06 09:38:10 +03:00
checksum = "5ab49abadf3f9e1c4bc499e8845e152ad87d2ad2d30371841171169e9d75feee"
dependencies = [
"bitflags 1.2.1",
]
2019-06-02 09:08:47 +03:00
[[package]]
name = "redox_users"
2020-11-02 14:00:04 +02:00
version = "0.3.5"
2019-06-02 09:08:47 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-02 14:00:04 +02:00
checksum = "de0737333e7a9502c789a36d7c7fa6092a49895d4faa31ca5df163857ded2e9d"
2019-06-02 09:08:47 +03:00
dependencies = [
"getrandom 0.1.16",
"redox_syscall 0.1.57",
2020-05-09 07:22:51 +03:00
"rust-argon2",
2019-06-02 09:08:47 +03:00
]
[[package]]
name = "redox_users"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "528532f3d801c87aec9def2add9ca802fe569e44a544afe633765267840abe64"
dependencies = [
2021-07-06 09:38:10 +03:00
"getrandom 0.2.3",
"redox_syscall 0.2.9",
]
2018-06-17 14:17:36 +03:00
[[package]]
name = "regex"
2021-07-06 09:38:10 +03:00
version = "1.5.4"
2018-06-17 14:17:36 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-06 09:38:10 +03:00
checksum = "d07a8629359eb56f1e2fb1652bb04212c072a87ba68546a04065d525673ac461"
2018-06-17 14:17:36 +03:00
dependencies = [
2020-05-09 07:22:51 +03:00
"aho-corasick",
"memchr",
"regex-syntax",
2018-06-17 14:17:36 +03:00
]
[[package]]
name = "regex-syntax"
version = "0.6.25"
2018-06-17 14:17:36 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b"
2018-06-17 14:17:36 +03:00
2018-11-07 14:31:44 +02:00
[[package]]
name = "remove_dir_all"
2020-06-18 22:25:27 +03:00
version = "0.5.3"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-06-18 22:25:27 +03:00
checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7"
2018-11-07 14:31:44 +02:00
dependencies = [
2021-01-07 10:03:20 +02:00
"winapi",
2018-11-07 14:31:44 +02:00
]
[[package]]
name = "reqwest"
2021-07-06 09:38:10 +03:00
version = "0.11.4"
2020-05-09 07:22:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-06 09:38:10 +03:00
checksum = "246e9f61b9bb77df069a947682be06e31ac43ea37862e244a69f177694ea6d22"
2020-05-09 07:22:51 +03:00
dependencies = [
2021-01-07 10:03:20 +02:00
"base64",
"bytes",
2020-05-09 07:22:51 +03:00
"encoding_rs",
"futures-core",
"futures-util",
"http",
"http-body",
"hyper",
"hyper-tls",
2020-08-09 09:14:39 +03:00
"ipnet",
2020-05-09 07:22:51 +03:00
"js-sys",
"lazy_static",
"log",
"mime",
"native-tls",
2021-01-07 10:03:20 +02:00
"percent-encoding",
"pin-project-lite",
2020-05-09 07:22:51 +03:00
"serde",
"serde_json",
"serde_urlencoded",
"tokio",
2021-01-07 10:03:20 +02:00
"tokio-native-tls",
2020-05-09 07:22:51 +03:00
"url",
"wasm-bindgen",
"wasm-bindgen-futures",
"web-sys",
"winreg",
]
2019-08-13 14:27:41 +03:00
[[package]]
name = "rust-argon2"
2020-12-07 20:51:41 +02:00
version = "0.8.3"
2019-08-13 14:27:41 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-07 20:51:41 +02:00
checksum = "4b18820d944b33caa75a71378964ac46f58517c92b6ae5f762636247c09e78fb"
2019-08-13 14:27:41 +03:00
dependencies = [
2021-01-07 10:03:20 +02:00
"base64",
2020-05-09 07:22:51 +03:00
"blake2b_simd",
"constant_time_eq",
"crossbeam-utils",
2020-01-05 21:55:05 +02:00
]
2020-02-11 09:37:22 +02:00
[[package]]
name = "rust-ini"
version = "0.17.0"
2020-02-11 09:37:22 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "63471c4aa97a1cf8332a5f97709a79a4234698de6a1f5087faf66f2dae810e22"
2020-02-11 09:37:22 +02:00
dependencies = [
"cfg-if 1.0.0",
2020-05-09 07:22:51 +03:00
"ordered-multimap",
2020-02-11 09:37:22 +02:00
]
2018-11-07 14:31:44 +02:00
[[package]]
name = "ryu"
2020-06-11 17:39:06 +03:00
version = "1.0.5"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-06-11 17:39:06 +03:00
checksum = "71d301d4193d031abdd79ff7e3dd721168a9572ef3fe51a1517aba235bd8f86e"
2018-11-07 14:31:44 +02:00
[[package]]
name = "same-file"
2020-02-10 22:17:59 +02:00
version = "1.0.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-09 07:22:51 +03:00
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
dependencies = [
2020-05-09 07:22:51 +03:00
"winapi-util",
]
2018-11-07 14:31:44 +02:00
[[package]]
name = "schannel"
2020-06-11 17:39:06 +03:00
version = "0.1.19"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-06-11 17:39:06 +03:00
checksum = "8f05ba609c234e60bee0d547fe94a4c7e9da733d1c962cf6e59efa4cd9c8bc75"
2018-11-07 14:31:44 +02:00
dependencies = [
2020-05-09 07:22:51 +03:00
"lazy_static",
2021-01-07 10:03:20 +02:00
"winapi",
2018-11-07 14:31:44 +02:00
]
2021-02-22 13:03:42 +02:00
[[package]]
name = "scoped-tls"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ea6a9290e3c9cf0f18145ef7ffa62d68ee0bf5fcd651017e586dc7fd5da448c2"
2018-11-07 14:31:44 +02:00
[[package]]
name = "security-framework"
2021-07-06 09:38:10 +03:00
version = "2.3.1"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-06 09:38:10 +03:00
checksum = "23a2ac85147a3a11d77ecf1bc7166ec0b92febfa4461c37944e180f319ece467"
2018-11-07 14:31:44 +02:00
dependencies = [
2020-06-18 22:25:27 +03:00
"bitflags 1.2.1",
2020-05-09 07:22:51 +03:00
"core-foundation",
"core-foundation-sys",
2020-06-11 17:39:06 +03:00
"libc",
2020-05-09 07:22:51 +03:00
"security-framework-sys",
2018-11-07 14:31:44 +02:00
]
[[package]]
name = "security-framework-sys"
2021-07-06 09:38:10 +03:00
version = "2.3.0"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-06 09:38:10 +03:00
checksum = "7e4effb91b4b8b6fb7732e670b6cee160278ff8e6bf485c7805d9e319d76e284"
2018-11-07 14:31:44 +02:00
dependencies = [
2020-05-09 07:22:51 +03:00
"core-foundation-sys",
"libc",
2018-11-07 14:31:44 +02:00
]
[[package]]
name = "self_update"
version = "0.26.0"
2019-01-13 22:54:51 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9031099ba3962ce8faaff991066bcbe6ec1f7ccb0be12a4b56733028ae090054"
2018-11-07 14:31:44 +02:00
dependencies = [
2020-05-09 07:22:51 +03:00
"either",
"flate2",
2021-01-07 10:03:20 +02:00
"hyper",
2020-05-09 07:22:51 +03:00
"indicatif",
2020-06-18 22:25:27 +03:00
"log",
2020-05-09 07:22:51 +03:00
"quick-xml",
"regex",
"reqwest",
"semver",
"serde_json",
"tar",
2020-06-18 22:25:27 +03:00
"tempfile",
2020-05-09 07:22:51 +03:00
"zip",
2018-11-07 14:31:44 +02:00
]
[[package]]
name = "semver"
2021-01-07 10:03:20 +02:00
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-07 10:03:20 +02:00
checksum = "f301af10236f6df4160f7c3f04eec6dbc70ace82d23326abad5edee88801c6b6"
dependencies = [
2020-05-09 07:22:51 +03:00
"semver-parser",
]
[[package]]
name = "semver-parser"
2021-01-07 10:03:20 +02:00
version = "0.10.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-07 10:03:20 +02:00
checksum = "00b0bef5b7f9e0df16536d3961cfb6e84331c065b4066afb39768d0e319411f7"
dependencies = [
"pest",
]
[[package]]
name = "serde"
2021-07-06 09:38:10 +03:00
version = "1.0.126"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-06 09:38:10 +03:00
checksum = "ec7505abeacaec74ae4778d9d9328fe5a5d04253220a85c4ee022239fc996d03"
2018-12-24 10:09:46 +02:00
dependencies = [
2020-05-09 07:22:51 +03:00
"serde_derive",
2018-12-24 10:09:46 +02:00
]
[[package]]
name = "serde_derive"
2021-07-06 09:38:10 +03:00
version = "1.0.126"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-06 09:38:10 +03:00
checksum = "963a7dbc9895aeac7ac90e74f34a5d5261828f79df35cbed41e10189d3804d43"
dependencies = [
2020-05-09 07:22:51 +03:00
"proc-macro2",
2021-02-13 06:38:13 +02:00
"quote 1.0.9",
2021-07-06 09:38:10 +03:00
"syn 1.0.73",
]
2018-11-07 14:31:44 +02:00
[[package]]
name = "serde_json"
2021-07-06 09:38:10 +03:00
version = "1.0.64"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-06 09:38:10 +03:00
checksum = "799e97dc9fdae36a5c8b8f2cae9ce2ee9fdce2058c57a93e6099d919fd982f79"
2018-11-07 14:31:44 +02:00
dependencies = [
2020-05-09 07:22:51 +03:00
"itoa",
"ryu",
"serde",
2018-11-07 14:31:44 +02:00
]
[[package]]
name = "serde_repr"
2021-07-06 09:38:10 +03:00
version = "0.1.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-06 09:38:10 +03:00
checksum = "98d0516900518c29efa217c298fa1f4e6c6ffc85ae29fd7f4ee48f176e1a9ed5"
dependencies = [
"proc-macro2",
"quote 1.0.9",
2021-07-06 09:38:10 +03:00
"syn 1.0.73",
]
2018-11-07 14:31:44 +02:00
[[package]]
name = "serde_urlencoded"
2020-12-07 20:51:41 +02:00
version = "0.7.0"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-07 20:51:41 +02:00
checksum = "edfa57a7f8d9c1d260a549e7224100f6c43d43f9103e06dd8b4095a9b2b43ce9"
2018-11-07 14:31:44 +02:00
dependencies = [
2020-12-07 20:51:41 +02:00
"form_urlencoded",
2020-05-09 07:22:51 +03:00
"itoa",
2020-12-07 20:51:41 +02:00
"ryu",
2020-05-09 07:22:51 +03:00
"serde",
2018-11-07 14:31:44 +02:00
]
[[package]]
name = "shellexpand"
2021-01-07 10:03:20 +02:00
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-07 10:03:20 +02:00
checksum = "83bdb7831b2d85ddf4a7b148aa19d0587eddbe8671a436b7bd1182eaad0f2829"
2020-01-05 21:55:05 +02:00
dependencies = [
2021-01-07 10:03:20 +02:00
"dirs-next",
2020-01-05 21:55:05 +02:00
]
[[package]]
name = "signal-hook-registry"
2021-07-06 09:38:10 +03:00
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-06 09:38:10 +03:00
checksum = "e51e73328dc4ac0c7ccbda3a494dfa03df1de2f46018127f60c693f2648455b0"
dependencies = [
"libc",
]
2018-11-07 14:31:44 +02:00
[[package]]
name = "slab"
2021-07-06 09:38:10 +03:00
version = "0.4.3"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-06 09:38:10 +03:00
checksum = "f173ac3d1a7e3b28003f40de0b5ce7fe2710f9b9dc3fc38664cebee46b3b6527"
2020-02-13 15:38:28 +02:00
[[package]]
name = "socket2"
2021-07-06 09:38:10 +03:00
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-06 09:38:10 +03:00
checksum = "9e3dfc207c526015c632472a77be09cf1b6e46866581aecae5cc38fb4235dea2"
dependencies = [
"libc",
2021-01-07 10:03:20 +02:00
"winapi",
]
[[package]]
2021-07-06 09:38:10 +03:00
name = "static_assertions"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-06 09:38:10 +03:00
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
2018-06-12 11:30:03 +03:00
[[package]]
name = "strsim"
2019-04-07 10:10:53 +03:00
version = "0.8.0"
2018-06-12 11:30:03 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-09 07:22:51 +03:00
checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
2018-06-12 11:30:03 +03:00
2018-09-06 14:42:56 +03:00
[[package]]
name = "structopt"
2021-07-06 09:38:10 +03:00
version = "0.3.22"
2018-09-06 14:42:56 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-06 09:38:10 +03:00
checksum = "69b041cdcb67226aca307e6e7be44c8806423d83e018bd662360a93dabce4d71"
2018-09-06 14:42:56 +03:00
dependencies = [
2020-05-09 07:22:51 +03:00
"clap",
"lazy_static",
"structopt-derive",
2018-09-06 14:42:56 +03:00
]
[[package]]
name = "structopt-derive"
2021-07-06 09:38:10 +03:00
version = "0.4.15"
2018-09-06 14:42:56 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-06 09:38:10 +03:00
checksum = "7813934aecf5f51a54775e00068c237de98489463968231a51746bbbc03f9c10"
2018-09-06 14:42:56 +03:00
dependencies = [
2020-05-09 07:22:51 +03:00
"heck",
"proc-macro-error",
"proc-macro2",
2021-02-13 06:38:13 +02:00
"quote 1.0.9",
2021-07-06 09:38:10 +03:00
"syn 1.0.73",
2018-09-06 14:42:56 +03:00
]
2020-06-18 22:25:27 +03:00
[[package]]
name = "strum"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4ca6e4730f517e041e547ffe23d29daab8de6b73af4b6ae2a002108169f5e7da"
2019-09-28 14:41:06 +03:00
[[package]]
name = "strum"
2021-01-07 10:03:20 +02:00
version = "0.20.0"
2019-09-28 14:41:06 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-07 10:03:20 +02:00
checksum = "7318c509b5ba57f18533982607f24070a55d353e90d4cae30c467cdb2ad5ac5c"
2019-09-28 14:41:06 +03:00
dependencies = [
2021-01-07 10:03:20 +02:00
"strum_macros 0.20.1",
2020-06-18 22:25:27 +03:00
]
[[package]]
name = "strum_macros"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3384590878eb0cab3b128e844412e2d010821e7e091211b9d87324173ada7db8"
dependencies = [
"quote 0.3.15",
"syn 0.11.11",
2019-09-28 14:41:06 +03:00
]
[[package]]
name = "strum_macros"
2021-01-07 10:03:20 +02:00
version = "0.20.1"
2019-09-28 14:41:06 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-07 10:03:20 +02:00
checksum = "ee8bc6b87a5112aeeab1f4a9f7ab634fe6cbefc4850006df31267f4cfb9e3149"
2019-09-28 14:41:06 +03:00
dependencies = [
2020-05-09 07:22:51 +03:00
"heck",
"proc-macro2",
2021-02-13 06:38:13 +02:00
"quote 1.0.9",
2021-07-06 09:38:10 +03:00
"syn 1.0.73",
2020-06-18 22:25:27 +03:00
]
[[package]]
name = "syn"
version = "0.11.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d3b891b9015c88c576343b9b3e41c2c11a51c219ef067b264bd9c8aa9b441dad"
dependencies = [
"quote 0.3.15",
"synom",
"unicode-xid 0.0.4",
2019-09-28 14:41:06 +03:00
]
2019-08-22 21:53:38 +03:00
[[package]]
name = "syn"
2021-07-06 09:38:10 +03:00
version = "1.0.73"
2019-08-22 21:53:38 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-06 09:38:10 +03:00
checksum = "f71489ff30030d2ae598524f61326b902466f72a0fb1a8564c001cc63425bcc7"
2019-08-22 21:53:38 +03:00
dependencies = [
2020-05-09 07:22:51 +03:00
"proc-macro2",
2021-02-13 06:38:13 +02:00
"quote 1.0.9",
2021-07-06 09:38:10 +03:00
"unicode-xid 0.2.2",
2019-08-22 21:53:38 +03:00
]
2018-11-07 14:31:44 +02:00
[[package]]
2020-06-18 22:25:27 +03:00
name = "synom"
version = "0.11.3"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-06-18 22:25:27 +03:00
checksum = "a393066ed9010ebaed60b9eafa373d4b1baac186dd7e008555b0f702b51945b6"
2018-11-07 14:31:44 +02:00
dependencies = [
2020-06-18 22:25:27 +03:00
"unicode-xid 0.0.4",
2018-11-07 14:31:44 +02:00
]
[[package]]
2020-06-18 22:25:27 +03:00
name = "tar"
2021-07-06 09:38:10 +03:00
version = "0.4.35"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-06 09:38:10 +03:00
checksum = "7d779dc6aeff029314570f666ec83f19df7280bb36ef338442cfa8c604021b80"
2018-11-07 14:31:44 +02:00
dependencies = [
2020-06-18 22:25:27 +03:00
"filetime",
"libc",
"xattr",
2018-11-07 14:31:44 +02:00
]
[[package]]
name = "tempfile"
version = "3.2.0"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dac1c663cfc93810f88aed9b8941d48cabf856a1b111c29a40439018d870eb22"
2018-11-07 14:31:44 +02:00
dependencies = [
"cfg-if 1.0.0",
2020-05-09 07:22:51 +03:00
"libc",
2021-07-06 09:38:10 +03:00
"rand",
"redox_syscall 0.2.9",
2020-05-09 07:22:51 +03:00
"remove_dir_all",
2021-01-07 10:03:20 +02:00
"winapi",
2018-11-07 14:31:44 +02:00
]
2018-06-17 14:17:36 +03:00
[[package]]
name = "termcolor"
2020-12-07 20:51:41 +02:00
version = "1.1.2"
2018-06-17 14:17:36 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-07 20:51:41 +02:00
checksum = "2dfed899f0eb03f32ee8c6a0aabdb8a7949659e3466561fc0adf54e26d88c5f4"
2018-06-17 14:17:36 +03:00
dependencies = [
2020-05-09 07:22:51 +03:00
"winapi-util",
2018-06-17 14:17:36 +03:00
]
2020-05-15 21:10:15 +03:00
[[package]]
name = "terminal_size"
2021-07-06 09:38:10 +03:00
version = "0.1.17"
2020-05-15 21:10:15 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-06 09:38:10 +03:00
checksum = "633c1a546cee861a1a6d0dc69ebeca693bf4296661ba7852b9d21d159e0506df"
2020-05-15 21:10:15 +03:00
dependencies = [
"libc",
2021-01-07 10:03:20 +02:00
"winapi",
]
2018-06-12 11:30:03 +03:00
[[package]]
name = "textwrap"
2019-04-07 10:10:53 +03:00
version = "0.11.0"
2018-06-12 11:30:03 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-09 07:22:51 +03:00
checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
2018-06-12 11:30:03 +03:00
dependencies = [
2020-05-09 07:22:51 +03:00
"unicode-width",
2018-06-12 11:30:03 +03:00
]
[[package]]
name = "thiserror"
2021-07-06 09:38:10 +03:00
version = "1.0.26"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-06 09:38:10 +03:00
checksum = "93119e4feac1cbe6c798c34d3a53ea0026b0b1de6a120deef895137c0529bfe2"
dependencies = [
2020-05-09 07:22:51 +03:00
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
2021-07-06 09:38:10 +03:00
version = "1.0.26"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-06 09:38:10 +03:00
checksum = "060d69a0afe7796bf42e9e2ff91f5ee691fb15c53d38b4b62a9a53eb23164745"
dependencies = [
2020-05-09 07:22:51 +03:00
"proc-macro2",
2021-02-13 06:38:13 +02:00
"quote 1.0.9",
2021-07-06 09:38:10 +03:00
"syn 1.0.73",
]
2018-11-07 14:31:44 +02:00
[[package]]
name = "time"
2021-07-06 09:38:10 +03:00
version = "0.1.44"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-06 09:38:10 +03:00
checksum = "6db9e6914ab8b1ae1c260a4ae7a49b6c5611b40328a735b21862567685e73255"
2018-11-07 14:31:44 +02:00
dependencies = [
2020-05-09 07:22:51 +03:00
"libc",
2021-07-06 09:38:10 +03:00
"wasi 0.10.0+wasi-snapshot-preview1",
2021-01-07 10:03:20 +02:00
"winapi",
2018-11-07 14:31:44 +02:00
]
2020-06-18 22:25:27 +03:00
[[package]]
name = "tinyvec"
2021-07-06 09:38:10 +03:00
version = "1.2.0"
2020-06-18 22:25:27 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-06 09:38:10 +03:00
checksum = "5b5220f05bb7de7f3f53c7c065e1199b3172696fe2db9f9c4d8ad9b4ee74c342"
2020-12-07 20:51:41 +02: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-18 22:25:27 +03:00
2018-11-07 14:31:44 +02:00
[[package]]
name = "tokio"
2021-07-06 09:38:10 +03:00
version = "1.8.0"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-06 09:38:10 +03:00
checksum = "570c2eb13b3ab38208130eccd41be92520388791207fde783bda7c1e8ace28d4"
2018-11-07 14:31:44 +02:00
dependencies = [
2021-01-07 10:03:20 +02:00
"autocfg",
"bytes",
"libc",
2020-05-09 07:22:51 +03:00
"memchr",
"mio",
"num_cpus",
2021-01-07 10:03:20 +02:00
"once_cell",
"pin-project-lite",
"signal-hook-registry",
2021-01-07 10:03:20 +02:00
"winapi",
2018-11-07 14:31:44 +02:00
]
2020-02-13 15:38:28 +02:00
[[package]]
2021-01-07 10:03:20 +02:00
name = "tokio-native-tls"
version = "0.3.0"
2020-02-13 15:38:28 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-07 10:03:20 +02:00
checksum = "f7d995660bd2b7f8c1568414c1126076c13fbb725c40112dc0120b78eb9b717b"
2020-02-13 15:38:28 +02:00
dependencies = [
2020-05-09 07:22:51 +03:00
"native-tls",
"tokio",
2020-02-13 15:38:28 +02:00
]
[[package]]
2020-05-09 07:22:51 +03:00
name = "tokio-util"
2021-07-06 09:38:10 +03:00
version = "0.6.7"
2020-02-13 15:38:28 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-06 09:38:10 +03:00
checksum = "1caa0b0c8d94a049db56b5acf8cba99dc0623aab1b26d5b5f5e2d945846b3592"
2020-02-13 15:38:28 +02:00
dependencies = [
"bytes",
2020-05-09 07:22:51 +03:00
"futures-core",
"futures-sink",
"log",
2021-01-07 10:03:20 +02:00
"pin-project-lite",
2020-05-09 07:22:51 +03:00
"tokio",
2019-03-14 21:41:16 +02:00
]
[[package]]
name = "toml"
2021-01-07 10:03:20 +02:00
version = "0.5.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-07 10:03:20 +02:00
checksum = "a31142970826733df8241ef35dc040ef98c679ab14d7c3e54d827099b3acecaa"
dependencies = [
2020-05-09 07:22:51 +03:00
"serde",
]
2018-05-29 23:48:30 +03:00
[[package]]
name = "topgrade"
2021-06-09 16:07:02 +03:00
version = "7.0.1"
dependencies = [
2021-06-15 08:37:14 +03:00
"anyhow",
"cfg-if 1.0.0",
"chrono",
"console",
"directories",
"futures",
"glob",
"lazy_static",
"log",
"nix 0.20.0",
2020-05-09 07:22:51 +03:00
"notify-rust",
2020-07-30 10:18:37 +03:00
"openssl-probe",
"parselnk",
2020-05-09 07:22:51 +03:00
"pretty_env_logger",
"regex",
2020-05-09 07:22:51 +03:00
"rust-ini",
"self_update",
"serde",
"shellexpand",
"structopt",
2021-01-07 10:03:20 +02:00
"strum 0.20.0",
2020-05-09 07:22:51 +03:00
"tempfile",
"thiserror",
"tokio",
2020-05-09 07:22:51 +03:00
"toml",
"walkdir",
"which",
2021-01-07 10:03:20 +02:00
"winapi",
2020-05-09 07:22:51 +03:00
]
[[package]]
name = "tower-service"
version = "0.3.1"
2020-05-09 07:22:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "360dfd1d6d30e05fda32ace2c8c70e9c0a9da713275777f5a4dbb8a1893930c6"
2018-05-29 23:48:30 +03:00
2020-07-14 08:20:01 +03:00
[[package]]
name = "tracing"
2021-07-06 09:38:10 +03:00
version = "0.1.26"
2020-07-14 08:20:01 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-06 09:38:10 +03:00
checksum = "09adeb8c97449311ccd28a427f96fb563e7fd31aabf994189879d9da2394b89d"
2020-07-14 08:20:01 +03:00
dependencies = [
2020-12-07 20:51:41 +02:00
"cfg-if 1.0.0",
2021-01-07 10:03:20 +02:00
"pin-project-lite",
2020-07-14 08:20:01 +03:00
"tracing-core",
]
[[package]]
name = "tracing-core"
2021-07-06 09:38:10 +03:00
version = "0.1.18"
2020-07-14 08:20:01 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-06 09:38:10 +03:00
checksum = "a9ff14f98b1a4b289c6248a023c1c2fa1491062964e9fed67ab29c4e4da4a052"
2020-07-14 08:20:01 +03:00
dependencies = [
"lazy_static",
]
2018-11-07 14:31:44 +02:00
[[package]]
2020-02-13 15:38:28 +02:00
name = "try-lock"
2020-07-14 08:20:01 +03:00
version = "0.2.3"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-07-14 08:20:01 +03:00
checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642"
2019-05-12 10:20:40 +03:00
2018-11-07 14:31:44 +02:00
[[package]]
2021-01-07 10:03:20 +02:00
name = "ucd-trie"
version = "0.1.3"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-07 10:03:20 +02:00
checksum = "56dee185309b50d1f11bfedef0fe6d036842e3fb77413abef29f8f8d1c5d4c1c"
2018-11-07 14:31:44 +02:00
[[package]]
name = "unicode-bidi"
2021-07-06 09:38:10 +03:00
version = "0.3.5"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-06 09:38:10 +03:00
checksum = "eeb8be209bb1c96b7c177c7420d26e04eccacb0eeae6b980e35fcb74678107e0"
2018-11-07 14:31:44 +02:00
dependencies = [
2020-05-09 07:22:51 +03:00
"matches",
2018-11-07 14:31:44 +02:00
]
[[package]]
name = "unicode-normalization"
2021-07-06 09:38:10 +03:00
version = "0.1.19"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-06 09:38:10 +03:00
checksum = "d54590932941a9e9266f0832deed84ebe1bf2e4c9e4a3554d393d18f5e854bf9"
2019-01-22 11:43:39 +02:00
dependencies = [
2020-06-18 22:25:27 +03:00
"tinyvec",
2019-01-22 11:43:39 +02:00
]
2018-11-07 14:31:44 +02:00
2018-12-12 13:05:02 +02:00
[[package]]
name = "unicode-segmentation"
2021-07-06 09:38:10 +03:00
version = "1.8.0"
2018-12-12 13:05:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-06 09:38:10 +03:00
checksum = "8895849a949e7845e06bd6dc1aa51731a103c42707010a5b591c0038fb73385b"
2018-12-12 13:05:02 +02:00
2018-06-12 11:30:03 +03:00
[[package]]
name = "unicode-width"
2020-06-30 12:23:05 +03:00
version = "0.1.8"
2018-06-12 11:30:03 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-06-30 12:23:05 +03:00
checksum = "9337591893a19b88d8d87f2cec1e73fad5cdfd10e5a6f349f498ad6ea2ffb1e3"
2018-06-12 11:30:03 +03:00
2020-06-18 22:25:27 +03:00
[[package]]
name = "unicode-xid"
version = "0.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8c1f860d7d29cf02cb2f3f359fd35991af3d30bac52c57d265a3c461074cb4dc"
2019-08-22 21:53:38 +03:00
[[package]]
name = "unicode-xid"
2021-07-06 09:38:10 +03:00
version = "0.2.2"
2019-08-22 21:53:38 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-06 09:38:10 +03:00
checksum = "8ccb82d61f80a663efe1f787a51b16b5a51e3314d6ac365b08639f52387b33f3"
2019-08-22 21:53:38 +03:00
2018-11-07 14:31:44 +02:00
[[package]]
name = "url"
2021-07-06 09:38:10 +03:00
version = "2.2.2"
2019-09-04 21:07:43 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-06 09:38:10 +03:00
checksum = "a507c383b2d33b5fc35d1861e77e6b383d158b2da5e14fe51b83dfedf6fd578c"
2019-09-04 21:07:43 +03:00
dependencies = [
2020-12-07 20:51:41 +02:00
"form_urlencoded",
2020-05-09 07:22:51 +03:00
"idna",
"matches",
2021-01-07 10:03:20 +02:00
"percent-encoding",
2020-02-13 15:38:28 +02:00
]
2018-11-07 14:31:44 +02:00
[[package]]
name = "vcpkg"
2021-07-06 09:38:10 +03:00
version = "0.2.15"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-06 09:38:10 +03:00
checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
2018-11-07 14:31:44 +02:00
2018-06-12 11:30:03 +03:00
[[package]]
name = "vec_map"
2020-06-11 17:39:06 +03:00
version = "0.8.2"
2018-06-12 11:30:03 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-06-11 17:39:06 +03:00
checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191"
2018-06-12 11:30:03 +03:00
2019-11-15 07:08:46 +02:00
[[package]]
name = "version_check"
2021-07-06 09:38:10 +03:00
version = "0.9.3"
2019-11-15 07:08:46 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-06 09:38:10 +03:00
checksum = "5fecdca9a5291cc2b8dcf7dc02453fee791a280f3743cb0905f8822ae463b3fe"
2019-11-15 07:08:46 +02:00
[[package]]
name = "void"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d"
[[package]]
name = "waker-fn"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9d5b2c62b4012a3e1eca5a7e077d13b3bf498c4073e33ccd58626607748ceeca"
[[package]]
name = "walkdir"
version = "2.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "808cf2735cd4b6866113f648b791c6adc5714537bc222d9347bb203386ffda56"
dependencies = [
2020-05-09 07:22:51 +03:00
"same-file",
2021-01-07 10:03:20 +02:00
"winapi",
2020-05-09 07:22:51 +03:00
"winapi-util",
]
2018-11-07 14:31:44 +02:00
[[package]]
name = "want"
2020-05-09 07:22:51 +03:00
version = "0.3.0"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-09 07:22:51 +03:00
checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0"
2018-11-07 14:31:44 +02:00
dependencies = [
2020-05-09 07:22:51 +03:00
"log",
"try-lock",
2018-11-07 14:31:44 +02:00
]
2019-08-15 13:22:35 +03:00
[[package]]
name = "wasi"
2020-02-10 22:17:59 +02:00
version = "0.9.0+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-09 07:22:51 +03:00
checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
2020-11-02 14:00:04 +02:00
[[package]]
name = "wasi"
2021-07-06 09:38:10 +03:00
version = "0.10.0+wasi-snapshot-preview1"
2020-11-02 14:00:04 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-06 09:38:10 +03:00
checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f"
2020-11-02 14:00:04 +02:00
2020-05-09 07:22:51 +03:00
[[package]]
name = "wasm-bindgen"
2021-07-06 09:38:10 +03:00
version = "0.2.74"
2020-05-09 07:22:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-06 09:38:10 +03:00
checksum = "d54ee1d4ed486f78874278e63e4069fc1ab9f6a18ca492076ffb90c5eb2997fd"
2020-05-09 07:22:51 +03:00
dependencies = [
2020-12-07 20:51:41 +02:00
"cfg-if 1.0.0",
2020-05-09 07:22:51 +03:00
"serde",
"serde_json",
"wasm-bindgen-macro",
]
[[package]]
name = "wasm-bindgen-backend"
2021-07-06 09:38:10 +03:00
version = "0.2.74"
2020-05-09 07:22:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-06 09:38:10 +03:00
checksum = "3b33f6a0694ccfea53d94db8b2ed1c3a8a4c86dd936b13b9f0a15ec4a451b900"
2020-05-09 07:22:51 +03:00
dependencies = [
"bumpalo",
"lazy_static",
"log",
"proc-macro2",
2021-02-13 06:38:13 +02:00
"quote 1.0.9",
2021-07-06 09:38:10 +03:00
"syn 1.0.73",
2020-05-09 07:22:51 +03:00
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-futures"
2021-07-06 09:38:10 +03:00
version = "0.4.24"
2020-05-09 07:22:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-06 09:38:10 +03:00
checksum = "5fba7978c679d53ce2d0ac80c8c175840feb849a161664365d1287b41f2e67f1"
2020-05-09 07:22:51 +03:00
dependencies = [
2020-12-07 20:51:41 +02:00
"cfg-if 1.0.0",
2020-05-09 07:22:51 +03:00
"js-sys",
"wasm-bindgen",
"web-sys",
]
[[package]]
name = "wasm-bindgen-macro"
2021-07-06 09:38:10 +03:00
version = "0.2.74"
2020-05-09 07:22:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-06 09:38:10 +03:00
checksum = "088169ca61430fe1e58b8096c24975251700e7b1f6fd91cc9d59b04fb9b18bd4"
2020-05-09 07:22:51 +03:00
dependencies = [
2021-02-13 06:38:13 +02:00
"quote 1.0.9",
2020-05-09 07:22:51 +03:00
"wasm-bindgen-macro-support",
]
[[package]]
name = "wasm-bindgen-macro-support"
2021-07-06 09:38:10 +03:00
version = "0.2.74"
2020-05-09 07:22:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-06 09:38:10 +03:00
checksum = "be2241542ff3d9f241f5e2cb6dd09b37efe786df8851c54957683a49f0987a97"
2020-05-09 07:22:51 +03:00
dependencies = [
"proc-macro2",
2021-02-13 06:38:13 +02:00
"quote 1.0.9",
2021-07-06 09:38:10 +03:00
"syn 1.0.73",
2020-05-09 07:22:51 +03:00
"wasm-bindgen-backend",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-shared"
2021-07-06 09:38:10 +03:00
version = "0.2.74"
2020-12-07 20:51:41 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-06 09:38:10 +03:00
checksum = "d7cff876b8f18eed75a66cf49b65e7f967cb354a7aa16003fb55dbfd25b44b4f"
2020-12-07 20:51:41 +02:00
2020-05-09 07:22:51 +03:00
[[package]]
name = "web-sys"
2021-07-06 09:38:10 +03:00
version = "0.3.51"
2020-05-09 07:22:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-06 09:38:10 +03:00
checksum = "e828417b379f3df7111d3a2a9e5753706cae29c41f7c4029ee9fd77f3e09e582"
2020-05-09 07:22:51 +03:00
dependencies = [
"js-sys",
"wasm-bindgen",
]
[[package]]
2021-07-06 09:38:10 +03:00
name = "wepoll-ffi"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-06 09:38:10 +03:00
checksum = "d743fdedc5c64377b5fc2bc036b01c7fd642205a0d96356034ae3404d49eb7fb"
dependencies = [
"cc",
]
2018-05-29 23:48:30 +03:00
[[package]]
name = "which"
version = "4.1.0"
2018-05-29 23:48:30 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b55551e42cbdf2ce2bedd2203d0cc08dba002c27510f86dab6d0ce304cba3dfe"
2018-05-29 23:48:30 +03:00
dependencies = [
"either",
2020-05-09 07:22:51 +03:00
"libc",
2018-05-29 23:48:30 +03:00
]
[[package]]
name = "widestring"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c168940144dd21fd8046987c16a46a33d5fc84eec29ef9dcddc2ac9e31526b7c"
2018-05-29 23:48:30 +03:00
[[package]]
name = "winapi"
2020-06-30 12:23:05 +03:00
version = "0.3.9"
2018-05-29 23:48:30 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-06-30 12:23:05 +03:00
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
2018-05-29 23:48:30 +03:00
dependencies = [
2020-05-09 07:22:51 +03:00
"winapi-i686-pc-windows-gnu",
"winapi-x86_64-pc-windows-gnu",
2018-05-29 23:48:30 +03:00
]
[[package]]
name = "winapi-i686-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-09 07:22:51 +03:00
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
2018-05-29 23:48:30 +03:00
2018-08-27 15:24:08 +03:00
[[package]]
name = "winapi-util"
2020-06-11 17:39:06 +03:00
version = "0.1.5"
2018-08-27 15:24:08 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-06-11 17:39:06 +03:00
checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
2018-08-27 15:24:08 +03:00
dependencies = [
2021-01-07 10:03:20 +02:00
"winapi",
2018-08-27 15:24:08 +03:00
]
2018-05-29 23:48:30 +03:00
[[package]]
name = "winapi-x86_64-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-09 07:22:51 +03:00
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
2018-05-29 23:48:30 +03:00
2019-07-31 14:31:28 +03:00
[[package]]
name = "winreg"
2020-06-11 17:39:06 +03:00
version = "0.7.0"
2019-07-31 14:31:28 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-06-11 17:39:06 +03:00
checksum = "0120db82e8a1e0b9fb3345a539c478767c0048d842860994d96113d5b667bd69"
2019-07-31 14:31:28 +03:00
dependencies = [
2021-01-07 10:03:20 +02:00
"winapi",
2019-07-31 14:31:28 +03:00
]
2020-06-18 22:25:27 +03:00
[[package]]
name = "winrt"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7e30cba82e22b083dc5a422c2ee77e20dc7927271a0dc981360c57c1453cb48d"
dependencies = [
2021-01-07 10:03:20 +02:00
"winapi",
2020-06-18 22:25:27 +03:00
]
[[package]]
name = "winrt-notification"
2021-02-22 13:03:42 +02:00
version = "0.2.4"
2020-06-18 22:25:27 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-22 13:03:42 +02:00
checksum = "57790eb281688a4682dab44df2a1ba8b78373233bd71cb291c3e75fecb1a01c4"
2020-06-18 22:25:27 +03:00
dependencies = [
"strum 0.8.0",
"strum_macros 0.8.0",
2021-01-07 10:03:20 +02:00
"winapi",
2020-06-18 22:25:27 +03:00
"winrt",
"xml-rs",
]
2018-11-07 14:31:44 +02:00
[[package]]
name = "xattr"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-09 07:22:51 +03:00
checksum = "244c3741f4240ef46274860397c7c74e50eb23624996930e484c16679633a54c"
2018-11-07 14:31:44 +02:00
dependencies = [
2020-05-09 07:22:51 +03:00
"libc",
2018-11-07 14:31:44 +02:00
]
2020-06-18 22:25:27 +03:00
[[package]]
name = "xml-rs"
version = "0.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e1945e12e16b951721d7976520b0832496ef79c31602c7a29d950de79ba74621"
dependencies = [
"bitflags 0.9.1",
]
[[package]]
name = "zbus"
version = "1.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2326acc379a3ac4e34b794089f5bdb17086bf29a5fdf619b7b4cc772dc2e9dad"
dependencies = [
"async-io",
"byteorder",
"derivative",
"enumflags2",
"fastrand",
"futures",
"nb-connect",
"nix 0.17.0",
"once_cell",
"polling",
"scoped-tls",
"serde",
"serde_repr",
"zbus_macros",
"zvariant",
]
[[package]]
name = "zbus_macros"
version = "1.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a482c56029e48681b89b92b5db3c446db0915e8dd1052c0328a574eda38d5f93"
dependencies = [
2021-07-06 09:38:10 +03:00
"proc-macro-crate 0.1.5",
"proc-macro2",
"quote 1.0.9",
2021-07-06 09:38:10 +03:00
"syn 1.0.73",
]
[[package]]
name = "zip"
2021-07-06 09:38:10 +03:00
version = "0.5.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-06 09:38:10 +03:00
checksum = "93ab48844d61251bb3835145c521d88aa4031d7139e8485990f60ca911fa0815"
dependencies = [
2020-11-02 14:00:04 +02:00
"byteorder",
2020-05-09 07:22:51 +03:00
"crc32fast",
"flate2",
2020-11-02 14:00:04 +02:00
"thiserror",
2020-05-09 07:22:51 +03:00
"time",
]
[[package]]
name = "zvariant"
2021-07-06 09:38:10 +03:00
version = "2.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-06 09:38:10 +03:00
checksum = "fa9a0fc1c0ea8400723fdaddd3b381147d50991a40da39e6ea935b7d63204722"
dependencies = [
"byteorder",
"enumflags2",
"serde",
2021-07-06 09:38:10 +03:00
"static_assertions",
"zvariant_derive",
]
[[package]]
name = "zvariant_derive"
2021-07-06 09:38:10 +03:00
version = "2.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-06 09:38:10 +03:00
checksum = "4cf1d7953d902d1bad61878a7c79bd224d4a83bdfc93c84cc703ec760b8b70e9"
dependencies = [
2021-07-06 09:38:10 +03:00
"proc-macro-crate 1.0.0",
"proc-macro2",
"quote 1.0.9",
2021-07-06 09:38:10 +03:00
"syn 1.0.73",
]