Files
topgrade/Cargo.lock

2504 lines
61 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"
2022-05-15 09:28:22 +03:00
version = "0.7.6"
2020-02-29 20:15:28 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-15 09:28:22 +03:00
checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47"
dependencies = [
"getrandom",
"once_cell",
"version_check",
]
2020-02-29 20:15:28 +02:00
2018-06-17 14:17:36 +03:00
[[package]]
name = "aho-corasick"
2022-10-17 22:53:24 +02:00
version = "0.7.19"
2018-06-17 14:17:36 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 22:53:24 +02:00
checksum = "b4f55bd91a0978cbfd91c457a164bab8b4001c833b7f323132c0a4e1922dd44e"
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
]
2022-10-17 22:53:24 +02:00
[[package]]
name = "android_system_properties"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
dependencies = [
"libc",
]
[[package]]
name = "anyhow"
2022-11-02 16:25:54 +00:00
version = "1.0.66"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-02 16:25:54 +00:00
checksum = "216261ddc8289130e551ddcd5ce8a064710c0d064a4d2895c67151c92b5443f6"
2019-06-02 09:08:47 +03:00
[[package]]
2022-03-23 22:31:18 +02:00
name = "async-broadcast"
2022-10-17 22:53:24 +02:00
version = "0.4.1"
2019-06-02 09:08:47 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 22:53:24 +02:00
checksum = "6d26004fe83b2d1cd3a97609b21e39f9a31535822210fe83205d2ce48866ea61"
2022-03-23 22:31:18 +02:00
dependencies = [
"event-listener",
"futures-core",
2022-05-15 09:28:22 +03:00
"parking_lot",
2022-03-23 22:31:18 +02:00
]
2019-06-02 09:08:47 +03:00
2018-11-07 14:31:44 +02:00
[[package]]
2022-03-23 22:31:18 +02:00
name = "async-channel"
2022-10-17 22:53:24 +02:00
version = "1.7.1"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 22:53:24 +02:00
checksum = "e14485364214912d3b19cc3435dde4df66065127f05fa0d75c712f36f12c2f28"
2022-03-23 22:31:18 +02:00
dependencies = [
"concurrent-queue",
"event-listener",
"futures-core",
]
[[package]]
name = "async-executor"
version = "1.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "871f9bb5e0a22eeb7e8cf16641feb87c9dc67032ccf8ff49e772eb9941d3a965"
dependencies = [
"async-task",
"concurrent-queue",
"fastrand",
"futures-lite",
"once_cell",
"slab",
]
2018-11-07 14:31:44 +02:00
[[package]]
name = "async-io"
2022-11-02 16:25:54 +00:00
version = "1.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-02 16:25:54 +00:00
checksum = "e8121296a9f05be7f34aa4196b1747243b3b62e048bb7906f644f3fbfc490cf7"
dependencies = [
2022-11-02 16:25:54 +00:00
"async-lock",
2022-10-17 22:53:24 +02:00
"autocfg",
"concurrent-queue",
"futures-lite",
"libc",
"log",
"parking",
"polling",
"slab",
2021-07-06 09:38:10 +03:00
"socket2",
"waker-fn",
"winapi",
]
2022-03-23 22:31:18 +02:00
[[package]]
name = "async-lock"
2022-11-02 16:25:54 +00:00
version = "2.6.0"
2022-03-23 22:31:18 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-02 16:25:54 +00:00
checksum = "c8101efe8695a6c17e02911402145357e718ac92d3ff88ae8419e84b1707b685"
2022-03-23 22:31:18 +02:00
dependencies = [
"event-listener",
2022-11-02 16:25:54 +00:00
"futures-lite",
2022-03-23 22:31:18 +02:00
]
[[package]]
name = "async-recursion"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d7d78656ba01f1b93024b7c3a0467f1608e4be67d725749fdcd7d2c7678fd7a2"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "async-task"
2022-10-17 22:53:24 +02:00
version = "4.3.0"
2022-03-23 22:31:18 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 22:53:24 +02:00
checksum = "7a40729d2133846d9ed0ea60a8b9541bccddab49cd30f0715a1da672fe9a2524"
2022-03-23 22:31:18 +02:00
[[package]]
name = "async-trait"
2022-11-02 16:25:54 +00:00
version = "0.1.58"
2022-03-23 22:31:18 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-02 16:25:54 +00:00
checksum = "1e805d94e6b5001b651426cf4cd446b1ab5f319d27bab5c644f61de0a804360c"
2022-03-23 22:31:18 +02:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
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"
2022-03-23 22:31:18 +02:00
version = "1.1.0"
2020-02-10 22:17:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-23 22:31:18 +02:00
checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
2020-02-10 22:17:59 +02:00
2020-06-11 17:39:06 +03:00
[[package]]
name = "base64"
2022-11-02 16:25:54 +00:00
version = "0.13.1"
2020-06-11 17:39:06 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-02 16:25:54 +00:00
checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
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
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-11-02 16:25:54 +00:00
version = "3.11.1"
2020-05-09 07:22:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-02 16:25:54 +00:00
checksum = "572f695136211188308f16ad2ca5c851a712c464060ae6974944458eb83880ba"
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"
2022-10-17 22:53:24 +02:00
version = "1.2.1"
2019-07-16 08:56:26 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 22:53:24 +02:00
checksum = "ec8a7b6a70fde80372154c65702f00a0f56f3e1c36abbc6c440484be248856db"
[[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"
2022-11-02 16:25:54 +00:00
version = "1.0.74"
2018-05-29 23:48:30 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-02 16:25:54 +00:00
checksum = "581f5dba903aac52ea3feb5ec4810848460ee833876f1f9b0fdeab1f19091574"
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"
2022-10-17 22:53:24 +02:00
version = "0.4.22"
2019-05-21 16:40:00 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 22:53:24 +02:00
checksum = "bfd4d1b31faaa3a89d7934dbded3111da0d2ef28e3ebccdb4f0179f5929d1ef1"
2019-05-21 16:40:00 +03:00
dependencies = [
2022-10-17 22:53:24 +02:00
"iana-time-zone",
"js-sys",
2020-05-09 07:22:51 +03:00
"num-integer",
"num-traits",
2022-03-23 22:31:18 +02:00
"time 0.1.44",
2022-10-17 22:53:24 +02:00
"wasm-bindgen",
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"
version = "3.1.18"
2018-06-12 11:30:03 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d2dbdf4bdacb33466e854ce889eee8dfd5729abf7ccd7664d0a2d60cd384440b"
2018-06-12 11:30:03 +03:00
dependencies = [
2020-05-09 07:22:51 +03:00
"atty",
2021-10-25 22:41:12 +03:00
"bitflags",
"clap_derive",
"clap_lex",
"indexmap",
"lazy_static",
2020-05-09 07:22:51 +03:00
"strsim",
"termcolor",
"textwrap",
]
[[package]]
name = "clap_derive"
version = "3.1.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "25320346e922cffe59c0bbc5410c8d8784509efb321488971081313cb1e1a33c"
dependencies = [
"heck 0.4.0",
"proc-macro-error",
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "clap_lex"
version = "0.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2850f2f5a82cbf437dd5af4d49848fbdfc27c157c3d010345776f952765261c5"
dependencies = [
"os_str_bytes",
2018-06-12 11:30:03 +03:00
]
2022-10-17 22:53:24 +02:00
[[package]]
name = "codespan-reporting"
version = "0.11.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e"
dependencies = [
"termcolor",
"unicode-width",
]
[[package]]
name = "concurrent-queue"
2022-10-17 22:53:24 +02:00
version = "1.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 22:53:24 +02:00
checksum = "af4780a44ab5696ea9e28294517f1fffb421a83a25af521333c838635509db9c"
dependencies = [
"cache-padded",
]
[[package]]
name = "console"
2022-10-17 22:53:24 +02:00
version = "0.15.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 22:53:24 +02:00
checksum = "c050367d967ced717c04b65d8c619d863ef9292ce0c5760028655a2fb298718c"
2020-06-05 15:28:43 +03:00
dependencies = [
"encode_unicode",
2022-10-17 22:53:24 +02:00
"lazy_static",
2020-06-05 15:28:43 +03:00
"libc",
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
]
2022-10-17 22:53:24 +02:00
[[package]]
name = "core-foundation-sys"
version = "0.8.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc"
[[package]]
name = "crc32fast"
2022-03-23 22:31:18 +02:00
version = "1.3.2"
2020-02-13 15:38:28 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-23 22:31:18 +02:00
checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d"
2020-02-13 15:38:28 +02:00
dependencies = [
2022-03-23 22:31:18 +02:00
"cfg-if",
2020-02-13 15:38:28 +02:00
]
2022-04-30 16:17:27 +03:00
[[package]]
name = "crossbeam-utils"
2022-10-17 22:53:24 +02:00
version = "0.8.12"
2022-04-30 16:17:27 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 22:53:24 +02:00
checksum = "edbafec5fa1f196ca66527c1b12c2ec4745ca14b50f1ad8f9f6f720b55d11fac"
2022-04-30 16:17:27 +03:00
dependencies = [
"cfg-if",
2022-10-17 22:53:24 +02:00
]
[[package]]
name = "cxx"
2022-11-02 16:25:54 +00:00
version = "1.0.80"
2022-10-17 22:53:24 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-02 16:25:54 +00:00
checksum = "6b7d4e43b25d3c994662706a1d4fcfc32aaa6afd287502c111b237093bb23f3a"
2022-10-17 22:53:24 +02:00
dependencies = [
"cc",
"cxxbridge-flags",
"cxxbridge-macro",
"link-cplusplus",
]
[[package]]
name = "cxx-build"
2022-11-02 16:25:54 +00:00
version = "1.0.80"
2022-10-17 22:53:24 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-02 16:25:54 +00:00
checksum = "84f8829ddc213e2c1368e51a2564c552b65a8cb6a28f31e576270ac81d5e5827"
2022-10-17 22:53:24 +02:00
dependencies = [
"cc",
"codespan-reporting",
"once_cell",
"proc-macro2",
"quote",
"scratch",
"syn",
]
[[package]]
name = "cxxbridge-flags"
2022-11-02 16:25:54 +00:00
version = "1.0.80"
2022-10-17 22:53:24 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-02 16:25:54 +00:00
checksum = "e72537424b474af1460806647c41d4b6d35d09ef7fe031c5c2fa5766047cc56a"
2022-10-17 22:53:24 +02:00
[[package]]
name = "cxxbridge-macro"
2022-11-02 16:25:54 +00:00
version = "1.0.80"
2022-10-17 22:53:24 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-02 16:25:54 +00:00
checksum = "309e4fb93eed90e1e14bea0da16b209f81813ba9fc7830c20ed151dd7bc0a4d7"
2022-10-17 22:53:24 +02:00
dependencies = [
"proc-macro2",
"quote",
"syn",
2022-04-30 16:17:27 +03: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
]
2022-10-17 22:53:24 +02:00
[[package]]
name = "dirs"
version = "4.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ca3aa72a6f96ea37bbc5aa912f6788242832f75369bdfdadcb0e38423f100059"
dependencies = [
"dirs-sys",
]
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 = [
2022-03-23 22:31:18 +02:00
"cfg-if",
2021-01-07 10:03:20 +02:00
"dirs-sys-next",
2020-01-05 21:55:05 +02:00
]
2019-06-02 09:08:47 +03:00
[[package]]
name = "dirs-sys"
2022-03-23 22:31:18 +02:00
version = "0.3.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-23 22:31:18 +02:00
checksum = "1b1d1d91c932ef41c0f2663aa8b0ca0342d444d842c06914aa0a7e352d0bada6"
dependencies = [
2020-05-09 07:22:51 +03:00
"libc",
2022-03-23 22:31:18 +02:00
"redox_users",
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",
2022-03-23 22:31:18 +02:00
"redox_users",
2021-01-07 10:03:20 +02:00
"winapi",
]
2020-02-29 20:15:28 +02:00
[[package]]
name = "dlv-list"
2022-05-15 09:28:22 +03:00
version = "0.3.0"
2020-02-29 20:15:28 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-15 09:28:22 +03:00
checksum = "0688c2a7f92e427f44895cd63841bff7b29f8d7a1648b9e7e07a4a365b2e1257"
2020-02-29 20:15:28 +02:00
[[package]]
name = "either"
2022-10-17 22:53:24 +02:00
version = "1.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 22:53:24 +02:00
checksum = "90e5c1c8368803113bf0c9584fc495a58b86dc8a29edbf8fe877d21d9507e797"
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"
2022-05-15 09:28:22 +03:00
version = "0.8.31"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-15 09:28:22 +03:00
checksum = "9852635589dc9f9ea1b6fe9f05b50ef208c85c834a562f0c6abb1c475736ec2b"
2018-11-07 14:31:44 +02:00
dependencies = [
2022-03-23 22:31:18 +02:00
"cfg-if",
2018-11-07 14:31:44 +02:00
]
[[package]]
name = "enumflags2"
2022-05-15 09:28:22 +03:00
version = "0.7.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-15 09:28:22 +03:00
checksum = "e75d4cd21b95383444831539909fbb14b9dc3fdceb2a6f5d36577329a1f55ccb"
dependencies = [
"enumflags2_derive",
"serde",
]
[[package]]
name = "enumflags2_derive"
2022-05-15 09:28:22 +03:00
version = "0.7.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-15 09:28:22 +03:00
checksum = "f58dc3c5e468259f19f2d46304a6b28f1c3d034442e14b322d2b850e36f6d5ae"
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
]
2022-03-23 22:31:18 +02:00
[[package]]
name = "event-listener"
2022-10-17 22:53:24 +02:00
version = "2.5.3"
2022-03-23 22:31:18 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 22:53:24 +02:00
checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0"
2022-03-23 22:31:18 +02:00
[[package]]
name = "fastrand"
2022-10-17 22:53:24 +02:00
version = "1.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 22:53:24 +02:00
checksum = "a7a407cfaa3385c4ae6b23e84623d48c2798d06e3e6a1878f7f59f17b3f86499"
dependencies = [
"instant",
]
2018-11-07 14:31:44 +02:00
[[package]]
name = "filetime"
2022-11-02 16:25:54 +00:00
version = "0.2.18"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-02 16:25:54 +00:00
checksum = "4b9663d381d07ae25dc88dbdf27df458faa83a9b25336bcac83d5e452b5fc9d3"
2018-11-07 14:31:44 +02:00
dependencies = [
2022-03-23 22:31:18 +02:00
"cfg-if",
2020-05-09 07:22:51 +03:00
"libc",
2022-03-23 22:31:18 +02:00
"redox_syscall",
2022-10-17 22:53:24 +02:00
"windows-sys",
2018-11-07 14:31:44 +02:00
]
[[package]]
name = "flate2"
2022-10-17 22:53:24 +02:00
version = "1.0.24"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 22:53:24 +02:00
checksum = "f82b0f4c27ad9f8bfd1f3208d882da2b09c301bc1c828fd3a00d0216d2fbbff6"
2018-11-07 14:31:44 +02:00
dependencies = [
2020-05-09 07:22:51 +03:00
"crc32fast",
"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
2020-12-07 20:51:41 +02:00
[[package]]
name = "form_urlencoded"
2022-10-17 22:53:24 +02:00
version = "1.1.0"
2020-12-07 20:51:41 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 22:53:24 +02:00
checksum = "a9c384f161156f5260c24a097c56119f9be8c798586aecc13afbcbe7b7e26bf8"
2020-12-07 20:51:41 +02:00
dependencies = [
2021-01-07 10:03:20 +02:00
"percent-encoding",
]
[[package]]
name = "futures"
2022-11-02 16:25:54 +00:00
version = "0.3.25"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-02 16:25:54 +00:00
checksum = "38390104763dc37a5145a53c29c63c1290b5d316d6086ec32c293f6736051bb0"
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-11-02 16:25:54 +00:00
version = "0.3.25"
2020-05-09 07:22:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-02 16:25:54 +00:00
checksum = "52ba265a92256105f45b719605a571ffe2d1f0fea3807304b522c1d778f79eed"
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-11-02 16:25:54 +00:00
version = "0.3.25"
2020-02-10 22:17:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-02 16:25:54 +00:00
checksum = "04909a7a7e4633ae6c4a9ab280aeb86da1236243a77b694a49eacd659a4bd3ac"
2020-02-10 22:17:59 +02:00
[[package]]
name = "futures-executor"
2022-11-02 16:25:54 +00:00
version = "0.3.25"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-02 16:25:54 +00:00
checksum = "7acc85df6714c176ab5edf386123fafe217be88c0840ec11f199441134a074e2"
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-11-02 16:25:54 +00:00
version = "0.3.25"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-02 16:25:54 +00:00
checksum = "00f5fb52a06bdcadeb54e8d3671f8888a39697dcb0b81b23b55174030427f4eb"
[[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-11-02 16:25:54 +00:00
version = "0.3.25"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-02 16:25:54 +00:00
checksum = "bdfb8ce053d86b91919aad980c220b1fb8401a9394410e1c289ed7e66b61835d"
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-11-02 16:25:54 +00:00
version = "0.3.25"
2020-05-09 07:22:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-02 16:25:54 +00:00
checksum = "39c15cf1a4aa79df40f1bb462fb39676d0ad9e366c2a33b590d7c66f4f81fcf9"
2020-05-09 07:22:51 +03:00
[[package]]
name = "futures-task"
2022-11-02 16:25:54 +00:00
version = "0.3.25"
2020-05-09 07:22:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-02 16:25:54 +00:00
checksum = "2ffb393ac5d9a6eaa9d3fdf37ae2776656b706e200c8e16b1bdb227f5198e6ea"
2020-05-09 07:22:51 +03:00
[[package]]
name = "futures-util"
2022-11-02 16:25:54 +00:00
version = "0.3.25"
2020-05-09 07:22:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-02 16:25:54 +00:00
checksum = "197676987abd2f9cadff84926f410af1c183608d36641465df73ae8211dc65d6"
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"
2022-11-02 16:25:54 +00:00
version = "0.2.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-02 16:25:54 +00:00
checksum = "c05aeb6a22b8f62540c194aac980f2115af067bfe15a0734d7277a768d396b31"
dependencies = [
2022-03-23 22:31:18 +02:00
"cfg-if",
"libc",
2022-10-17 22:53:24 +02:00
"wasi 0.11.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"
version = "0.3.12"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "62eeb471aa3e3c9197aa4bfeabfe02982f6dc96f750486c0bb0009ac58b26d2b"
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"
2022-10-17 22:53:24 +02:00
version = "0.12.3"
2021-07-06 09:38:10 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 22:53:24 +02:00
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
2022-05-15 09:28:22 +03:00
dependencies = [
"ahash",
]
2021-07-06 09:38:10 +03:00
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 = "heck"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2540771e65fc8cb83cd6e8a237f70c319bd5c29f78ed1084ba5d50eeac86f7f9"
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
]
2022-03-23 22:31:18 +02:00
[[package]]
name = "hex"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
[[package]]
name = "home"
version = "0.5.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "747309b4b440c06d57b0b25f2aee03ee9b5e5397d288c60e21fc709bb98a7408"
dependencies = [
"winapi",
]
2018-11-07 14:31:44 +02:00
[[package]]
name = "http"
2022-10-17 22:53:24 +02:00
version = "0.2.8"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 22:53:24 +02:00
checksum = "75f43d41e26995c17e71ee126451dd3941010b0514a81a9d11f3b341debc2399"
2018-11-07 14:31:44 +02:00
dependencies = [
"bytes",
2020-05-09 07:22:51 +03:00
"fnv",
2022-03-23 22:31:18 +02:00
"itoa",
2018-11-07 14:31:44 +02:00
]
2019-05-30 21:14:21 +03:00
[[package]]
name = "http-body"
2022-10-17 22:53:24 +02:00
version = "0.4.5"
2019-05-30 21:14:21 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 22:53:24 +02:00
checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1"
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"
2022-10-17 22:53:24 +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-10-17 22:53:24 +02:00
checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904"
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"
2022-11-02 16:25:54 +00:00
version = "0.14.22"
2020-05-09 07:22:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-02 16:25:54 +00:00
checksum = "abfba89e19b959ca163c7752ba59d737c1ceea53a5d31a149c805446fc958064"
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",
2022-03-23 22:31:18 +02: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
]
2022-04-30 16:17:27 +03:00
[[package]]
name = "hyper-rustls"
version = "0.23.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d87c48c02e0dc5e3b849a2041db3029fd066650f8f717c07bf8ed78ccb895cac"
dependencies = [
"http",
"hyper",
"rustls",
"tokio",
"tokio-rustls",
]
2022-10-17 22:53:24 +02:00
[[package]]
name = "iana-time-zone"
2022-11-02 16:25:54 +00:00
version = "0.1.53"
2022-10-17 22:53:24 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-02 16:25:54 +00:00
checksum = "64c122667b287044802d6ce17ee2ddf13207ed924c712de9a66a5814d5b64765"
2022-10-17 22:53:24 +02:00
dependencies = [
"android_system_properties",
"core-foundation-sys",
"iana-time-zone-haiku",
"js-sys",
"wasm-bindgen",
"winapi",
]
[[package]]
name = "iana-time-zone-haiku"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0703ae284fc167426161c2e3f1da3ea71d94b21bedbcc9494e92b28e334e3dca"
dependencies = [
"cxx",
"cxx-build",
]
2019-09-04 21:07:43 +03:00
[[package]]
name = "idna"
2022-10-17 22:53:24 +02:00
version = "0.3.0"
2019-09-04 21:07:43 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 22:53:24 +02:00
checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6"
2019-09-04 21:07:43 +03:00
dependencies = [
2020-05-09 07:22:51 +03:00
"unicode-bidi",
"unicode-normalization",
2019-09-04 21:07:43 +03:00
]
2018-11-07 14:31:44 +02:00
[[package]]
name = "indexmap"
2022-10-17 22:53:24 +02:00
version = "1.9.1"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 22:53:24 +02:00
checksum = "10a35a97730320ffe8e2d410b5d3b69279b98d2c14bdb8b70ea89ecf7888d41e"
2019-10-26 21:36:50 +03:00
dependencies = [
2020-05-09 07:22:51 +03:00
"autocfg",
2022-10-17 22:53:24 +02:00
"hashbrown",
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 = [
2022-03-23 22:31:18 +02:00
"cfg-if",
]
2020-08-09 09:14:39 +03:00
[[package]]
name = "ipnet"
2022-05-15 09:28:22 +03:00
version = "2.5.0"
2020-08-09 09:14:39 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-15 09:28:22 +03:00
checksum = "879d54834c8c76457ef4293a689b2a8c59b076067ad77b15efafbb05f92a592b"
2020-05-09 07:22:51 +03:00
2021-12-16 09:44:19 +02:00
[[package]]
name = "itoa"
2022-10-17 22:53:24 +02:00
version = "1.0.4"
2021-12-16 09:44:19 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 22:53:24 +02:00
checksum = "4217ad341ebadf8d8e724e264f13e593e0648f5b3e94b3896a5df283be015ecc"
2021-12-16 09:44:19 +02:00
2020-05-09 07:22:51 +03:00
[[package]]
name = "js-sys"
2022-10-17 22:53:24 +02:00
version = "0.3.60"
2020-05-09 07:22:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 22:53:24 +02:00
checksum = "49409df3e3bf0856b916e2ceaca09ee28e6871cf7d9ce97a692cacfdb2a25a47"
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-11-02 16:25:54 +00:00
version = "0.2.137"
2022-05-15 09:28:22 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-02 16:25:54 +00:00
checksum = "fc7fcc620a3bff7cdd7a365be3376c97191aeaccc2a603e600951e452615bf89"
2022-10-17 22:53:24 +02:00
[[package]]
name = "link-cplusplus"
version = "1.0.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9272ab7b96c9046fbc5bc56c06c117cb639fe2d509df0c421cad82d2915cf369"
dependencies = [
"cc",
]
2022-05-15 09:28:22 +03:00
[[package]]
name = "lock_api"
2022-10-17 22:53:24 +02:00
version = "0.4.9"
2018-05-29 23:48:30 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 22:53:24 +02:00
checksum = "435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df"
2022-05-15 09:28:22 +03:00
dependencies = [
"autocfg",
"scopeguard",
]
2018-05-29 23:48:30 +03:00
2018-06-17 14:17:36 +03:00
[[package]]
name = "log"
2022-05-15 09:28:22 +03:00
version = "0.4.17"
2018-06-17 14:17:36 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-15 09:28:22 +03:00
checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
2018-06-17 14:17:36 +03:00
dependencies = [
2022-03-23 22:31:18 +02:00
"cfg-if",
2018-06-17 14:17:36 +03:00
]
2020-01-03 10:26:21 +02:00
[[package]]
name = "mac-notification-sys"
2022-10-17 22:53:24 +02:00
version = "0.5.6"
2020-01-03 10:26:21 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 22:53:24 +02:00
checksum = "3e72d50edb17756489e79d52eb146927bec8eba9dd48faadf9ef08bca3791ad5"
2020-01-03 10:26:21 +02:00
dependencies = [
2020-05-09 07:22:51 +03:00
"cc",
2022-03-23 22:31:18 +02:00
"dirs-next",
2020-05-09 07:22:51 +03:00
"objc-foundation",
2022-03-23 22:31:18 +02:00
"objc_id",
2022-11-02 16:25:54 +00:00
"time 0.3.16",
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-06-17 14:17:36 +03:00
[[package]]
name = "memchr"
2022-05-15 09:28:22 +03:00
version = "2.5.0"
2021-10-25 22:41:12 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-15 09:28:22 +03:00
checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
2021-10-25 22:41:12 +03:00
[[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"
2022-10-17 22:53:24 +02:00
version = "0.5.4"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 22:53:24 +02:00
checksum = "96590ba8f175222643a85693f33d26e9c8a015f599c216509b1a6894af675d34"
2018-11-07 14:31:44 +02:00
dependencies = [
2021-07-06 09:38:10 +03:00
"adler",
2018-11-07 14:31:44 +02:00
]
[[package]]
name = "mio"
version = "0.7.14"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8067b404fe97c70829f082dec8bcf4f71225d7eaea1d8645349cb76fa06205cc"
2018-11-07 14:31:44 +02:00
dependencies = [
2020-05-09 07:22:51 +03:00
"libc",
"log",
"miow",
"ntapi",
"winapi",
]
[[package]]
name = "miow"
version = "0.3.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b9f1c5b025cda876f66ef43a113f91ebc9f4ccef34843000e0adf6ebbab84e21"
dependencies = [
"winapi",
]
[[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",
2022-03-23 22:31:18 +02:00
"cfg-if",
2020-05-09 07:22:51 +03:00
"libc",
2021-10-25 22:41:12 +03:00
"memoffset",
]
2022-05-15 09:28:22 +03:00
[[package]]
name = "nix"
2022-10-17 22:53:24 +02:00
version = "0.24.2"
2022-05-15 09:28:22 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 22:53:24 +02:00
checksum = "195cdbc1741b8134346d515b3a56a1c94b0912758009cfd53f99ea0f57b065fc"
2022-05-15 09:28:22 +03:00
dependencies = [
"bitflags",
"cfg-if",
"libc",
"memoffset",
]
2020-01-03 10:26:21 +02:00
[[package]]
name = "notify-rust"
2022-10-17 22:53:24 +02:00
version = "4.5.10"
2020-01-03 10:26:21 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 22:53:24 +02:00
checksum = "368e89ea58df747ce88be669ae44e79783c1d30bfd540ad0fc520b3f41f0b3b0"
2020-01-03 10:26:21 +02:00
dependencies = [
2020-05-09 07:22:51 +03:00
"mac-notification-sys",
"serde",
2022-10-17 22:53:24 +02:00
"tauri-winrt-notification",
"zbus",
"zvariant",
"zvariant_derive",
2020-01-03 10:26:21 +02:00
]
[[package]]
name = "ntapi"
version = "0.3.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c28774a7fd2fbb4f0babd8237ce554b73af68021b5f695a3cebd6c59bac0980f"
dependencies = [
"winapi",
]
2019-05-21 16:40:00 +03:00
[[package]]
name = "num-integer"
2022-05-15 09:28:22 +03:00
version = "0.1.45"
2019-05-21 16:40:00 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-15 09:28:22 +03:00
checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9"
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"
2022-05-15 09:28:22 +03:00
version = "0.2.15"
2019-05-21 16:40:00 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-15 09:28:22 +03:00
checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd"
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
]
2022-03-23 22:31:18 +02:00
[[package]]
name = "num_threads"
2022-05-15 09:28:22 +03:00
version = "0.1.6"
2022-03-23 22:31:18 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-15 09:28:22 +03:00
checksum = "2819ce041d2ee131036f4fc9d6ae7ae125a3a40e97ba64d04fe799ad9dabbb44"
2022-03-23 22:31:18 +02:00
dependencies = [
"libc",
]
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"
2022-11-02 16:25:54 +00:00
version = "1.16.0"
2020-05-15 21:10:15 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-02 16:25:54 +00:00
checksum = "86f0b0d4bf799edbc74508c1e8bf170ff5f41238e5f8225603ca7caaae2b7860"
2020-05-15 21:10:15 +03:00
2020-02-29 20:15:28 +02:00
[[package]]
name = "ordered-multimap"
2022-05-15 09:28:22 +03:00
version = "0.4.3"
2020-02-29 20:15:28 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-15 09:28:22 +03:00
checksum = "ccd746e37177e1711c20dd619a1620f34f5c8b569c53590a72dedd5344d8924a"
2020-02-29 20:15:28 +02:00
dependencies = [
2020-05-09 07:22:51 +03:00
"dlv-list",
2022-10-17 22:53:24 +02:00
"hashbrown",
2020-02-29 20:15:28 +02:00
]
2022-03-23 22:31:18 +02:00
[[package]]
name = "ordered-stream"
version = "0.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "44630c059eacfd6e08bdaa51b1db2ce33119caa4ddc1235e923109aa5f25ccb1"
dependencies = [
"futures-core",
"pin-project-lite",
]
[[package]]
name = "os_str_bytes"
2022-11-02 16:25:54 +00:00
version = "6.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-02 16:25:54 +00:00
checksum = "3baf96e39c5359d2eb0dd6ccb42c62b91d9678aa68160d261b9e0ccbf9e9dea9"
[[package]]
name = "parking"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "427c3892f9e783d91cc128285287e70a59e206ca452770ece88a76f7a3eddd72"
2022-05-15 09:28:22 +03:00
[[package]]
name = "parking_lot"
2022-10-17 22:53:24 +02:00
version = "0.12.1"
2022-05-15 09:28:22 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 22:53:24 +02:00
checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
2022-05-15 09:28:22 +03:00
dependencies = [
"lock_api",
"parking_lot_core",
]
[[package]]
name = "parking_lot_core"
2022-11-02 16:25:54 +00:00
version = "0.9.4"
2022-05-15 09:28:22 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-02 16:25:54 +00:00
checksum = "4dc9e0dc2adc1c69d09143aff38d3d30c5c3f0df0dad82e6d25547af174ebec0"
2022-05-15 09:28:22 +03:00
dependencies = [
"cfg-if",
"libc",
"redox_syscall",
"smallvec",
2022-10-17 22:53:24 +02:00
"windows-sys",
2022-05-15 09:28:22 +03:00
]
[[package]]
name = "parselnk"
2022-03-23 22:31:18 +02:00
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-23 22:31:18 +02:00
checksum = "0088616e6efe53ab79907b9313f4743eb3f8a16eb1e0014af810164808906dc3"
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"
2022-10-17 22:53:24 +02:00
version = "2.2.0"
2019-05-12 10:20:40 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 22:53:24 +02:00
checksum = "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e"
2019-05-12 10:20:40 +03:00
2018-11-07 14:31:44 +02:00
[[package]]
2020-05-09 07:22:51 +03:00
name = "pin-project-lite"
2022-05-15 09:28:22 +03:00
version = "0.2.9"
2020-12-07 20:51:41 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-15 09:28:22 +03:00
checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116"
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]]
name = "polling"
2022-11-02 16:25:54 +00:00
version = "2.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-02 16:25:54 +00:00
checksum = "ab4609a838d88b73d8238967b60dd115cc08d38e2bbaf51ee1e4b695f89122e2"
dependencies = [
2022-10-17 22:53:24 +02:00
"autocfg",
2022-03-23 22:31:18 +02:00
"cfg-if",
"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"
2022-10-17 22:53:24 +02:00
version = "1.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 22:53:24 +02:00
checksum = "eda0fc3b0fb7c975631757e14d9049da17374063edb6ebbcbc54d880d4fe94e9"
2021-07-06 09:38:10 +03:00
dependencies = [
2022-10-17 22:53:24 +02:00
"once_cell",
2021-07-06 09:38:10 +03:00
"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-10-17 22:53:24 +02:00
version = "1.0.47"
2019-05-12 10:20:40 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 22:53:24 +02:00
checksum = "5ea3d908b0e36316caf9e9e2c4625cdde190a7e6f440d794667ed17a1855e725"
2020-02-13 15:38:28 +02:00
dependencies = [
2022-10-17 22:53:24 +02:00
"unicode-ident",
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"
2022-04-30 16:17:27 +03:00
version = "0.22.0"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-30 16:17:27 +03:00
checksum = "8533f14c8382aaad0d592c812ac3b826162128b65662331e1127b45c3d18536b"
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]]
2022-10-17 22:53:24 +02:00
name = "quick-xml"
version = "0.23.1"
2019-08-13 14:27:41 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 22:53:24 +02:00
checksum = "11bafc859c6815fbaffbbbf4229ecb767ac913fecb27f9ad4343662e9ef099ea"
2020-02-13 15:38:28 +02:00
dependencies = [
2022-10-17 22:53:24 +02:00
"memchr",
2020-02-13 15:38:28 +02:00
]
2022-05-15 09:28:22 +03:00
[[package]]
2022-10-17 22:53:24 +02:00
name = "quote"
version = "1.0.21"
2022-05-15 09:28:22 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 22:53:24 +02:00
checksum = "bbe448f377a7d6961e30f5955f9b8d106c3f5e449d493ee1b125c1d43c2b5179"
2022-05-15 09:28:22 +03:00
dependencies = [
2022-10-17 22:53:24 +02:00
"proc-macro2",
2022-05-15 09:28:22 +03:00
]
[[package]]
name = "rand"
2022-03-23 22:31:18 +02:00
version = "0.8.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-23 22:31:18 +02:00
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
dependencies = [
"libc",
2021-07-06 09:38:10 +03:00
"rand_chacha",
2022-10-17 22:53:24 +02:00
"rand_core",
]
[[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",
2022-10-17 22:53:24 +02:00
"rand_core",
]
2022-05-15 09:28:22 +03:00
[[package]]
name = "rand_core"
2022-10-17 22:53:24 +02:00
version = "0.6.4"
2019-07-16 08:56:26 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 22:53:24 +02:00
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
2019-07-16 08:56:26 +03:00
dependencies = [
2022-03-23 22:31:18 +02:00
"getrandom",
2018-12-12 13:05:02 +02:00
]
2018-05-31 16:00:01 +03:00
[[package]]
name = "redox_syscall"
2022-10-17 22:53:24 +02:00
version = "0.2.16"
2018-05-31 16:00:01 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 22:53:24 +02:00
checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
dependencies = [
2021-10-25 22:41:12 +03:00
"bitflags",
]
2019-06-02 09:08:47 +03:00
[[package]]
name = "redox_users"
2022-05-15 09:28:22 +03:00
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-15 09:28:22 +03:00
checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b"
dependencies = [
2022-03-23 22:31:18 +02:00
"getrandom",
"redox_syscall",
"thiserror",
]
2018-06-17 14:17:36 +03:00
[[package]]
name = "regex"
version = "1.5.6"
2018-06-17 14:17:36 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d83f127d94bdbcda4c8cc2e50f6f84f4b611f69c902699ca385a39c3a75f9ff1"
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"
2022-10-17 22:53:24 +02:00
version = "0.6.27"
2018-06-17 14:17:36 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 22:53:24 +02:00
checksum = "a3f87b73ce11b1619a3c6332f45341e0047173771e8b8b73f87bfeefb7b56244"
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-10-17 22:53:24 +02:00
version = "0.11.12"
2020-05-09 07:22:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 22:53:24 +02:00
checksum = "431949c384f4e2ae07605ccaa56d1d9d2ecdb5cadd4f9577ccfab29f2e5149fc"
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",
2022-04-30 16:17:27 +03:00
"hyper-rustls",
2020-08-09 09:14:39 +03:00
"ipnet",
2020-05-09 07:22:51 +03:00
"js-sys",
"log",
"mime",
2022-10-17 22:53:24 +02:00
"once_cell",
2021-01-07 10:03:20 +02:00
"percent-encoding",
"pin-project-lite",
2022-04-30 16:17:27 +03:00
"rustls",
"rustls-pemfile",
2020-05-09 07:22:51 +03:00
"serde",
"serde_json",
"serde_urlencoded",
"tokio",
2022-04-30 16:17:27 +03:00
"tokio-rustls",
2022-10-17 22:53:24 +02:00
"tower-service",
2020-05-09 07:22:51 +03:00
"url",
"wasm-bindgen",
"wasm-bindgen-futures",
"web-sys",
2022-04-30 16:17:27 +03:00
"webpki-roots",
2020-05-09 07:22:51 +03:00
"winreg",
]
2022-04-30 16:17:27 +03:00
[[package]]
name = "ring"
version = "0.16.20"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc"
dependencies = [
"cc",
"libc",
"once_cell",
"spin",
"untrusted",
"web-sys",
"winapi",
]
2020-02-11 09:37:22 +02:00
[[package]]
name = "rust-ini"
2022-05-15 09:28:22 +03:00
version = "0.18.0"
2020-02-11 09:37:22 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-15 09:28:22 +03:00
checksum = "f6d5f2436026b4f6e79dc829837d467cc7e9a55ee40e750d716713540715a2df"
2020-02-11 09:37:22 +02:00
dependencies = [
2022-03-23 22:31:18 +02:00
"cfg-if",
2020-05-09 07:22:51 +03:00
"ordered-multimap",
2020-02-11 09:37:22 +02:00
]
2022-04-30 16:17:27 +03:00
[[package]]
name = "rustls"
2022-11-02 16:25:54 +00:00
version = "0.20.7"
2022-04-30 16:17:27 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-02 16:25:54 +00:00
checksum = "539a2bfe908f471bfa933876bd1eb6a19cf2176d375f82ef7f99530a40e48c2c"
2022-04-30 16:17:27 +03:00
dependencies = [
"log",
"ring",
"sct",
"webpki",
]
[[package]]
name = "rustls-pemfile"
2022-10-17 22:53:24 +02:00
version = "1.0.1"
2022-04-30 16:17:27 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 22:53:24 +02:00
checksum = "0864aeff53f8c05aa08d86e5ef839d3dfcf07aeba2db32f12db0ef716e87bd55"
2022-04-30 16:17:27 +03:00
dependencies = [
"base64",
]
2022-01-24 12:10:02 +02:00
[[package]]
name = "rustversion"
2022-10-17 22:53:24 +02:00
version = "1.0.9"
2022-01-24 12:10:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 22:53:24 +02:00
checksum = "97477e48b4cf8603ad5f7aaf897467cf42ab4218a38ef76fb14c2d6773a6d6a8"
2022-01-24 12:10:02 +02:00
2018-11-07 14:31:44 +02:00
[[package]]
name = "ryu"
2022-10-17 22:53:24 +02:00
version = "1.0.11"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 22:53:24 +02:00
checksum = "4501abdff3ae82a1c1b477a17252eb69cee9e66eb915c1abaa4f44d873df9f09"
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",
]
2022-05-15 09:28:22 +03:00
[[package]]
name = "scopeguard"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
2022-10-17 22:53:24 +02:00
[[package]]
name = "scratch"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9c8132065adcfd6e02db789d9285a0deb2f3fcb04002865ab67d5fb103533898"
2022-04-30 16:17:27 +03:00
[[package]]
name = "sct"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d53dcdb7c9f8158937a7981b48accfd39a43af418591a5d008c7b22b5e1b7ca4"
dependencies = [
"ring",
"untrusted",
]
2018-11-07 14:31:44 +02:00
[[package]]
name = "self_update"
2022-04-30 16:17:27 +03:00
version = "0.30.0"
2019-01-13 22:54:51 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-30 16:17:27 +03:00
checksum = "88c865d17fb512577be02a09fd2fd96c31c7e46fe649205d84feefd8b2a332da"
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",
2022-10-17 22:53:24 +02:00
"quick-xml 0.22.0",
2020-05-09 07:22:51 +03:00
"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"
2022-10-17 22:53:24 +02:00
version = "1.0.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 22:53:24 +02:00
checksum = "e25dfac463d778e353db5be2449d1cce89bd6fd23c9f1ea21310ce6e5a1b29c4"
[[package]]
name = "serde"
2022-11-02 16:25:54 +00:00
version = "1.0.147"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-02 16:25:54 +00:00
checksum = "d193d69bae983fc11a79df82342761dfbf28a99fc8d203dca4c3c1b590948965"
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-11-02 16:25:54 +00:00
version = "1.0.147"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-02 16:25:54 +00:00
checksum = "4f1d362ca8fc9c3e3a7484440752472d68a6caa98f1ab81d99b5dfe517cec852"
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-11-02 16:25:54 +00:00
version = "1.0.87"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-02 16:25:54 +00:00
checksum = "6ce777b7b150d76b9cf60d28b55f5847135a003f7d7350c6be7a773508ce7d45"
2018-11-07 14:31:44 +02:00
dependencies = [
2022-03-23 22:31:18 +02:00
"itoa",
2020-05-09 07:22:51 +03:00
"ryu",
"serde",
2018-11-07 14:31:44 +02:00
]
[[package]]
name = "serde_repr"
2022-10-17 22:53:24 +02:00
version = "0.1.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 22:53:24 +02:00
checksum = "1fe39d9fbb0ebf5eb2c7cb7e2a47e4f462fad1379f1166b8ae49ad9eae89a7ca"
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-03-23 22:31:18 +02: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
]
2022-03-23 22:31:18 +02:00
[[package]]
name = "sha1"
version = "0.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c1da05c97445caa12d05e848c4a4fcbbea29e748ac28f7e80e9b010392063770"
dependencies = [
"sha1_smol",
]
[[package]]
name = "sha1_smol"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ae1a47186c03a32177042e55dbc5fd5aee900b8e0069a8d70fba96a9375cd012"
[[package]]
name = "shell-words"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde"
[[package]]
name = "shellexpand"
2022-10-17 22:53:24 +02:00
version = "2.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 22:53:24 +02:00
checksum = "7ccc8076840c4da029af4f87e4e8daeb0fca6b87bbb02e10cb60b791450e11e4"
2020-01-05 21:55:05 +02:00
dependencies = [
2022-10-17 22:53:24 +02:00
"dirs",
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"
2022-10-17 22:53:24 +02:00
version = "0.4.7"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 22:53:24 +02:00
checksum = "4614a76b2a8be0058caa9dbbaf66d988527d86d003c11a94fbd335d7661edcef"
dependencies = [
"autocfg",
]
2022-05-15 09:28:22 +03:00
[[package]]
name = "smallvec"
2022-10-17 22:53:24 +02:00
version = "1.10.0"
2022-05-15 09:28:22 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 22:53:24 +02:00
checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0"
2020-02-13 15:38:28 +02:00
[[package]]
name = "socket2"
2022-10-17 22:53:24 +02:00
version = "0.4.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 22:53:24 +02:00
checksum = "02e2d2db9033d13a1567121ddd7a095ee144db4e1ca1b1bda3419bc0da294ebd"
dependencies = [
"libc",
2021-01-07 10:03:20 +02:00
"winapi",
]
2022-04-30 16:17:27 +03:00
[[package]]
name = "spin"
version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"
[[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"
version = "0.10.0"
2018-06-12 11:30:03 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
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"
2022-10-17 22:53:24 +02:00
version = "0.24.1"
2022-01-24 12:10:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 22:53:24 +02:00
checksum = "063e6045c0e62079840579a7e47a355ae92f60eb74daaf156fb1e84ba164e63f"
2022-01-24 12:10:02 +02:00
dependencies = [
2022-10-17 22:53:24 +02:00
"strum_macros 0.24.3",
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 = [
"heck 0.3.3",
2021-10-25 22:41:12 +03:00
"proc-macro2",
"quote",
"syn",
2019-09-28 14:41:06 +03:00
]
2022-01-24 12:10:02 +02:00
[[package]]
name = "strum_macros"
2022-10-17 22:53:24 +02:00
version = "0.24.3"
2022-01-24 12:10:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 22:53:24 +02:00
checksum = "1e385be0d24f186b4ce2f9982191e7101bb737312ad61c1f2f984f34bcf85d59"
2022-01-24 12:10:02 +02:00
dependencies = [
2022-05-15 09:28:22 +03:00
"heck 0.4.0",
2022-01-24 12:10:02 +02:00
"proc-macro2",
"quote",
"rustversion",
"syn",
]
2019-08-22 21:53:38 +03:00
[[package]]
name = "syn"
2022-11-02 16:25:54 +00:00
version = "1.0.103"
2019-08-22 21:53:38 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-02 16:25:54 +00:00
checksum = "a864042229133ada95abf3b54fdc62ef5ccabe9515b64717bcb9a1919e59445d"
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",
2022-10-17 22:53:24 +02:00
"unicode-ident",
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
]
2022-05-15 09:28:22 +03:00
[[package]]
2022-10-17 22:53:24 +02:00
name = "tauri-winrt-notification"
version = "0.1.0"
2022-05-15 09:28:22 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 22:53:24 +02:00
checksum = "c58de036c4d2e20717024de2a3c4bf56c301f07b21bc8ef9b57189fce06f1f3b"
2022-05-15 09:28:22 +03:00
dependencies = [
2022-10-17 22:53:24 +02:00
"quick-xml 0.23.1",
"strum 0.22.0",
"windows",
2022-05-15 09:28:22 +03:00
]
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 = [
2022-03-23 22:31:18 +02:00
"cfg-if",
2020-05-09 07:22:51 +03:00
"libc",
"rand",
2022-03-23 22:31:18 +02:00
"redox_syscall",
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"
2022-03-23 22:31:18 +02:00
version = "1.1.3"
2018-06-17 14:17:36 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-23 22:31:18 +02:00
checksum = "bab24d30b911b2376f3a13cc2cd443142f0c81dda04c118693e35b3835757755"
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",
]
[[package]]
name = "textwrap"
version = "0.15.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "949517c0cf1bf4ee812e2e07e08ab448e3ae0d23472aee8a06c985f0c8815b16"
[[package]]
name = "thiserror"
2022-10-17 22:53:24 +02:00
version = "1.0.37"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 22:53:24 +02:00
checksum = "10deb33631e3c9018b9baf9dcbbc4f737320d2b576bac10f6aefa048fa407e3e"
dependencies = [
2020-05-09 07:22:51 +03:00
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
2022-10-17 22:53:24 +02:00
version = "1.0.37"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 22:53:24 +02:00
checksum = "982d17546b47146b28f7c22e3d08465f6b8903d0ea13c1660d9d84a6e7adcdbb"
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
]
2022-03-23 22:31:18 +02:00
[[package]]
name = "time"
2022-11-02 16:25:54 +00:00
version = "0.3.16"
2022-03-23 22:31:18 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-02 16:25:54 +00:00
checksum = "0fab5c8b9980850e06d92ddbe3ab839c062c801f3927c0fb8abd6fc8e918fbca"
2022-03-23 22:31:18 +02:00
dependencies = [
2022-04-30 16:17:27 +03:00
"itoa",
2022-03-23 22:31:18 +02:00
"libc",
"num_threads",
2022-11-02 16:25:54 +00:00
"serde",
"time-core",
2022-04-30 16:17:27 +03:00
"time-macros",
2022-03-23 22:31:18 +02:00
]
2022-11-02 16:25:54 +00:00
[[package]]
name = "time-core"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2e153e1f1acaef8acc537e68b44906d2db6436e2b35ac2c6b42640fff91f00fd"
2022-04-30 16:17:27 +03:00
[[package]]
name = "time-macros"
2022-11-02 16:25:54 +00:00
version = "0.2.5"
2022-04-30 16:17:27 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-02 16:25:54 +00:00
checksum = "65bb801831d812c562ae7d2bfb531f26e66e4e1f6b17307ba4149c5064710e5b"
dependencies = [
"time-core",
]
2022-04-30 16:17:27 +03:00
2020-06-18 22:25:27 +03:00
[[package]]
name = "tinyvec"
2022-05-15 09:28:22 +03:00
version = "1.6.0"
2020-06-18 22:25:27 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-15 09:28:22 +03:00
checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
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"
version = "1.5.1"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cd3b82e6e823a9ee7d7f64b08f8ac3d5f08ac988f23157194bd32af3f2f92767"
2018-11-07 14:31:44 +02:00
dependencies = [
2022-10-17 22:53:24 +02:00
"autocfg",
"bytes",
"libc",
2020-05-09 07:22:51 +03:00
"memchr",
"mio",
"num_cpus",
"once_cell",
2021-01-07 10:03:20 +02:00
"pin-project-lite",
"signal-hook-registry",
2021-01-07 10:03:20 +02:00
"winapi",
2018-11-07 14:31:44 +02:00
]
2022-04-30 16:17:27 +03:00
[[package]]
name = "tokio-rustls"
2022-05-15 09:28:22 +03:00
version = "0.23.4"
2022-04-30 16:17:27 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-15 09:28:22 +03:00
checksum = "c43ee83903113e03984cb9e5cebe6c04a5116269e900e3ddba8f068a62adda59"
2022-04-30 16:17:27 +03:00
dependencies = [
"rustls",
"tokio",
"webpki",
]
2020-02-13 15:38:28 +02:00
[[package]]
2020-05-09 07:22:51 +03:00
name = "tokio-util"
version = "0.6.9"
2020-02-13 15:38:28 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
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"
2022-05-15 09:28:22 +03:00
version = "0.5.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-15 09:28:22 +03:00
checksum = "8d82e1a7758622a465f8cee077614c73484dac5b836c02ff6a40d5d1010324d7"
dependencies = [
2020-05-09 07:22:51 +03:00
"serde",
]
2018-05-29 23:48:30 +03:00
[[package]]
name = "topgrade"
version = "10.1.2"
2021-07-06 09:40:04 +03:00
dependencies = [
2021-07-19 09:34:14 +03:00
"anyhow",
2022-03-23 22:31:18 +02:00
"cfg-if",
2021-07-19 09:34:14 +03:00
"chrono",
"clap",
2021-07-19 09:34:14 +03:00
"console",
"directories",
"futures",
"glob",
"home",
2021-07-19 09:34:14 +03:00
"lazy_static",
"log",
2022-10-17 22:53:24 +02:00
"nix 0.24.2",
2020-05-09 07:22:51 +03:00
"notify-rust",
"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",
"semver",
2020-05-09 07:22:51 +03:00
"serde",
"shell-words",
2020-05-09 07:22:51 +03:00
"shellexpand",
2022-10-17 22:53:24 +02:00
"strum 0.24.1",
"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"
2022-10-17 22:53:24 +02:00
version = "0.3.2"
2020-05-09 07:22:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 22:53:24 +02:00
checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52"
2018-05-29 23:48:30 +03:00
2020-07-14 08:20:01 +03:00
[[package]]
name = "tracing"
2022-10-17 22:53:24 +02:00
version = "0.1.37"
2020-07-14 08:20:01 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 22:53:24 +02:00
checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8"
2020-07-14 08:20:01 +03:00
dependencies = [
2022-03-23 22:31:18 +02:00
"cfg-if",
2021-01-07 10:03:20 +02:00
"pin-project-lite",
2022-05-15 09:28:22 +03:00
"tracing-attributes",
2020-07-14 08:20:01 +03:00
"tracing-core",
]
2022-05-15 09:28:22 +03:00
[[package]]
name = "tracing-attributes"
2022-10-17 22:53:24 +02:00
version = "0.1.23"
2022-05-15 09:28:22 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 22:53:24 +02:00
checksum = "4017f8f45139870ca7e672686113917c71c7a6e02d4924eda67186083c03081a"
2022-05-15 09:28:22 +03:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
2020-07-14 08:20:01 +03:00
[[package]]
name = "tracing-core"
2022-10-17 22:53:24 +02:00
version = "0.1.30"
2020-07-14 08:20:01 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 22:53:24 +02:00
checksum = "24eb03ba0eab1fd845050058ce5e616558e8f8d8fca633e6b163fe25c797213a"
2020-07-14 08:20:01 +03:00
dependencies = [
2022-10-17 22:53:24 +02:00
"once_cell",
2020-07-14 08:20:01 +03:00
]
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
2022-05-15 09:28:22 +03:00
[[package]]
name = "uds_windows"
2022-10-17 22:53:24 +02:00
version = "1.0.2"
2022-05-15 09:28:22 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 22:53:24 +02:00
checksum = "ce65604324d3cce9b966701489fbd0cf318cb1f7bd9dd07ac9a4ee6fb791930d"
2022-05-15 09:28:22 +03:00
dependencies = [
2022-10-17 22:53:24 +02:00
"tempfile",
2022-05-15 09:28:22 +03:00
"winapi",
]
2018-11-07 14:31:44 +02:00
[[package]]
name = "unicode-bidi"
2022-05-15 09:28:22 +03:00
version = "0.3.8"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-15 09:28:22 +03:00
checksum = "099b7128301d285f79ddd55b9a83d5e6b9e97c92e0ea0daebee7263e932de992"
2018-11-07 14:31:44 +02:00
2022-10-17 22:53:24 +02:00
[[package]]
name = "unicode-ident"
version = "1.0.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6ceab39d59e4c9499d4e5a8ee0e2735b891bb7308ac83dfb4e80cad195c9f6f3"
2018-11-07 14:31:44 +02:00
[[package]]
name = "unicode-normalization"
2022-10-17 22:53:24 +02:00
version = "0.1.22"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 22:53:24 +02:00
checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921"
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"
2022-10-17 22:53:24 +02:00
version = "1.10.0"
2018-12-12 13:05:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 22:53:24 +02:00
checksum = "0fdbf052a0783de01e944a6ce7a8cb939e295b1e7be835a1112c3b9a7f047a5a"
2018-12-12 13:05:02 +02:00
2018-06-12 11:30:03 +03:00
[[package]]
name = "unicode-width"
2022-10-17 22:53:24 +02:00
version = "0.1.10"
2019-08-22 21:53:38 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 22:53:24 +02:00
checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b"
2019-08-22 21:53:38 +03:00
2022-04-30 16:17:27 +03:00
[[package]]
name = "untrusted"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
2018-11-07 14:31:44 +02:00
[[package]]
name = "url"
2022-10-17 22:53:24 +02:00
version = "2.3.1"
2019-09-04 21:07:43 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 22:53:24 +02:00
checksum = "0d68c799ae75762b8c3fe375feb6600ef5602c883c5d21eb51c09f22b83c4643"
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",
2021-01-07 10:03:20 +02:00
"percent-encoding",
2020-02-13 15:38:28 +02: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 = "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"
2022-03-23 22:31:18 +02:00
version = "0.10.0+wasi-snapshot-preview1"
2020-02-10 22:17:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-23 22:31:18 +02:00
checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f"
2020-05-09 07:22:51 +03:00
2020-11-02 14:00:04 +02:00
[[package]]
name = "wasi"
2022-03-23 22:31:18 +02:00
version = "0.11.0+wasi-snapshot-preview1"
2020-11-02 14:00:04 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-23 22:31:18 +02:00
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
2020-11-02 14:00:04 +02:00
2020-05-09 07:22:51 +03:00
[[package]]
name = "wasm-bindgen"
2022-10-17 22:53:24 +02:00
version = "0.2.83"
2020-05-09 07:22:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 22:53:24 +02:00
checksum = "eaf9f5aceeec8be17c128b2e93e031fb8a4d469bb9c4ae2d7dc1888b26887268"
2020-05-09 07:22:51 +03:00
dependencies = [
2022-03-23 22:31:18 +02:00
"cfg-if",
2020-05-09 07:22:51 +03:00
"wasm-bindgen-macro",
]
[[package]]
name = "wasm-bindgen-backend"
2022-10-17 22:53:24 +02:00
version = "0.2.83"
2020-05-09 07:22:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 22:53:24 +02:00
checksum = "4c8ffb332579b0557b52d268b91feab8df3615f265d5270fec2a8c95b17c1142"
2020-05-09 07:22:51 +03:00
dependencies = [
"bumpalo",
"log",
2022-10-17 22:53:24 +02:00
"once_cell",
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
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-futures"
2022-10-17 22:53:24 +02:00
version = "0.4.33"
2020-05-09 07:22:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 22:53:24 +02:00
checksum = "23639446165ca5a5de86ae1d8896b737ae80319560fbaa4c2887b7da6e7ebd7d"
2020-05-09 07:22:51 +03:00
dependencies = [
2022-03-23 22:31:18 +02:00
"cfg-if",
2020-05-09 07:22:51 +03:00
"js-sys",
"wasm-bindgen",
"web-sys",
]
[[package]]
name = "wasm-bindgen-macro"
2022-10-17 22:53:24 +02:00
version = "0.2.83"
2020-05-09 07:22:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 22:53:24 +02:00
checksum = "052be0f94026e6cbc75cdefc9bae13fd6052cdcaf532fa6c45e7ae33a1e6c810"
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-10-17 22:53:24 +02:00
version = "0.2.83"
2020-05-09 07:22:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 22:53:24 +02:00
checksum = "07bc0c051dc5f23e307b13285f9d75df86bfdf816c5721e573dec1f9b8aa193c"
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-10-17 22:53:24 +02:00
version = "0.2.83"
2020-12-07 20:51:41 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 22:53:24 +02:00
checksum = "1c38c045535d93ec4f0b4defec448e4291638ee608530863b1e2ba115d4fff7f"
2020-12-07 20:51:41 +02:00
2020-05-09 07:22:51 +03:00
[[package]]
name = "web-sys"
2022-10-17 22:53:24 +02:00
version = "0.3.60"
2020-05-09 07:22:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 22:53:24 +02:00
checksum = "bcda906d8be16e728fd5adc5b729afad4e444e106ab28cd1c7256e54fa61510f"
2020-05-09 07:22:51 +03:00
dependencies = [
"js-sys",
"wasm-bindgen",
]
2022-04-30 16:17:27 +03:00
[[package]]
name = "webpki"
version = "0.22.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f095d78192e208183081cc07bc5515ef55216397af48b873e5edcd72637fa1bd"
dependencies = [
"ring",
"untrusted",
]
[[package]]
name = "webpki-roots"
2022-10-17 22:53:24 +02:00
version = "0.22.5"
2022-04-30 16:17:27 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 22:53:24 +02:00
checksum = "368bfe657969fb01238bb756d351dcade285e0f6fcbd36dcb23359a5169975be"
2022-04-30 16:17:27 +03:00
dependencies = [
"webpki",
]
[[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]]
2021-10-25 22:41:12 +03:00
name = "windows"
2022-10-17 22:53:24 +02:00
version = "0.39.0"
2019-07-31 14:31:28 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 22:53:24 +02:00
checksum = "f1c4bd0a50ac6020f65184721f758dba47bb9fbc2133df715ec74a237b26794a"
2019-07-31 14:31:28 +03:00
dependencies = [
2022-10-17 22:53:24 +02:00
"windows_aarch64_msvc 0.39.0",
"windows_i686_gnu 0.39.0",
"windows_i686_msvc 0.39.0",
"windows_x86_64_gnu 0.39.0",
"windows_x86_64_msvc 0.39.0",
2019-07-31 14:31:28 +03:00
]
2022-05-15 09:28:22 +03:00
[[package]]
name = "windows-sys"
2022-11-02 16:25:54 +00:00
version = "0.42.0"
2022-05-15 09:28:22 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-02 16:25:54 +00:00
checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7"
2022-05-15 09:28:22 +03:00
dependencies = [
2022-11-02 16:25:54 +00:00
"windows_aarch64_gnullvm",
"windows_aarch64_msvc 0.42.0",
"windows_i686_gnu 0.42.0",
"windows_i686_msvc 0.42.0",
"windows_x86_64_gnu 0.42.0",
"windows_x86_64_gnullvm",
"windows_x86_64_msvc 0.42.0",
2022-05-15 09:28:22 +03:00
]
[[package]]
2022-11-02 16:25:54 +00:00
name = "windows_aarch64_gnullvm"
version = "0.42.0"
2022-05-15 09:28:22 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-02 16:25:54 +00:00
checksum = "41d2aa71f6f0cbe00ae5167d90ef3cfe66527d6f613ca78ac8024c3ccab9a19e"
2022-05-15 09:28:22 +03:00
2020-06-18 22:25:27 +03:00
[[package]]
2022-10-17 22:53:24 +02:00
name = "windows_aarch64_msvc"
version = "0.39.0"
2021-10-25 22:41:12 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 22:53:24 +02:00
checksum = "ec7711666096bd4096ffa835238905bb33fb87267910e154b18b44eaabb340f2"
2021-10-25 22:41:12 +03:00
2022-05-15 09:28:22 +03:00
[[package]]
2022-11-02 16:25:54 +00:00
name = "windows_aarch64_msvc"
version = "0.42.0"
2022-05-15 09:28:22 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-02 16:25:54 +00:00
checksum = "dd0f252f5a35cac83d6311b2e795981f5ee6e67eb1f9a7f64eb4500fbc4dcdb4"
2022-05-15 09:28:22 +03:00
2021-10-25 22:41:12 +03:00
[[package]]
2022-10-17 22:53:24 +02:00
name = "windows_i686_gnu"
version = "0.39.0"
2021-10-25 22:41:12 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 22:53:24 +02:00
checksum = "763fc57100a5f7042e3057e7e8d9bdd7860d330070251a73d003563a3bb49e1b"
2021-10-25 22:41:12 +03:00
2022-05-15 09:28:22 +03:00
[[package]]
2022-11-02 16:25:54 +00:00
name = "windows_i686_gnu"
version = "0.42.0"
2022-05-15 09:28:22 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-02 16:25:54 +00:00
checksum = "fbeae19f6716841636c28d695375df17562ca208b2b7d0dc47635a50ae6c5de7"
2022-05-15 09:28:22 +03:00
2021-10-25 22:41:12 +03:00
[[package]]
2022-10-17 22:53:24 +02:00
name = "windows_i686_msvc"
version = "0.39.0"
2021-10-25 22:41:12 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 22:53:24 +02:00
checksum = "7bc7cbfe58828921e10a9f446fcaaf649204dcfe6c1ddd712c5eebae6bda1106"
2021-10-25 22:41:12 +03:00
2022-05-15 09:28:22 +03:00
[[package]]
2022-11-02 16:25:54 +00:00
name = "windows_i686_msvc"
version = "0.42.0"
2022-05-15 09:28:22 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-02 16:25:54 +00:00
checksum = "84c12f65daa39dd2babe6e442988fc329d6243fdce47d7d2d155b8d874862246"
2022-05-15 09:28:22 +03:00
2021-10-25 22:41:12 +03:00
[[package]]
2022-10-17 22:53:24 +02:00
name = "windows_x86_64_gnu"
version = "0.39.0"
2021-10-25 22:41:12 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 22:53:24 +02:00
checksum = "6868c165637d653ae1e8dc4d82c25d4f97dd6605eaa8d784b5c6e0ab2a252b65"
2021-10-25 22:41:12 +03:00
2022-05-15 09:28:22 +03:00
[[package]]
2022-11-02 16:25:54 +00:00
name = "windows_x86_64_gnu"
version = "0.42.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bf7b1b21b5362cbc318f686150e5bcea75ecedc74dd157d874d754a2ca44b0ed"
[[package]]
name = "windows_x86_64_gnullvm"
version = "0.42.0"
2022-05-15 09:28:22 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-02 16:25:54 +00:00
checksum = "09d525d2ba30eeb3297665bd434a54297e4170c7f1a44cad4ef58095b4cd2028"
2022-05-15 09:28:22 +03:00
2022-10-17 22:53:24 +02:00
[[package]]
name = "windows_x86_64_msvc"
version = "0.39.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5e4d40883ae9cae962787ca76ba76390ffa29214667a111db9e0a1ad8377e809"
2022-11-02 16:25:54 +00:00
[[package]]
name = "windows_x86_64_msvc"
version = "0.42.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f40009d85759725a34da6d89a94e63d7bdc50a862acf0dbc7c8e488f1edcb6f5"
2021-10-25 22:41:12 +03:00
[[package]]
name = "winreg"
2022-03-23 22:31:18 +02:00
version = "0.10.1"
2020-06-18 22:25:27 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-23 22:31:18 +02:00
checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d"
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
]
2018-11-07 14:31:44 +02:00
[[package]]
name = "xattr"
2022-05-15 09:28:22 +03:00
version = "0.2.3"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-15 09:28:22 +03:00
checksum = "6d1526bbe5aaeb5eb06885f4d987bcdfa5e23187055de9b83fe00156a821fabc"
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
]
[[package]]
name = "zbus"
2022-10-17 22:53:24 +02:00
version = "2.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 22:53:24 +02:00
checksum = "2d8f1a037b2c4a67d9654dc7bdfa8ff2e80555bbefdd3c1833c1d1b27c963a6b"
dependencies = [
2022-03-23 22:31:18 +02:00
"async-broadcast",
"async-channel",
"async-executor",
"async-io",
2022-03-23 22:31:18 +02:00
"async-lock",
"async-recursion",
"async-task",
"async-trait",
"byteorder",
"derivative",
2022-10-17 22:53:24 +02:00
"dirs",
"enumflags2",
2022-03-23 22:31:18 +02:00
"event-listener",
"futures-core",
"futures-sink",
"futures-util",
"hex",
"lazy_static",
2022-05-15 09:28:22 +03:00
"nix 0.23.1",
"once_cell",
2022-03-23 22:31:18 +02:00
"ordered-stream",
2022-10-17 22:53:24 +02:00
"rand",
"serde",
"serde_repr",
2022-03-23 22:31:18 +02:00
"sha1",
"static_assertions",
2022-10-17 22:53:24 +02:00
"tracing",
2022-05-15 09:28:22 +03:00
"uds_windows",
2022-03-23 22:31:18 +02:00
"winapi",
"zbus_macros",
2022-03-23 22:31:18 +02:00
"zbus_names",
"zvariant",
]
[[package]]
name = "zbus_macros"
2022-10-17 22:53:24 +02:00
version = "2.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 22:53:24 +02:00
checksum = "1f8fb5186d1c87ae88cf234974c240671238b4a679158ad3b94ec465237349a6"
dependencies = [
2022-03-23 22:31:18 +02:00
"proc-macro-crate",
"proc-macro2",
2021-10-25 22:41:12 +03:00
"quote",
2022-03-23 22:31:18 +02:00
"regex",
2021-10-25 22:41:12 +03:00
"syn",
]
2022-03-23 22:31:18 +02:00
[[package]]
name = "zbus_names"
2022-10-17 22:53:24 +02:00
version = "2.2.0"
2022-03-23 22:31:18 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 22:53:24 +02:00
checksum = "41a408fd8a352695690f53906dc7fd036be924ec51ea5e05666ff42685ed0af5"
2022-03-23 22:31:18 +02:00
dependencies = [
"serde",
"static_assertions",
"zvariant",
]
[[package]]
name = "zip"
2022-10-17 22:53:24 +02:00
version = "0.6.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 22:53:24 +02:00
checksum = "537ce7411d25e54e8ae21a7ce0b15840e7bfcff15b51d697ec3266cc76bdf080"
dependencies = [
2020-11-02 14:00:04 +02:00
"byteorder",
2020-05-09 07:22:51 +03:00
"crc32fast",
2022-04-30 16:17:27 +03:00
"crossbeam-utils",
2020-05-09 07:22:51 +03:00
"flate2",
2022-11-02 16:25:54 +00:00
"time 0.3.16",
2020-05-09 07:22:51 +03:00
]
[[package]]
name = "zvariant"
2022-10-17 22:53:24 +02:00
version = "3.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 22:53:24 +02:00
checksum = "b794fb7f59af4105697b0449ba31731ee5dbb3e773a17dbdf3d36206ea1b1644"
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"
2022-10-17 22:53:24 +02:00
version = "3.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 22:53:24 +02:00
checksum = "dd58d4b6c8e26d3dd2149c8c40c6613ef6451b9885ff1296d1ac86c388351a54"
dependencies = [
2022-03-23 22:31:18 +02:00
"proc-macro-crate",
"proc-macro2",
2021-10-25 22:41:12 +03:00
"quote",
"syn",
]