Files
topgrade/Cargo.lock

2279 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"
2021-12-16 09:44:19 +02:00
version = "0.12.1"
2018-06-12 11:30:03 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-16 09:44:19 +02:00
checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2"
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"
2022-01-24 12:10:02 +02:00
version = "1.0.53"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-24 12:10:02 +02:00
checksum = "94a45b455c14666b85fc40a019e8ab9eb75e3a124e05494f5397122bc9eb06e0"
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"
2021-10-25 22:41:12 +03:00
version = "1.3.2"
2018-06-12 11:30:03 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-25 22:41:12 +03:00
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
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"
2022-01-24 12:10:02 +02:00
version = "3.9.1"
2020-05-09 07:22:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-24 12:10:02 +02:00
checksum = "a4a45a46ab1f2412e53d3a0ade76ffad2025804294569aae387231a0cd6e0899"
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"
2021-10-25 22:41:12 +03:00
version = "1.1.0"
2019-07-16 08:56:26 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-25 22:41:12 +03:00
checksum = "c4872d67bab6358e59559027aa3b9157c53d9358c51423c17554809a8858e0f8"
[[package]]
name = "cache-padded"
2022-01-24 12:10:02 +02:00
version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-24 12:10:02 +02:00
checksum = "c1db59621ec70f09c5e9b597b220c7a2b43611f4710dc03ceb8748637775692c"
2018-05-29 23:48:30 +03:00
[[package]]
name = "cc"
2021-12-16 09:44:19 +02:00
version = "1.0.72"
2018-05-29 23:48:30 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-16 09:44:19 +02:00
checksum = "22a9137b95ea06864e018375b72adfb7db6e6f68cfc8df5a04d00288050485ee"
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"
2021-12-16 09:44:19 +02:00
version = "2.34.0"
2018-06-12 11:30:03 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-16 09:44:19 +02:00
checksum = "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c"
2018-06-12 11:30:03 +03:00
dependencies = [
2020-05-09 07:22:51 +03:00
"ansi_term",
"atty",
2021-10-25 22:41:12 +03:00
"bitflags",
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"
2021-10-25 22:41:12 +03:00
version = "0.15.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-25 22:41:12 +03:00
checksum = "a28b32d32ca44b70c3e4acd7db1babf555fa026e385fb95f18028f88848b3c31"
2020-06-05 15:28:43 +03:00
dependencies = [
"encode_unicode",
"libc",
2021-10-25 22:41:12 +03:00
"once_cell",
2020-06-05 15:28:43 +03:00
"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"
2021-10-25 22:41:12 +03:00
version = "0.9.2"
2019-05-12 10:20:40 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-25 22:41:12 +03:00
checksum = "6888e10551bb93e424d8df1d07f1a8b4fceb0001a3a4b048bfc47554946f47b3"
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"
2021-10-25 22:41:12 +03:00
version = "0.8.3"
2019-05-12 10:20:40 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-25 22:41:12 +03:00
checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc"
2019-05-12 10:20:40 +03:00
[[package]]
name = "crc32fast"
2022-01-24 12:10:02 +02:00
version = "1.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-24 12:10:02 +02:00
checksum = "a2209c310e29876f7f0b2721e7e26b84aff178aa3da5d091f9bfbf47669e60e3"
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"
2022-01-24 12:10:02 +02:00
version = "0.8.6"
2020-02-13 15:38:28 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-24 12:10:02 +02:00
checksum = "cfcae03edb34f947e64acdb1c33ec169824e20657e9ecb61cef6c8c74dcb8120"
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",
2021-10-25 22:41:12 +03:00
"quote",
"syn",
2020-01-03 10:26:21 +02:00
]
[[package]]
name = "directories"
2021-10-25 22:41:12 +03:00
version = "4.0.1"
2019-06-02 09:08:47 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-25 22:41:12 +03:00
checksum = "f51c5d4ddabd36886dd3e1438cb358cdcb0d7c499cb99cb4ac2e38e18b5cb210"
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"
2021-12-16 09:44:19 +02:00
version = "0.8.30"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-16 09:44:19 +02:00
checksum = "7896dc8abb250ffdda33912550faa54c88ec8b998dec0b2c55ab224921ce11df"
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",
2021-10-25 22:41:12 +03:00
"quote",
"syn",
]
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"
2022-01-24 12:10:02 +02:00
version = "1.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-24 12:10:02 +02:00
checksum = "c3fcf0cee53519c866c09b5de1f6c56ff9d647101f81c1964fa632e148896cdf"
dependencies = [
"instant",
]
2018-11-07 14:31:44 +02:00
[[package]]
name = "filetime"
2021-10-25 22:41:12 +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-10-25 22:41:12 +03:00
checksum = "975ccf83d8d9d0d84682850a38c8169027be83368805971cc4f238c2b245bc98"
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-10-25 22:41:12 +03:00
"redox_syscall 0.2.10",
2021-01-07 10:03:20 +02:00
"winapi",
2018-11-07 14:31:44 +02:00
]
[[package]]
name = "flate2"
2021-10-25 22:41:12 +03:00
version = "1.0.22"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-25 22:41:12 +03:00
checksum = "1e6988e897c1c9c485f43b47a529cef42fde0547f9d8d41a7062518f1d8fc53f"
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"
2022-01-24 12:10:02 +02:00
version = "0.3.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-24 12:10:02 +02:00
checksum = "28560757fe2bb34e79f907794bb6b22ae8b0e5c669b638a1132f2592b19035b4"
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"
2022-01-24 12:10:02 +02:00
version = "0.3.19"
2020-05-09 07:22:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-24 12:10:02 +02:00
checksum = "ba3dda0b6588335f360afc675d0564c17a77a2bda81ca178a4b6081bd86c7f0b"
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"
2022-01-24 12:10:02 +02:00
version = "0.3.19"
2020-02-10 22:17:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-24 12:10:02 +02:00
checksum = "d0c8ff0461b82559810cdccfde3215c3f373807f5e5232b71479bff7bb2583d7"
2020-02-10 22:17:59 +02:00
[[package]]
name = "futures-executor"
2022-01-24 12:10:02 +02:00
version = "0.3.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-24 12:10:02 +02:00
checksum = "29d6d2ff5bb10fb95c85b8ce46538a2e5f5e7fdc755623a7d4529ab8a4ed9d2a"
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"
2022-01-24 12:10:02 +02:00
version = "0.3.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-24 12:10:02 +02:00
checksum = "b1f9d34af5a1aac6fb380f735fe510746c38067c5bf16c7fd250280503c971b2"
[[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"
2022-01-24 12:10:02 +02:00
version = "0.3.19"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-24 12:10:02 +02:00
checksum = "6dbd947adfffb0efc70599b3ddcf7b5597bb5fa9e245eb99f62b3a5f7bb8bd3c"
2018-11-07 14:31:44 +02:00
dependencies = [
2020-05-09 07:22:51 +03:00
"proc-macro2",
2021-10-25 22:41:12 +03:00
"quote",
"syn",
2020-05-09 07:22:51 +03:00
]
[[package]]
name = "futures-sink"
2022-01-24 12:10:02 +02:00
version = "0.3.19"
2020-05-09 07:22:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-24 12:10:02 +02:00
checksum = "e3055baccb68d74ff6480350f8d6eb8fcfa3aa11bdc1a1ae3afdd0514617d508"
2020-05-09 07:22:51 +03:00
[[package]]
name = "futures-task"
2022-01-24 12:10:02 +02:00
version = "0.3.19"
2020-05-09 07:22:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-24 12:10:02 +02:00
checksum = "6ee7c6485c30167ce4dfb83ac568a849fe53274c831081476ee13e0dce1aad72"
2020-05-09 07:22:51 +03:00
[[package]]
name = "futures-util"
2022-01-24 12:10:02 +02:00
version = "0.3.19"
2020-05-09 07:22:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-24 12:10:02 +02:00
checksum = "d9b5cf40b47a271f77a8b1bec03ca09044d99d2372c0de244e66430761127164"
2020-05-09 07:22:51 +03:00
dependencies = [
"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",
"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"
2022-01-24 12:10:02 +02:00
version = "0.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-24 12:10:02 +02:00
checksum = "418d37c8b1d42553c93648be529cb70f920d3baf8ef469b74b9638df426e0b4c"
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"
2022-01-24 12:10:02 +02:00
version = "0.3.10"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-24 12:10:02 +02:00
checksum = "0c9de88456263e249e241fcd211d3954e2c9b0ef7ccfc235a444eb367cae3689"
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"
2022-01-24 12:10:02 +02:00
version = "0.2.6"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-24 12:10:02 +02:00
checksum = "31f4c6746584866f0feabcc69893c5b51beef3831656a968ed7ae254cdc4fd03"
2018-11-07 14:31:44 +02:00
dependencies = [
"bytes",
2020-05-09 07:22:51 +03:00
"fnv",
2022-01-24 12:10:02 +02:00
"itoa 1.0.1",
2018-11-07 14:31:44 +02:00
]
2019-05-30 21:14:21 +03:00
[[package]]
name = "http-body"
2021-10-25 22:41:12 +03:00
version = "0.4.4"
2019-05-30 21:14:21 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-25 22:41:12 +03:00
checksum = "1ff4f84919677303da5f147645dbea6b1881f368d03ac84e1dc09031ebd7b2c6"
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-10-25 22:41:12 +03:00
version = "1.5.1"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-25 22:41:12 +03:00
checksum = "acd94fdbe1d4ff688b67b04eee2e17bd50995534a61539e45adfefb45e5e5503"
2018-11-07 14:31:44 +02:00
2020-11-02 14:00:04 +02:00
[[package]]
name = "httpdate"
2021-12-16 09:44:19 +02:00
version = "1.0.2"
2020-11-02 14:00:04 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-16 09:44:19 +02:00
checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421"
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-12-16 09:44:19 +02:00
version = "0.14.16"
2020-05-09 07:22:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-16 09:44:19 +02:00
checksum = "b7ec3e62bdc98a2f0393a5048e4c30ef659440ea6e0e572965103e72bd836f55"
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",
2021-12-16 09:44:19 +02:00
"itoa 0.4.8",
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"
2022-01-24 12:10:02 +02:00
version = "1.8.0"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-24 12:10:02 +02:00
checksum = "282a6247722caba404c065016bbfa522806e51714c34f5dfc3e4a3a46fcb4223"
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"
2022-01-24 12:10:02 +02:00
version = "0.16.2"
2019-08-13 14:27:41 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-24 12:10:02 +02:00
checksum = "2d207dc617c7a380ab07ff572a6e52fa202a2a8f355860ac9c38e23f8196be1b"
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"
2021-10-25 22:41:12 +03:00
version = "0.1.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-25 22:41:12 +03:00
checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
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-10-25 22:41:12 +03:00
version = "0.4.8"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-25 22:41:12 +03:00
checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4"
2020-05-09 07:22:51 +03:00
2021-12-16 09:44:19 +02:00
[[package]]
name = "itoa"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1aab8fc367588b89dcee83ab0fd66b72b50b72fa1904d7095045ace2b0c81c35"
2020-05-09 07:22:51 +03:00
[[package]]
name = "js-sys"
2022-01-24 12:10:02 +02:00
version = "0.3.56"
2020-05-09 07:22:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-24 12:10:02 +02:00
checksum = "a38fc24e30fd564ce974c02bf1d337caddff65be6cc4735a1f7eab22a7440f04"
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"
2022-01-24 12:10:02 +02:00
version = "0.2.113"
2018-05-29 23:48:30 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-24 12:10:02 +02:00
checksum = "eef78b64d87775463c549fbd80e19249ef436ea3bf1de2a1eb7e717ec7fab1e9"
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"
2021-10-25 22:41:12 +03:00
version = "0.1.9"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-25 22:41:12 +03:00
checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f"
2020-02-13 15:38:28 +02:00
2018-06-17 14:17:36 +03:00
[[package]]
name = "memchr"
2021-10-25 22:41:12 +03:00
version = "2.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "308cc39be01b73d0d18f82a0e7b2a3df85245f84af96fdddc5d202d27e47b86a"
[[package]]
name = "memoffset"
2021-12-16 09:44:19 +02:00
version = "0.6.5"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-16 09:44:19 +02:00
checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce"
2021-10-25 22:41:12 +03:00
dependencies = [
"autocfg",
]
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-10-25 22:41:12 +03:00
version = "0.7.14"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-25 22:41:12 +03:00
checksum = "8067b404fe97c70829f082dec8bcf4f71225d7eaea1d8645349cb76fa06205cc"
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-10-25 22:41:12 +03:00
version = "0.2.8"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-25 22:41:12 +03:00
checksum = "48ba9f7719b5a0f42f338907614285fb5fd70e53858141f69898a1fb7203b24d"
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 = [
2021-10-25 22:41:12 +03:00
"bitflags",
"cc",
"cfg-if 0.1.10",
"libc",
"void",
]
[[package]]
name = "nix"
2022-01-24 12:10:02 +02:00
version = "0.23.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-24 12:10:02 +02:00
checksum = "9f866317acbd3a240710c63f065ffb1e4fd466259045ccb504130b7f668f35c6"
dependencies = [
2021-10-25 22:41:12 +03:00
"bitflags",
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",
2021-10-25 22:41:12 +03:00
"memoffset",
]
2020-01-03 10:26:21 +02:00
[[package]]
name = "notify-rust"
2021-12-16 09:44:19 +02:00
version = "4.5.5"
2020-01-03 10:26:21 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-16 09:44:19 +02:00
checksum = "ca6ebab865e67efdd7182a88d76cadbdd2a8d02d1c7a4e16bb7c234016a12cac"
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"
2022-01-24 12:10:02 +02:00
version = "1.13.1"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-24 12:10:02 +02:00
checksum = "19e64526ebdee182341572e50e9ad03965aa510cd94427a4549448f285e957a1"
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"
2022-01-24 12:10:02 +02:00
version = "0.4.0"
2019-05-12 10:20:40 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-24 12:10:02 +02:00
checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3"
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-12-16 09:44:19 +02:00
version = "1.9.0"
2020-05-15 21:10:15 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-16 09:44:19 +02:00
checksum = "da32515d9f6e6e489d7bc9d84c71b060db7247dc035bbe44eac88cf87486d8d5"
2020-05-15 21:10:15 +03:00
2018-11-07 14:31:44 +02:00
[[package]]
name = "openssl"
2021-12-16 09:44:19 +02:00
version = "0.10.38"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-16 09:44:19 +02:00
checksum = "0c7ae222234c30df141154f159066c5093ff73b63204dcda7121eb082fc56a95"
2018-11-07 14:31:44 +02:00
dependencies = [
2021-10-25 22:41:12 +03:00
"bitflags",
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"
2022-01-24 12:10:02 +02:00
version = "0.1.5"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-24 12:10:02 +02:00
checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
2018-11-07 14:31:44 +02:00
[[package]]
name = "openssl-sys"
2021-12-16 09:44:19 +02:00
version = "0.9.72"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-16 09:44:19 +02:00
checksum = "7e46109c383602735fa0a2e48dd2b7c892b048e1bf69e5c3b1d804b7d9c203cb"
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 = [
2021-10-25 22:41:12 +03:00
"bitflags",
"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"
2022-01-24 12:10:02 +02:00
version = "0.2.8"
2020-12-07 20:51:41 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-24 12:10:02 +02:00
checksum = "e280fbe77cc62c91527259e9442153f4688736748d24660126286329742b4c6c"
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"
2021-12-16 09:44:19 +02:00
version = "0.3.24"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-16 09:44:19 +02:00
checksum = "58893f751c9b0412871a09abd62ecd2a00298c6c83befa223ef98c52aef40cbe"
[[package]]
name = "polling"
2021-12-16 09:44:19 +02:00
version = "2.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-16 09:44:19 +02:00
checksum = "685404d509889fade3e86fe3a5803bca2ec09b0c0778d5ada6ec8bf7a8de5259"
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"
2022-01-24 12:10:02 +02:00
version = "0.2.16"
2019-07-16 08:56:26 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-24 12:10:02 +02:00
checksum = "eb9f9e6e233e5c4a35559a617bf40a4ec447db2e84c20b55a6f83167b7e57872"
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"
2021-10-25 22:41:12 +03:00
version = "1.1.0"
2021-07-06 09:38:10 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-25 22:41:12 +03:00
checksum = "1ebace6889caf889b4d3f76becee12e90353f2b8c7d875534a71e5742f8f6f83"
2021-07-06 09:38:10 +03:00
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-10-25 22:41:12 +03:00
"quote",
"syn",
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-10-25 22:41:12 +03:00
"quote",
2020-05-09 07:22:51 +03:00
"version_check",
2019-09-04 21:07:43 +03:00
]
2019-05-12 10:20:40 +03:00
[[package]]
2020-05-09 07:22:51 +03:00
name = "proc-macro2"
2022-01-24 12:10:02 +02:00
version = "1.0.36"
2019-05-12 10:20:40 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-24 12:10:02 +02:00
checksum = "c7342d5883fbccae1cc37a2353b09c87c9b0f3afd73f5fb9bba687a1f733b029"
2020-02-13 15:38:28 +02:00
dependencies = [
2021-10-25 22:41:12 +03:00
"unicode-xid",
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"
2022-01-24 12:10:02 +02:00
version = "1.0.15"
2019-08-13 14:27:41 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-24 12:10:02 +02:00
checksum = "864d3e96a899863136fc6e99f3d7cae289dafe43bf2c5ac19b70df7210c0a145"
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 = [
2022-01-24 12:10:02 +02:00
"getrandom 0.2.4",
]
[[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-10-25 22:41:12 +03:00
version = "0.2.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-25 22:41:12 +03:00
checksum = "8383f39639269cde97d255a32bdb68c047337295414940c68bdd30c2e13203ff"
dependencies = [
2021-10-25 22:41:12 +03:00
"bitflags",
]
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 = [
2022-01-24 12:10:02 +02:00
"getrandom 0.2.4",
2021-10-25 22:41:12 +03:00
"redox_syscall 0.2.10",
]
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"
2022-01-24 12:10:02 +02:00
version = "0.11.9"
2020-05-09 07:22:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-24 12:10:02 +02:00
checksum = "87f242f1488a539a79bac6dbe7c8609ae43b7914b7736210f239a37cccb32525"
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",
2022-01-24 12:10:02 +02:00
"h2",
2020-05-09 07:22:51 +03:00
"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
]
2022-01-24 12:10:02 +02:00
[[package]]
name = "rustversion"
version = "1.0.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f2cc38e8fa666e2de3c4aba7edeb5ffc5246c1c2ed0e3d17e560aeeba736b23f"
2018-11-07 14:31:44 +02:00
[[package]]
name = "ryu"
2021-12-16 09:44:19 +02:00
version = "1.0.9"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-16 09:44:19 +02:00
checksum = "73b4b750c782965c211b42f022f59af1fbceabdd026623714f104152f1ec149f"
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"
2022-01-24 12:10:02 +02:00
version = "2.5.0"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-24 12:10:02 +02:00
checksum = "d09d3c15d814eda1d6a836f2f2b56a6abc1446c8a34351cb3180d3db92ffe4ce"
2018-11-07 14:31:44 +02:00
dependencies = [
2021-10-25 22:41:12 +03:00
"bitflags",
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"
2022-01-24 12:10:02 +02:00
version = "2.5.0"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-24 12:10:02 +02:00
checksum = "e90dd10c41c6bfc633da6e0c659bd25d31e0791e5974ac42970267d59eba87f7"
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"
2022-01-24 12:10:02 +02:00
version = "0.28.0"
2019-01-13 22:54:51 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-24 12:10:02 +02:00
checksum = "5bc3e89793fe56c82104ddc103c998e4e94713cb975202207829e61031eb4be6"
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"
2022-01-24 12:10:02 +02:00
version = "1.0.135"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-24 12:10:02 +02:00
checksum = "2cf9235533494ea2ddcdb794665461814781c53f19d87b76e571a1c35acbad2b"
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"
2022-01-24 12:10:02 +02:00
version = "1.0.135"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-24 12:10:02 +02:00
checksum = "8dcde03d87d4c973c04be249e7d8f0b35db1c848c487bd43032808e59dd8328d"
dependencies = [
2020-05-09 07:22:51 +03:00
"proc-macro2",
2021-10-25 22:41:12 +03:00
"quote",
"syn",
]
2018-11-07 14:31:44 +02:00
[[package]]
name = "serde_json"
2022-01-24 12:10:02 +02:00
version = "1.0.78"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-24 12:10:02 +02:00
checksum = "d23c1ba4cf0efd44be32017709280b32d1cea5c3f1275c3b6d9e8bc54f758085"
2018-11-07 14:31:44 +02:00
dependencies = [
2021-12-16 09:44:19 +02:00
"itoa 1.0.1",
2020-05-09 07:22:51 +03:00
"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",
2021-10-25 22:41:12 +03:00
"quote",
"syn",
]
2018-11-07 14:31:44 +02:00
[[package]]
name = "serde_urlencoded"
2022-01-24 12:10:02 +02:00
version = "0.7.1"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-24 12:10:02 +02:00
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
2018-11-07 14:31:44 +02:00
dependencies = [
2020-12-07 20:51:41 +02:00
"form_urlencoded",
2022-01-24 12:10:02 +02:00
"itoa 1.0.1",
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-10-25 22:41:12 +03:00
version = "0.4.5"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-25 22:41:12 +03:00
checksum = "9def91fd1e018fe007022791f865d0ccc9b3a0d5001e01aabb8b40e46000afb5"
2020-02-13 15:38:28 +02:00
[[package]]
name = "socket2"
2022-01-24 12:10:02 +02:00
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-24 12:10:02 +02:00
checksum = "0f82496b90c36d70af5fcd482edaa2e0bd16fade569de1330405fecbbdac736b"
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"
2022-01-24 12:10:02 +02:00
version = "0.3.26"
2018-09-06 14:42:56 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-24 12:10:02 +02:00
checksum = "0c6b5c64445ba8094a6ab0c3cd2ad323e07171012d9c98b0b15651daf1787a10"
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-10-25 22:41:12 +03:00
version = "0.4.18"
2018-09-06 14:42:56 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-25 22:41:12 +03:00
checksum = "dcb5ae327f9cc13b68763b5749770cb9e048a99bd9dfdfa58d0cf05d5f64afe0"
2018-09-06 14:42:56 +03:00
dependencies = [
2020-05-09 07:22:51 +03:00
"heck",
"proc-macro-error",
"proc-macro2",
2021-10-25 22:41:12 +03:00
"quote",
"syn",
2018-09-06 14:42:56 +03:00
]
2020-06-18 22:25:27 +03:00
[[package]]
2021-10-25 22:41:12 +03:00
name = "strum"
version = "0.22.0"
2020-06-18 22:25:27 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-25 22:41:12 +03:00
checksum = "f7ac893c7d471c8a21f31cfe213ec4f6d9afeed25537c772e08ef3f005f8729e"
2020-06-18 22:25:27 +03:00
dependencies = [
2022-01-24 12:10:02 +02:00
"strum_macros 0.22.0",
]
[[package]]
name = "strum"
version = "0.23.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cae14b91c7d11c9a851d3fbc80a963198998c2a64eec840477fa92d8ce9b70bb"
dependencies = [
"strum_macros 0.23.1",
2020-06-18 22:25:27 +03:00
]
[[package]]
2021-10-25 22:41:12 +03:00
name = "strum_macros"
version = "0.22.0"
2020-06-18 22:25:27 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-25 22:41:12 +03:00
checksum = "339f799d8b549e3744c7ac7feb216383e4005d94bdb22561b3ab8f3b808ae9fb"
2020-06-18 22:25:27 +03:00
dependencies = [
2021-10-25 22:41:12 +03:00
"heck",
"proc-macro2",
"quote",
"syn",
2019-09-28 14:41:06 +03:00
]
2022-01-24 12:10:02 +02:00
[[package]]
name = "strum_macros"
version = "0.23.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5bb0dc7ee9c15cea6199cde9a127fa16a4c5819af85395457ad72d68edc85a38"
dependencies = [
"heck",
"proc-macro2",
"quote",
"rustversion",
"syn",
]
2019-08-22 21:53:38 +03:00
[[package]]
name = "syn"
2022-01-24 12:10:02 +02:00
version = "1.0.86"
2019-08-22 21:53:38 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-24 12:10:02 +02:00
checksum = "8a65b3f4ffa0092e9887669db0eae07941f023991ab58ea44da8fe8e2d511c6b"
2019-08-22 21:53:38 +03:00
dependencies = [
2020-05-09 07:22:51 +03:00
"proc-macro2",
2021-10-25 22:41:12 +03:00
"quote",
"unicode-xid",
2018-11-07 14:31:44 +02:00
]
[[package]]
name = "sys-info"
version = "0.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0b3a0d0aba8bf96a0e1ddfdc352fc53b3df7f39318c71854910c3c4b024ae52c"
dependencies = [
"cc",
"libc",
]
2018-11-07 14:31:44 +02:00
[[package]]
2020-06-18 22:25:27 +03:00
name = "tar"
2021-12-16 09:44:19 +02:00
version = "0.4.38"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-16 09:44:19 +02:00
checksum = "4b55807c0344e1e6c04d7c965f5289c39a8d94ae23ed5c0b57aabac549f871c6"
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"
2022-01-24 12:10:02 +02:00
version = "3.3.0"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-24 12:10:02 +02:00
checksum = "5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4"
2018-11-07 14:31:44 +02:00
dependencies = [
"cfg-if 1.0.0",
2022-01-24 12:10:02 +02:00
"fastrand",
2020-05-09 07:22:51 +03:00
"libc",
2021-10-25 22:41:12 +03:00
"redox_syscall 0.2.10",
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-10-25 22:41:12 +03:00
version = "1.0.30"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-25 22:41:12 +03:00
checksum = "854babe52e4df1653706b98fcfc05843010039b406875930a70e4d9644e5c417"
dependencies = [
2020-05-09 07:22:51 +03:00
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
2021-10-25 22:41:12 +03:00
version = "1.0.30"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-25 22:41:12 +03:00
checksum = "aa32fd3f627f367fe16f893e2597ae3c05020f8bba2666a4e6ea73d377e5714b"
dependencies = [
2020-05-09 07:22:51 +03:00
"proc-macro2",
2021-10-25 22:41:12 +03:00
"quote",
"syn",
]
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-12-16 09:44:19 +02:00
version = "1.5.1"
2020-06-18 22:25:27 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-16 09:44:19 +02:00
checksum = "2c1c1d5a42b6245520c249549ec267180beaffcc0615401ac8e31853d4b6d8d2"
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-12-16 09:44:19 +02:00
version = "1.15.0"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-16 09:44:19 +02:00
checksum = "fbbf1c778ec206785635ce8ad57fe52b3009ae9e0c9f574a728f3049d3e55838"
2018-11-07 14:31:44 +02:00
dependencies = [
"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-12-16 09:44:19 +02:00
version = "0.6.9"
2020-02-13 15:38:28 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-16 09:44:19 +02:00
checksum = "9e99e1983e5d376cd8eb4b66604d2e99e79f5bd988c3055891dcd8c9e2604cc0"
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"
2022-01-24 12:11:02 +02:00
version = "8.2.0"
2021-07-06 09:40:04 +03:00
dependencies = [
2021-07-19 09:34:14 +03:00
"anyhow",
"cfg-if 1.0.0",
"chrono",
"console",
"directories",
"futures",
"glob",
"lazy_static",
"log",
2022-01-24 12:10:02 +02:00
"nix 0.23.1",
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",
2022-01-24 12:10:02 +02:00
"strum 0.23.0",
"sys-info",
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-10-25 22:41:12 +03:00
version = "0.1.29"
2020-07-14 08:20:01 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-25 22:41:12 +03:00
checksum = "375a639232caf30edfc78e8d89b2d4c375515393e7af7e16f01cd96917fb2105"
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-10-25 22:41:12 +03:00
version = "0.1.21"
2020-07-14 08:20:01 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-25 22:41:12 +03:00
checksum = "1f4ed65637b8390770814083d20756f87bfa2c21bf2f110babdc5438351746e4"
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-10-25 22:41:12 +03:00
version = "0.3.7"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-25 22:41:12 +03:00
checksum = "1a01404663e3db436ed2746d9fefef640d868edae3cceb81c3b8d5732fda678f"
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"
2021-10-25 22:41:12 +03:00
version = "0.1.9"
2020-06-18 22:25:27 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-25 22:41:12 +03:00
checksum = "3ed742d4ea2bd1176e236172c8429aaf54486e7ac098db29ffe6529e0ce50973"
2020-06-18 22:25:27 +03:00
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"
2022-01-24 12:10:02 +02:00
version = "0.9.4"
2019-11-15 07:08:46 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-24 12:10:02 +02:00
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
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"
2022-01-24 12:10:02 +02:00
version = "0.2.79"
2020-05-09 07:22:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-24 12:10:02 +02:00
checksum = "25f1af7423d8588a3d840681122e72e6a24ddbcb3f0ec385cac0d12d24256c06"
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
"wasm-bindgen-macro",
]
[[package]]
name = "wasm-bindgen-backend"
2022-01-24 12:10:02 +02:00
version = "0.2.79"
2020-05-09 07:22:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-24 12:10:02 +02:00
checksum = "8b21c0df030f5a177f3cba22e9bc4322695ec43e7257d865302900290bcdedca"
2020-05-09 07:22:51 +03:00
dependencies = [
"bumpalo",
"lazy_static",
"log",
"proc-macro2",
2021-10-25 22:41:12 +03:00
"quote",
"syn",
2020-05-09 07:22:51 +03:00
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-futures"
2022-01-24 12:10:02 +02:00
version = "0.4.29"
2020-05-09 07:22:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-24 12:10:02 +02:00
checksum = "2eb6ec270a31b1d3c7e266b999739109abce8b6c87e4b31fcfcd788b65267395"
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"
2022-01-24 12:10:02 +02:00
version = "0.2.79"
2020-05-09 07:22:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-24 12:10:02 +02:00
checksum = "2f4203d69e40a52ee523b2529a773d5ffc1dc0071801c87b3d270b471b80ed01"
2020-05-09 07:22:51 +03:00
dependencies = [
2021-10-25 22:41:12 +03:00
"quote",
2020-05-09 07:22:51 +03:00
"wasm-bindgen-macro-support",
]
[[package]]
name = "wasm-bindgen-macro-support"
2022-01-24 12:10:02 +02:00
version = "0.2.79"
2020-05-09 07:22:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-24 12:10:02 +02:00
checksum = "bfa8a30d46208db204854cadbb5d4baf5fcf8071ba5bf48190c3e59937962ebc"
2020-05-09 07:22:51 +03:00
dependencies = [
"proc-macro2",
2021-10-25 22:41:12 +03:00
"quote",
"syn",
2020-05-09 07:22:51 +03:00
"wasm-bindgen-backend",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-shared"
2022-01-24 12:10:02 +02:00
version = "0.2.79"
2020-12-07 20:51:41 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-24 12:10:02 +02:00
checksum = "3d958d035c4438e28c70e4321a2911302f10135ce78a9c7834c0cab4123d06a2"
2020-12-07 20:51:41 +02:00
2020-05-09 07:22:51 +03:00
[[package]]
name = "web-sys"
2022-01-24 12:10:02 +02:00
version = "0.3.56"
2020-05-09 07:22:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-24 12:10:02 +02:00
checksum = "c060b319f29dd25724f09a2ba1418f142f539b2be99fbf4d2d5a8f7330afb8eb"
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"
2022-01-24 12:10:02 +02:00
version = "4.2.4"
2018-05-29 23:48:30 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-24 12:10:02 +02:00
checksum = "2a5a7e487e921cf220206864a94a89b6c6905bfc19f1057fa26a4cb360e5c1d2"
2018-05-29 23:48:30 +03:00
dependencies = [
"either",
2021-10-25 22:41:12 +03:00
"lazy_static",
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]]
2021-10-25 22:41:12 +03:00
name = "windows"
2021-12-16 09:44:19 +02:00
version = "0.24.0"
2019-07-31 14:31:28 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-16 09:44:19 +02:00
checksum = "a9f39345ae0c8ab072c0ac7fe8a8b411636aa34f89be19ddd0d9226544f13944"
2019-07-31 14:31:28 +03:00
dependencies = [
2021-12-16 09:44:19 +02:00
"windows_i686_gnu",
"windows_i686_msvc",
"windows_x86_64_gnu",
"windows_x86_64_msvc",
2019-07-31 14:31:28 +03:00
]
2020-06-18 22:25:27 +03:00
[[package]]
2021-12-16 09:44:19 +02:00
name = "windows_i686_gnu"
version = "0.24.0"
2021-10-25 22:41:12 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-16 09:44:19 +02:00
checksum = "c0866510a3eca9aed73a077490bbbf03e5eaac4e1fd70849d89539e5830501fd"
2021-10-25 22:41:12 +03:00
[[package]]
2021-12-16 09:44:19 +02:00
name = "windows_i686_msvc"
version = "0.24.0"
2021-10-25 22:41:12 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-16 09:44:19 +02:00
checksum = "bf0ffed56b7e9369a29078d2ab3aaeceea48eb58999d2cff3aa2494a275b95c6"
2021-10-25 22:41:12 +03:00
[[package]]
2021-12-16 09:44:19 +02:00
name = "windows_x86_64_gnu"
version = "0.24.0"
2021-10-25 22:41:12 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-16 09:44:19 +02:00
checksum = "384a173630588044205a2993b6864a2f56e5a8c1e7668c07b93ec18cf4888dc4"
2021-10-25 22:41:12 +03:00
[[package]]
2021-12-16 09:44:19 +02:00
name = "windows_x86_64_msvc"
version = "0.24.0"
2021-10-25 22:41:12 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-16 09:44:19 +02:00
checksum = "9bd8f062d8ca5446358159d79a90be12c543b3a965c847c8f3eedf14b321d399"
2021-10-25 22:41:12 +03:00
[[package]]
name = "winreg"
version = "0.7.0"
2020-06-18 22:25:27 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-25 22:41:12 +03:00
checksum = "0120db82e8a1e0b9fb3345a539c478767c0048d842860994d96113d5b667bd69"
2020-06-18 22:25:27 +03:00
dependencies = [
2021-01-07 10:03:20 +02:00
"winapi",
2020-06-18 22:25:27 +03:00
]
[[package]]
name = "winrt-notification"
2022-01-24 12:10:02 +02:00
version = "0.5.1"
2020-06-18 22:25:27 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-24 12:10:02 +02:00
checksum = "007a0353840b23e0c6dc73e5b962ff58ed7f6bc9ceff3ce7fe6fbad8d496edf4"
2020-06-18 22:25:27 +03:00
dependencies = [
2022-01-24 12:10:02 +02:00
"strum 0.22.0",
2021-10-25 22:41:12 +03:00
"windows",
2020-06-18 22:25:27 +03:00
"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"
2021-10-25 22:41:12 +03:00
version = "0.8.4"
2020-06-18 22:25:27 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-25 22:41:12 +03:00
checksum = "d2d7d3948613f75c98fd9328cfdcc45acc4d360655289d0a7d4ec931392200a3"
2020-06-18 22:25:27 +03:00
[[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",
2021-10-25 22:41:12 +03:00
"quote",
"syn",
]
[[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-12-16 09:44:19 +02:00
version = "2.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-16 09:44:19 +02:00
checksum = "a68c7b55f2074489b7e8e07d2d0a6ee6b4f233867a653c664d8020ba53692525"
dependencies = [
"byteorder",
"enumflags2",
2021-10-25 22:41:12 +03:00
"libc",
"serde",
2021-07-06 09:38:10 +03:00
"static_assertions",
"zvariant_derive",
]
[[package]]
name = "zvariant_derive"
2021-12-16 09:44:19 +02:00
version = "2.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-16 09:44:19 +02:00
checksum = "e4ca5e22593eb4212382d60d26350065bf2a02c34b85bc850474a74b589a3de9"
dependencies = [
2021-10-25 22:41:12 +03:00
"proc-macro-crate 1.1.0",
"proc-macro2",
2021-10-25 22:41:12 +03:00
"quote",
"syn",
]