ffsend/Cargo.lock

3349 lines
83 KiB
Text
Raw Normal View History

2019-05-23 20:17:38 +00:00
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
2021-10-07 11:31:30 +00:00
version = 3
2020-05-16 15:28:47 +00:00
[[package]]
name = "addr2line"
2023-02-14 13:00:41 +00:00
version = "0.19.0"
2020-05-16 15:28:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 13:00:41 +00:00
checksum = "a76fd60b23679b7d19bd066031410fb7e458ccc5e958eb5c325888ce4baedc97"
2020-05-16 15:28:47 +00:00
dependencies = [
"gimli",
2020-05-16 15:28:47 +00:00
]
2020-07-09 10:46:27 +00:00
[[package]]
name = "adler"
2021-04-09 12:33:28 +00:00
version = "1.0.2"
2020-07-09 10:46:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-09 12:33:28 +00:00
checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
2020-07-09 10:46:27 +00:00
[[package]]
name = "aho-corasick"
2023-02-14 13:00:41 +00:00
version = "0.7.20"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 13:00:41 +00:00
checksum = "cc936419f96fa211c1b9166887b38e5e40b19958e5b895be7c1f93adec7071ac"
dependencies = [
"memchr",
]
2022-08-18 14:51:01 +00:00
[[package]]
name = "android_system_properties"
2023-02-14 13:00:41 +00:00
version = "0.1.5"
2022-08-18 14:51:01 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 13:00:41 +00:00
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
2022-08-18 14:51:01 +00:00
dependencies = [
"libc",
]
2018-03-05 17:23:41 +00:00
[[package]]
name = "ansi_term"
2022-06-07 08:29:32 +00:00
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-07 08:29:32 +00:00
checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2"
dependencies = [
"winapi 0.3.9",
]
2021-04-09 12:33:28 +00:00
[[package]]
name = "anyhow"
2023-02-14 13:00:41 +00:00
version = "1.0.69"
2021-04-09 12:33:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 13:00:41 +00:00
checksum = "224afbd727c3d6e4b90103ece64b8d1b67fbb1973b1046c2281eed3f3803f800"
2021-04-09 12:33:28 +00:00
[[package]]
name = "arrayref"
2020-03-31 00:12:54 +00:00
version = "0.3.6"
2018-03-05 17:23:41 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a4c527152e37cf757a3f78aae5a06fbeefdb07ccc535c980a3208ee3060dd544"
2018-03-05 17:23:41 +00:00
[[package]]
name = "atty"
2020-01-10 15:14:16 +00:00
version = "0.2.14"
2018-03-05 17:23:41 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
2018-03-05 17:23:41 +00:00
dependencies = [
2023-02-14 13:00:41 +00:00
"hermit-abi 0.1.19",
"libc",
"winapi 0.3.9",
2018-03-05 17:23:41 +00:00
]
2019-01-11 17:14:26 +00:00
[[package]]
name = "autocfg"
2022-06-07 08:29:32 +00:00
version = "0.1.8"
2019-01-11 17:14:26 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-07 08:29:32 +00:00
checksum = "0dde43e75fd43e8a1bf86103336bc699aa8d17ad1be60c76c0bdfd4828e19b78"
dependencies = [
"autocfg 1.1.0",
]
2019-01-11 17:14:26 +00:00
2020-01-10 15:14:16 +00:00
[[package]]
name = "autocfg"
2022-06-07 08:29:32 +00:00
version = "1.1.0"
2020-01-10 15:14:16 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-07 08:29:32 +00:00
checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
2020-01-10 15:14:16 +00:00
[[package]]
name = "backtrace"
2023-02-14 13:00:41 +00:00
version = "0.3.67"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 13:00:41 +00:00
checksum = "233d376d6d185f2a3093e58f283f60f880315b6c60075b01f36b3b85154564ca"
dependencies = [
"addr2line",
2021-05-07 22:11:31 +00:00
"cc",
2020-10-16 12:35:50 +00:00
"cfg-if 1.0.0",
"libc",
"miniz_oxide",
"object",
"rustc-demangle",
]
2020-03-31 00:12:54 +00:00
[[package]]
name = "base-x"
2022-08-18 14:51:01 +00:00
version = "0.2.11"
2020-03-31 00:12:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-18 14:51:01 +00:00
checksum = "4cbbc9d0964165b47557570cce6c952866c2678457aca742aafc9fb771d30270"
2020-03-31 00:12:54 +00:00
[[package]]
name = "base64"
version = "0.9.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "489d6c0ed21b11d038c31b6ceccca973e65d73ba3bd8ecb9a2babf5546164643"
dependencies = [
"byteorder",
"safemem",
]
2018-11-20 11:02:43 +00:00
[[package]]
name = "base64"
version = "0.10.1"
2018-11-20 11:02:43 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0b25d992356d2eb0ed82172f5248873db5560c4721f564b13cb5193bda5e668e"
2018-11-20 11:02:43 +00:00
dependencies = [
"byteorder",
2018-11-20 11:02:43 +00:00
]
2021-01-04 10:44:01 +00:00
[[package]]
name = "base64"
2023-02-14 13:00:41 +00:00
version = "0.13.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
[[package]]
name = "base64"
version = "0.21.0"
2021-01-04 10:44:01 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 13:00:41 +00:00
checksum = "a4a4ddaa51a5bc52a6948f74c06d20aaaddb71924eab79b8c97a8c556e942d6a"
2021-01-04 10:44:01 +00:00
2018-03-05 14:41:22 +00:00
[[package]]
name = "bitflags"
2021-08-26 18:37:43 +00:00
version = "1.3.2"
2018-03-05 14:41:22 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-26 18:37:43 +00:00
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
2018-03-05 14:41:22 +00:00
[[package]]
name = "block"
version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0d8c1fef690941d3e7788d328517591fecc684c084084702d6ff1641e993699a"
[[package]]
name = "block-buffer"
version = "0.7.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c0940dc441f31689269e10ac70eb1002a3a1d3ad1390e030043662eb7fe4688b"
dependencies = [
"block-padding",
"byte-tools",
"byteorder",
2021-04-09 12:33:28 +00:00
"generic-array 0.12.4",
]
[[package]]
name = "block-buffer"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4152116fd6e9dadb291ae18fc1ec3575ed6d84c29642d97890f4b4a3417297e4"
dependencies = [
2022-08-18 14:51:01 +00:00
"generic-array 0.14.6",
]
[[package]]
name = "block-padding"
2019-11-29 15:13:23 +00:00
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fa79dedbb091f449f1f39e53edf88d5dbe95f895dae6135a8d7b881fb5af73f5"
dependencies = [
"byte-tools",
]
[[package]]
name = "bumpalo"
2023-02-14 13:00:41 +00:00
version = "3.12.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 13:00:41 +00:00
checksum = "0d261e256854913907f67ed06efbc3338dfe6179796deefc1ff763fc1aee5535"
[[package]]
name = "byte-tools"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e3b5ca7a04898ad4bcd41c90c5285445ff5b791899bb1b0abdd2a2aa791211d7"
2018-03-05 14:41:22 +00:00
[[package]]
name = "byteorder"
2021-04-09 12:33:28 +00:00
version = "1.4.3"
2018-03-05 14:41:22 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-09 12:33:28 +00:00
checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
2018-03-05 14:41:22 +00:00
[[package]]
name = "bytes"
2019-03-06 21:22:12 +00:00
version = "0.4.12"
2018-03-05 14:41:22 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "206fdffcfa2df7cbe15601ef46c813fce0965eb3286db6b56c583b814b51c81c"
2018-03-05 14:41:22 +00:00
dependencies = [
"byteorder",
"iovec",
2018-03-05 14:41:22 +00:00
]
[[package]]
name = "bytes"
2023-02-14 13:00:41 +00:00
version = "1.4.0"
2021-04-09 12:33:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 13:00:41 +00:00
checksum = "89b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be"
2021-04-09 12:33:28 +00:00
2018-03-05 14:41:22 +00:00
[[package]]
name = "cc"
2023-02-14 13:00:41 +00:00
version = "1.0.79"
2018-03-05 14:41:22 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 13:00:41 +00:00
checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f"
2018-03-05 14:41:22 +00:00
[[package]]
name = "cfg-if"
version = "0.1.10"
2018-03-05 14:41:22 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
2018-03-05 14:41:22 +00:00
2020-10-16 12:35:50 +00:00
[[package]]
name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
[[package]]
name = "chbs"
2022-08-18 14:51:01 +00:00
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-18 14:51:01 +00:00
checksum = "45a7298287f1443f422d3f46e8ce9f855e75f0e43c06605adb4c52a262faeabd"
dependencies = [
2022-08-18 14:51:01 +00:00
"derive_builder 0.10.2",
2023-04-07 06:14:07 +00:00
"getrandom",
2022-06-07 08:29:32 +00:00
"rand 0.8.5",
2022-08-18 14:51:01 +00:00
"thiserror",
]
[[package]]
name = "checked_int_cast"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "17cc5e6b5ab06331c33589842070416baa137e8b0eb912b008cfd4a78ada7919"
2018-03-08 19:32:45 +00:00
[[package]]
name = "chrono"
2023-02-14 13:00:41 +00:00
version = "0.4.23"
2018-03-08 19:32:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 13:00:41 +00:00
checksum = "16b0a3d9ed01224b22057780a37bb8c5dbfe1be8ba48678e7bf57ec4b385411f"
2018-03-08 19:32:45 +00:00
dependencies = [
2022-08-18 14:51:01 +00:00
"iana-time-zone",
"js-sys",
"num-integer",
"num-traits",
"serde",
2023-02-14 13:00:41 +00:00
"time 0.1.45",
2022-08-18 14:51:01 +00:00
"wasm-bindgen",
"winapi 0.3.9",
2018-03-08 19:32:45 +00:00
]
2018-03-05 17:23:41 +00:00
[[package]]
name = "clap"
2022-06-07 08:29:32 +00:00
version = "2.34.0"
2018-03-05 17:23:41 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-07 08:29:32 +00:00
checksum = "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c"
2018-03-05 17:23:41 +00:00
dependencies = [
"ansi_term",
"atty",
"bitflags",
"strsim 0.8.0",
"textwrap",
"unicode-width",
"vec_map",
2018-03-05 17:23:41 +00:00
]
[[package]]
name = "clipboard"
2018-11-20 10:04:27 +00:00
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "25a904646c0340239dcf7c51677b33928bf24fdf424b79a57909c0109075b2e7"
dependencies = [
"clipboard-win",
"objc",
"objc-foundation",
"objc_id",
"x11-clipboard",
]
[[package]]
name = "clipboard-win"
2019-05-30 12:17:56 +00:00
version = "2.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e3a093d6fed558e5fe24c3dfc85a68bb68f1c824f440d3ba5aca189e2998786b"
dependencies = [
"winapi 0.3.9",
]
[[package]]
name = "cloudabi"
version = "0.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f"
dependencies = [
"bitflags",
]
2023-02-14 13:00:41 +00: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 = "colored"
2020-09-21 10:23:45 +00:00
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b3616f750b84d8f0de8a58bda93e08e2a81ad3f523089b05f1dffecab48c6cbd"
dependencies = [
"atty",
"lazy_static",
"winapi 0.3.9",
]
2020-09-21 10:23:45 +00:00
[[package]]
name = "const_fn"
2022-06-07 08:29:32 +00:00
version = "0.4.9"
2020-09-21 10:23:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-07 08:29:32 +00:00
checksum = "fbdcdcb6d86f71c5e97409ad45898af11cbc995b4ee8112d59095a28d376c935"
2020-09-21 10:23:45 +00:00
2018-03-05 14:41:22 +00:00
[[package]]
name = "core-foundation"
2022-06-07 08:29:32 +00:00
version = "0.9.3"
2018-03-05 14:41:22 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-07 08:29:32 +00:00
checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146"
2018-03-05 14:41:22 +00:00
dependencies = [
"core-foundation-sys",
"libc",
2018-03-05 14:41:22 +00:00
]
[[package]]
name = "core-foundation-sys"
2021-10-14 20:52:02 +00:00
version = "0.8.3"
2018-03-05 14:41:22 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-14 20:52:02 +00:00
checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc"
2019-01-11 17:14:26 +00:00
2021-04-09 12:33:28 +00:00
[[package]]
2021-05-07 22:11:31 +00:00
name = "cpufeatures"
2023-02-14 13:00:41 +00:00
version = "0.2.5"
2021-04-09 12:33:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 13:00:41 +00:00
checksum = "28d997bd5e24a5928dd43e46dc529867e207907fe0b239c3477d924f7f2ca320"
2021-05-07 22:11:31 +00:00
dependencies = [
"libc",
]
2021-04-09 12:33:28 +00:00
2020-05-30 14:16:45 +00:00
[[package]]
name = "crossbeam-channel"
2022-08-18 14:51:01 +00:00
version = "0.5.6"
2020-05-30 14:16:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-18 14:51:01 +00:00
checksum = "c2dd04ddaf88237dc3b8d8f9a3c1004b506b54b3313403944054d23c0870c521"
2020-05-30 14:16:45 +00:00
dependencies = [
2021-04-09 12:33:28 +00:00
"cfg-if 1.0.0",
2023-02-14 13:00:41 +00:00
"crossbeam-utils 0.8.14",
2020-05-30 14:16:45 +00:00
]
2018-03-23 13:21:32 +00:00
[[package]]
name = "crossbeam-utils"
2020-03-31 00:12:54 +00:00
version = "0.7.2"
2018-11-20 10:03:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c3c7c73a2d1e9fc0886a08b93e98eb643461230d5f1925e4036204d5f2e261a8"
2018-11-20 10:03:08 +00:00
dependencies = [
2022-06-07 08:29:32 +00:00
"autocfg 1.1.0",
2020-10-16 12:35:50 +00:00
"cfg-if 0.1.10",
"lazy_static",
2018-11-20 10:03:08 +00:00
]
2021-01-04 10:44:01 +00:00
[[package]]
name = "crossbeam-utils"
2023-02-14 13:00:41 +00:00
version = "0.8.14"
2021-01-04 10:44:01 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 13:00:41 +00:00
checksum = "4fb766fa798726286dbbb842f174001dab8abc7b627a1dd86e0b7222a95d929f"
2021-01-04 10:44:01 +00:00
dependencies = [
"cfg-if 1.0.0",
]
[[package]]
name = "crossterm"
2022-06-07 08:29:32 +00:00
version = "0.23.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-07 08:29:32 +00:00
checksum = "a2102ea4f781910f8a5b98dd061f4c2023f479ce7bb1236330099ceb5a93cf17"
dependencies = [
"bitflags",
"crossterm_winapi",
"libc",
2023-02-14 13:00:41 +00:00
"mio 0.8.6",
2022-06-07 08:29:32 +00:00
"parking_lot 0.12.1",
"signal-hook",
2022-06-07 08:29:32 +00:00
"signal-hook-mio",
"winapi 0.3.9",
]
[[package]]
name = "crossterm_winapi"
2022-06-07 08:29:32 +00:00
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-07 08:29:32 +00:00
checksum = "2ae1b35a484aa10e07fe0638d02301c5ad24de82d310ccbd2f3693da5f09bf1c"
dependencies = [
"winapi 0.3.9",
]
[[package]]
name = "crypto-mac"
2021-08-30 12:18:58 +00:00
version = "0.11.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-30 12:18:58 +00:00
checksum = "b1d1a86f49236c215f271d40892d5fc950490551400b02ef360692c29815c714"
dependencies = [
2022-08-18 14:51:01 +00:00
"generic-array 0.14.6",
"subtle",
]
2023-02-14 13:00:41 +00:00
[[package]]
name = "cxx"
version = "1.0.90"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "90d59d9acd2a682b4e40605a242f6670eaa58c5957471cbf85e8aa6a0b97a5e8"
dependencies = [
"cc",
"cxxbridge-flags",
"cxxbridge-macro",
"link-cplusplus",
]
[[package]]
name = "cxx-build"
version = "1.0.90"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ebfa40bda659dd5c864e65f4c9a2b0aff19bea56b017b9b77c73d3766a453a38"
dependencies = [
"cc",
"codespan-reporting",
"once_cell",
"proc-macro2",
"quote",
"scratch",
"syn",
]
[[package]]
name = "cxxbridge-flags"
version = "1.0.90"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "457ce6757c5c70dc6ecdbda6925b958aae7f959bda7d8fb9bde889e34a09dc03"
[[package]]
name = "cxxbridge-macro"
version = "1.0.90"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ebf883b7aacd7b2aeb2a7b338648ee19f57c140d4ee8e52c68979c6b2f7f2263"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
2018-10-28 17:17:29 +00:00
[[package]]
name = "darling"
2019-11-06 15:52:26 +00:00
version = "0.10.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0d706e75d87e35569db781a9b5e2416cff1236a47ed380831f959382ccd5f858"
dependencies = [
2021-04-09 12:33:28 +00:00
"darling_core 0.10.2",
"darling_macro 0.10.2",
]
[[package]]
name = "darling"
2021-04-21 17:13:07 +00:00
version = "0.12.4"
2021-04-09 12:33:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-21 17:13:07 +00:00
checksum = "5f2c43f534ea4b0b049015d00269734195e6d3f0f6635cb692251aca6f9f8b3c"
2021-04-09 12:33:28 +00:00
dependencies = [
2021-04-21 17:13:07 +00:00
"darling_core 0.12.4",
"darling_macro 0.12.4",
]
2018-10-28 17:17:29 +00:00
[[package]]
name = "darling_core"
2019-11-06 15:52:26 +00:00
version = "0.10.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f0c960ae2da4de88a91b2d920c2a7233b400bc33cb28453a2987822d8392519b"
dependencies = [
"fnv",
"ident_case",
"proc-macro2",
"quote",
"strsim 0.9.3",
"syn",
]
2021-04-09 12:33:28 +00:00
[[package]]
name = "darling_core"
2021-04-21 17:13:07 +00:00
version = "0.12.4"
2021-04-09 12:33:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-21 17:13:07 +00:00
checksum = "8e91455b86830a1c21799d94524df0845183fa55bafd9aa137b01c7d1065fa36"
2021-04-09 12:33:28 +00:00
dependencies = [
"fnv",
"ident_case",
"proc-macro2",
"quote",
"strsim 0.10.0",
"syn",
]
2018-10-28 17:17:29 +00:00
[[package]]
name = "darling_macro"
2019-11-06 15:52:26 +00:00
version = "0.10.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d9b5a2f4ac4969822c62224815d069952656cadc7084fdca9751e6d959189b72"
dependencies = [
2021-04-09 12:33:28 +00:00
"darling_core 0.10.2",
"quote",
"syn",
]
[[package]]
name = "darling_macro"
2021-04-21 17:13:07 +00:00
version = "0.12.4"
2021-04-09 12:33:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-21 17:13:07 +00:00
checksum = "29b5acf0dea37a7f66f7b25d2c5e93fd46f8f6968b1a5d7a3e02e97768afc95a"
2021-04-09 12:33:28 +00:00
dependencies = [
2021-04-21 17:13:07 +00:00
"darling_core 0.12.4",
"quote",
"syn",
]
2019-11-29 15:13:23 +00:00
[[package]]
name = "derive_builder"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a2658621297f2cf68762a6f7dc0bb7e1ff2cfd6583daef8ee0fed6f7ec468ec0"
2019-11-29 15:13:23 +00:00
dependencies = [
2021-04-09 12:33:28 +00:00
"darling 0.10.2",
"derive_builder_core 0.9.0",
"proc-macro2",
"quote",
"syn",
]
2021-04-09 12:33:28 +00:00
[[package]]
name = "derive_builder"
2021-04-21 17:13:07 +00:00
version = "0.10.2"
2021-04-09 12:33:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-21 17:13:07 +00:00
checksum = "d13202debe11181040ae9063d739fa32cfcaaebe2275fe387703460ae2365b30"
2021-04-09 12:33:28 +00:00
dependencies = [
"derive_builder_macro",
]
2019-11-29 15:13:23 +00:00
[[package]]
name = "derive_builder_core"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2791ea3e372c8495c0bc2033991d76b512cd799d07491fbd6890124db9458bef"
2019-11-29 15:13:23 +00:00
dependencies = [
2021-04-09 12:33:28 +00:00
"darling 0.10.2",
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "derive_builder_core"
2021-04-21 17:13:07 +00:00
version = "0.10.2"
2021-04-09 12:33:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-21 17:13:07 +00:00
checksum = "66e616858f6187ed828df7c64a6d71720d83767a7f19740b2d1b6fe6327b36e5"
2021-04-09 12:33:28 +00:00
dependencies = [
2021-04-21 17:13:07 +00:00
"darling 0.12.4",
"proc-macro2",
"quote",
"syn",
]
2021-04-09 12:33:28 +00:00
[[package]]
name = "derive_builder_macro"
2021-04-21 17:13:07 +00:00
version = "0.10.2"
2021-04-09 12:33:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-21 17:13:07 +00:00
checksum = "58a94ace95092c5acb1e97a7e846b310cfbd499652f72297da7493f618a98d73"
2021-04-09 12:33:28 +00:00
dependencies = [
2021-04-21 17:13:07 +00:00
"derive_builder_core 0.10.2",
2021-04-09 12:33:28 +00:00
"syn",
]
[[package]]
name = "digest"
version = "0.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f3d0c8c8752312f9713efd397ff63acb9f85585afbf179282e720e7704954dd5"
dependencies = [
2021-04-09 12:33:28 +00:00
"generic-array 0.12.4",
]
[[package]]
name = "digest"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066"
dependencies = [
2022-08-18 14:51:01 +00:00
"generic-array 0.14.6",
]
[[package]]
name = "directories"
2021-10-06 11:51:38 +00:00
version = "4.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-06 11:51:38 +00:00
checksum = "f51c5d4ddabd36886dd3e1438cb358cdcb0d7c499cb99cb4ac2e38e18b5cb210"
dependencies = [
"dirs-sys",
2019-04-01 13:12:56 +00:00
]
[[package]]
2023-04-07 06:14:07 +00:00
name = "dirs-next"
version = "2.0.0"
2019-04-01 13:12:56 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-07 06:14:07 +00:00
checksum = "b98cf8ebf19c3d1b223e151f99a4f9f0690dca41414773390fc824184ac833e1"
2019-04-01 13:12:56 +00:00
dependencies = [
2023-04-07 06:14:07 +00:00
"cfg-if 1.0.0",
"dirs-sys-next",
]
2019-05-30 12:17:56 +00:00
[[package]]
name = "dirs-sys"
2022-06-07 08:29:32 +00:00
version = "0.3.7"
2019-05-30 12:17:56 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-07 08:29:32 +00:00
checksum = "1b1d1d91c932ef41c0f2663aa8b0ca0342d444d842c06914aa0a7e352d0bada6"
2019-05-30 12:17:56 +00:00
dependencies = [
"libc",
2023-04-07 06:14:07 +00:00
"redox_users",
"winapi 0.3.9",
]
[[package]]
name = "dirs-sys-next"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d"
dependencies = [
"libc",
"redox_users",
"winapi 0.3.9",
2019-05-30 12:17:56 +00:00
]
2020-03-31 00:12:54 +00:00
[[package]]
name = "discard"
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "212d0f5754cb6769937f4501cc0e67f4f4483c8d2c3e1e922ee9edbe4ab4c7c0"
2020-03-31 00:12:54 +00:00
2021-04-09 12:33:28 +00:00
[[package]]
name = "either"
2023-02-14 13:00:41 +00:00
version = "1.8.1"
2021-04-09 12:33:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 13:00:41 +00:00
checksum = "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91"
2021-04-09 12:33:28 +00:00
2018-04-27 17:11:21 +00:00
[[package]]
name = "encode_unicode"
2023-04-07 06:14:07 +00:00
version = "1.0.0"
2018-04-27 17:11:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-07 06:14:07 +00:00
checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0"
2018-04-27 17:11:21 +00:00
2018-03-05 14:41:22 +00:00
[[package]]
name = "encoding_rs"
2023-02-14 13:00:41 +00:00
version = "0.8.32"
2018-03-05 14:41:22 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 13:00:41 +00:00
checksum = "071a31f4ee85403370b58aca746f01041ede6f0da2730960ad001edc2b71b394"
2018-03-05 14:41:22 +00:00
dependencies = [
2021-01-04 10:44:01 +00:00
"cfg-if 1.0.0",
2018-03-05 14:41:22 +00:00
]
2023-04-07 06:14:07 +00:00
[[package]]
name = "errno"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "50d6a0976c999d473fe89ad888d5a284e55366d9dc9038b1ba2aa15128c4afa0"
dependencies = [
"errno-dragonfly",
"libc",
"windows-sys 0.45.0",
]
[[package]]
name = "errno-dragonfly"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf"
dependencies = [
"cc",
"libc",
]
[[package]]
name = "failure"
2020-05-04 23:46:01 +00:00
version = "0.1.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d32e9bd16cc02eae7db7ef620b392808b89f6a5e16bb3497d159c6b92a0f4f86"
dependencies = [
"backtrace",
"failure_derive",
]
[[package]]
name = "failure_derive"
2020-05-04 23:46:01 +00:00
version = "0.1.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "aa4da3c766cd7a0db8242e326e9e4e081edd567072893ed320008189715366a4"
dependencies = [
"proc-macro2",
"quote",
"syn",
"synstructure",
]
[[package]]
name = "fake-simd"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e88a8acf291dafb59c2d96e8f59828f3838bb1a70398823ade51a84de6a6deed"
2022-06-07 08:29:32 +00:00
[[package]]
name = "fastrand"
2023-02-14 13:00:41 +00:00
version = "1.9.0"
2022-06-07 08:29:32 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 13:00:41 +00:00
checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be"
2022-06-07 08:29:32 +00:00
dependencies = [
"instant",
]
2018-04-19 11:52:00 +00:00
[[package]]
name = "ffsend"
2022-06-20 08:09:01 +00:00
version = "0.2.76"
dependencies = [
"chbs",
"chrono",
"clap",
"clipboard",
"colored",
2021-04-21 17:13:07 +00:00
"derive_builder 0.10.2",
"directories",
"failure",
"ffsend-api",
"fs2",
"lazy_static",
"open",
"openssl-probe",
"pathdiff",
"pbr",
"prettytable-rs",
"qr2term",
2022-06-07 08:29:32 +00:00
"rand 0.8.5",
"regex",
"rpassword",
"serde",
"serde_derive",
"tar",
"tempfile",
"toml",
"urlshortener",
2023-02-14 13:00:41 +00:00
"version-compare 0.1.1",
"which",
2018-04-19 11:52:00 +00:00
]
2018-03-08 21:56:34 +00:00
[[package]]
name = "ffsend-api"
2021-08-30 12:18:58 +00:00
version = "0.7.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-30 12:18:58 +00:00
checksum = "a9f74aa6959e4fe79f720b03058e068dd5f18851706d4d350a83b441dd4ced95"
dependencies = [
2021-04-09 12:33:28 +00:00
"anyhow",
"arrayref",
2023-02-14 13:00:41 +00:00
"base64 0.13.1",
"byteorder",
2023-02-14 13:00:41 +00:00
"bytes 1.4.0",
"chrono",
2021-04-09 12:33:28 +00:00
"derive_builder 0.9.0",
"hkdf",
2023-02-14 13:00:41 +00:00
"hyper 0.14.24",
"mime 0.3.16",
"mime_guess",
"openssl",
"regex",
2023-02-14 13:00:41 +00:00
"reqwest",
"ring",
"serde",
"serde_derive",
"serde_json",
"sha2",
2021-04-09 12:33:28 +00:00
"thiserror",
2021-08-26 18:37:43 +00:00
"time 0.2.27",
2023-02-14 13:00:41 +00:00
"url 2.3.1",
2021-10-06 11:51:38 +00:00
"version-compare 0.0.11",
"websocket",
2018-03-05 14:41:22 +00:00
]
[[package]]
name = "filetime"
2023-02-14 13:00:41 +00:00
version = "0.2.20"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 13:00:41 +00:00
checksum = "8a3de6e8d11b22ff9edc6d916f890800597d60f8b2da1caf2955c274638d6412"
dependencies = [
2021-01-04 10:44:01 +00:00
"cfg-if 1.0.0",
"libc",
2022-08-18 14:51:01 +00:00
"redox_syscall 0.2.16",
2023-02-14 13:00:41 +00:00
"windows-sys 0.45.0",
]
[[package]]
name = "fnv"
2020-05-16 15:28:47 +00:00
version = "1.0.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
2018-03-05 14:41:22 +00:00
[[package]]
name = "foreign-types"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
2018-03-05 14:41:22 +00:00
dependencies = [
"foreign-types-shared",
2018-03-05 14:41:22 +00:00
]
[[package]]
name = "foreign-types-shared"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
2018-03-05 14:41:22 +00:00
2021-01-04 10:44:01 +00:00
[[package]]
name = "form_urlencoded"
2023-02-14 13:00:41 +00:00
version = "1.1.0"
2021-01-04 10:44:01 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 13:00:41 +00:00
checksum = "a9c384f161156f5260c24a097c56119f9be8c798586aecc13afbcbe7b7e26bf8"
2021-01-04 10:44:01 +00:00
dependencies = [
2023-02-14 13:00:41 +00:00
"percent-encoding 2.2.0",
2021-01-04 10:44:01 +00:00
]
[[package]]
name = "fs2"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9564fc758e15025b46aa6643b1b77d047d1a56a1aea6e01002ac0c7026876213"
dependencies = [
"libc",
"winapi 0.3.9",
]
[[package]]
name = "fuchsia-cprng"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba"
2018-03-05 14:41:22 +00:00
[[package]]
name = "fuchsia-zircon"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82"
2018-03-05 14:41:22 +00:00
dependencies = [
"bitflags",
"fuchsia-zircon-sys",
2018-03-05 14:41:22 +00:00
]
[[package]]
name = "fuchsia-zircon-sys"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7"
2018-03-05 14:41:22 +00:00
[[package]]
name = "futures"
2021-04-09 12:33:28 +00:00
version = "0.1.31"
2018-03-05 14:41:22 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-09 12:33:28 +00:00
checksum = "3a471a38ef8ed83cd6e40aa59c1ffe17db6855c18e3604d9c4ed8c08ebc28678"
2018-03-05 14:41:22 +00:00
[[package]]
name = "futures-channel"
2023-02-14 13:00:41 +00:00
version = "0.3.26"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 13:00:41 +00:00
checksum = "2e5317663a9089767a1ec00a487df42e0ca174b61b4483213ac24448e4664df5"
dependencies = [
"futures-core",
]
[[package]]
name = "futures-core"
2023-02-14 13:00:41 +00:00
version = "0.3.26"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 13:00:41 +00:00
checksum = "ec90ff4d0fe1f57d600049061dc6bb68ed03c7d2fbd697274c41805dcb3f8608"
[[package]]
name = "futures-io"
2023-02-14 13:00:41 +00:00
version = "0.3.26"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 13:00:41 +00:00
checksum = "bfb8371b6fb2aeb2d280374607aeabfc99d95c72edfe51692e42d3d7f0d08531"
[[package]]
name = "futures-sink"
2023-02-14 13:00:41 +00:00
version = "0.3.26"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 13:00:41 +00:00
checksum = "f310820bb3e8cfd46c80db4d7fb8353e15dfff853a127158425f31e0be6c8364"
[[package]]
name = "futures-task"
2023-02-14 13:00:41 +00:00
version = "0.3.26"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 13:00:41 +00:00
checksum = "dcf79a1bf610b10f42aea489289c5a2c478a786509693b80cd39c44ccd936366"
[[package]]
name = "futures-util"
2023-02-14 13:00:41 +00:00
version = "0.3.26"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 13:00:41 +00:00
checksum = "9c1d6de3acfef38d2be4b1f543f553131788603495be83da675e180c8d6b7bd1"
dependencies = [
"futures-core",
"futures-io",
"futures-task",
"memchr",
2023-02-14 13:00:41 +00:00
"pin-project-lite",
"pin-utils",
"slab",
]
2018-03-05 14:41:22 +00:00
[[package]]
name = "generic-array"
2021-04-09 12:33:28 +00:00
version = "0.12.4"
2018-03-05 14:41:22 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-09 12:33:28 +00:00
checksum = "ffdf9f34f1447443d37393cc6c2b8313aebddcd96906caf34e54c68d8e57d7bd"
dependencies = [
"typenum",
]
2021-04-09 12:33:28 +00:00
[[package]]
name = "generic-array"
2022-08-18 14:51:01 +00:00
version = "0.14.6"
2021-04-09 12:33:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-18 14:51:01 +00:00
checksum = "bff49e947297f3312447abdca79f45f4738097cc82b06e72054d2223f601f1b9"
2021-04-09 12:33:28 +00:00
dependencies = [
"typenum",
2022-06-07 08:29:32 +00:00
"version_check 0.9.4",
2021-04-09 12:33:28 +00:00
]
2021-01-04 10:44:01 +00:00
[[package]]
name = "getrandom"
2023-02-14 13:00:41 +00:00
version = "0.2.8"
2021-01-04 10:44:01 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 13:00:41 +00:00
checksum = "c05aeb6a22b8f62540c194aac980f2115af067bfe15a0734d7277a768d396b31"
2021-01-04 10:44:01 +00:00
dependencies = [
"cfg-if 1.0.0",
2022-08-18 14:51:01 +00:00
"js-sys",
2021-01-04 10:44:01 +00:00
"libc",
2022-06-18 23:41:03 +00:00
"wasi 0.11.0+wasi-snapshot-preview1",
2022-08-18 14:51:01 +00:00
"wasm-bindgen",
2021-01-04 10:44:01 +00:00
]
2020-05-16 15:28:47 +00:00
[[package]]
name = "gimli"
2023-02-14 13:00:41 +00:00
version = "0.27.1"
2020-05-16 15:28:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 13:00:41 +00:00
checksum = "221996f774192f0f718773def8201c4ae31f02616a54ccfc2d358bb0e5cefdec"
2020-05-16 15:28:47 +00:00
[[package]]
name = "h2"
version = "0.3.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "66b91535aa35fea1523ad1b86cb6b53c28e0ae566ba4a460f4457e936cad7c6f"
dependencies = [
2023-02-14 13:00:41 +00:00
"bytes 1.4.0",
"fnv",
"futures-core",
"futures-sink",
"futures-util",
"http",
"indexmap",
"slab",
2023-02-14 13:00:41 +00:00
"tokio",
"tokio-util",
2021-04-09 12:33:28 +00:00
"tracing",
]
2020-07-30 16:23:52 +00:00
[[package]]
name = "hashbrown"
2022-08-18 14:51:01 +00:00
version = "0.12.3"
2020-07-30 16:23:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-18 14:51:01 +00:00
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
2019-11-06 15:52:26 +00:00
[[package]]
name = "hermit-abi"
2021-08-26 18:37:43 +00:00
version = "0.1.19"
2019-11-06 15:52:26 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-26 18:37:43 +00:00
checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
2019-11-06 15:52:26 +00:00
dependencies = [
"libc",
2019-11-06 15:52:26 +00:00
]
2023-02-14 13:00:41 +00:00
[[package]]
name = "hermit-abi"
version = "0.2.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7"
dependencies = [
"libc",
]
2023-04-07 06:14:07 +00:00
[[package]]
name = "hermit-abi"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fed44880c466736ef9a5c5b5facefb5ed0785676d0c02d612db14e54f0d84286"
[[package]]
name = "hkdf"
2021-08-30 12:18:58 +00:00
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-30 12:18:58 +00:00
checksum = "01706d578d5c281058480e673ae4086a9f4710d8df1ad80a5b03e39ece5f886b"
dependencies = [
2021-04-09 12:33:28 +00:00
"digest 0.9.0",
"hmac",
]
[[package]]
name = "hmac"
2021-08-30 12:18:58 +00:00
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-30 12:18:58 +00:00
checksum = "2a2a2320eb7ec0ebe8da8f744d7812d9fc4cb4d09344ac01898dbcb6a20ae69b"
dependencies = [
"crypto-mac",
2021-04-09 12:33:28 +00:00
"digest 0.9.0",
]
[[package]]
name = "http"
2022-06-07 08:29:32 +00:00
version = "0.2.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-07 08:29:32 +00:00
checksum = "75f43d41e26995c17e71ee126451dd3941010b0514a81a9d11f3b341debc2399"
dependencies = [
2023-02-14 13:00:41 +00:00
"bytes 1.4.0",
"fnv",
2023-02-14 13:00:41 +00:00
"itoa",
]
2021-04-09 12:33:28 +00:00
[[package]]
name = "http-body"
2022-06-07 08:29:32 +00:00
version = "0.4.5"
2021-04-09 12:33:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-07 08:29:32 +00:00
checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1"
2021-04-09 12:33:28 +00:00
dependencies = [
2023-02-14 13:00:41 +00:00
"bytes 1.4.0",
2021-04-09 12:33:28 +00:00
"http",
2023-02-14 13:00:41 +00:00
"pin-project-lite",
2021-04-09 12:33:28 +00:00
]
2018-03-05 14:41:22 +00:00
[[package]]
name = "httparse"
2023-02-14 13:00:41 +00:00
version = "1.8.0"
2020-09-21 10:23:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 13:00:41 +00:00
checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904"
2020-09-21 10:23:45 +00:00
2021-05-07 22:11:31 +00:00
[[package]]
name = "httpdate"
2022-06-07 08:29:32 +00:00
version = "1.0.2"
2021-05-07 22:11:31 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-07 08:29:32 +00:00
checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421"
2021-05-07 22:11:31 +00:00
[[package]]
name = "hyper"
version = "0.10.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0a0652d9a2609a968c14be1a9ea00bf4b1d64e2e1f53a1b51b6fff3a6e829273"
dependencies = [
"base64 0.9.3",
"httparse",
"language-tags",
"log 0.3.9",
"mime 0.2.6",
"num_cpus",
2023-02-14 13:00:41 +00:00
"time 0.1.45",
"traitobject",
"typeable",
"unicase 1.4.2",
"url 1.7.2",
]
[[package]]
name = "hyper"
2023-02-14 13:00:41 +00:00
version = "0.14.24"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 13:00:41 +00:00
checksum = "5e011372fa0b68db8350aa7a248930ecc7839bf46d8485577d69f117a75f164c"
dependencies = [
2023-02-14 13:00:41 +00:00
"bytes 1.4.0",
"futures-channel",
"futures-core",
"futures-util",
2023-02-14 13:00:41 +00:00
"h2",
2021-04-09 12:33:28 +00:00
"http",
2023-02-14 13:00:41 +00:00
"http-body",
2021-04-09 12:33:28 +00:00
"httparse",
2023-02-14 13:00:41 +00:00
"httpdate",
"itoa",
"pin-project-lite",
"socket2",
"tokio",
"tower-service",
"tracing",
"want",
]
[[package]]
name = "hyper-rustls"
2023-02-14 13:00:41 +00:00
version = "0.23.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 13:00:41 +00:00
checksum = "1788965e61b367cd03a62950836d5cd41560c3577d90e40e0819373194d1661c"
dependencies = [
2022-06-07 08:29:32 +00:00
"http",
2023-02-14 13:00:41 +00:00
"hyper 0.14.24",
"rustls",
2023-02-14 13:00:41 +00:00
"tokio",
"tokio-rustls",
]
2021-04-09 12:33:28 +00:00
[[package]]
name = "hyper-tls"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905"
dependencies = [
2023-02-14 13:00:41 +00:00
"bytes 1.4.0",
"hyper 0.14.24",
2021-04-09 12:33:28 +00:00
"native-tls",
2023-02-14 13:00:41 +00:00
"tokio",
2021-04-09 12:33:28 +00:00
"tokio-native-tls",
]
2022-08-18 14:51:01 +00:00
[[package]]
name = "iana-time-zone"
2023-02-14 13:00:41 +00:00
version = "0.1.53"
2022-08-18 14:51:01 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 13:00:41 +00:00
checksum = "64c122667b287044802d6ce17ee2ddf13207ed924c712de9a66a5814d5b64765"
2022-08-18 14:51:01 +00:00
dependencies = [
"android_system_properties",
"core-foundation-sys",
2023-02-14 13:00:41 +00:00
"iana-time-zone-haiku",
2022-08-18 14:51:01 +00:00
"js-sys",
"wasm-bindgen",
"winapi 0.3.9",
]
2023-02-14 13:00:41 +00:00
[[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",
]
[[package]]
name = "ident_case"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
2018-03-05 14:41:22 +00:00
[[package]]
name = "idna"
2018-09-18 19:52:53 +00:00
version = "0.1.5"
2018-03-05 14:41:22 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "38f09e0f0b1fb55fdee1f17470ad800da77af5186a1a76c026b679358b7e844e"
2018-03-05 14:41:22 +00:00
dependencies = [
"matches",
"unicode-bidi",
"unicode-normalization",
2018-03-05 14:41:22 +00:00
]
2019-08-25 13:05:25 +00:00
[[package]]
name = "idna"
2023-02-14 13:00:41 +00:00
version = "0.3.0"
2019-08-25 13:05:25 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 13:00:41 +00:00
checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6"
2019-08-25 13:05:25 +00:00
dependencies = [
"unicode-bidi",
"unicode-normalization",
2019-08-25 13:05:25 +00:00
]
[[package]]
name = "indexmap"
2023-02-14 13:00:41 +00:00
version = "1.9.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 13:00:41 +00:00
checksum = "1885e79c1fc4b10f0e172c475f458b7f7b93061064d98c3293e98c5ba0c8b399"
dependencies = [
2022-06-07 08:29:32 +00:00
"autocfg 1.1.0",
"hashbrown",
]
2021-01-04 10:44:01 +00:00
[[package]]
name = "instant"
2022-06-07 08:29:32 +00:00
version = "0.1.12"
2021-01-04 10:44:01 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-07 08:29:32 +00:00
checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
2021-01-04 10:44:01 +00:00
dependencies = [
"cfg-if 1.0.0",
]
2023-04-07 06:14:07 +00:00
[[package]]
name = "io-lifetimes"
version = "1.0.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9c66c74d2ae7e79a5a8f7ac924adbe38ee42a859c6539ad869eb51f0b52dc220"
dependencies = [
"hermit-abi 0.3.1",
"libc",
"windows-sys 0.48.0",
]
2018-03-05 14:41:22 +00:00
[[package]]
name = "iovec"
version = "0.1.4"
2018-03-05 14:41:22 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b2b3ea6ff95e175473f8ffe6a7eb7c00d054240321b84c57051175fe3c1e075e"
2018-03-05 14:41:22 +00:00
dependencies = [
"libc",
2018-03-05 14:41:22 +00:00
]
2020-07-30 16:23:52 +00:00
[[package]]
name = "ipnet"
2023-02-14 13:00:41 +00:00
version = "2.7.1"
2020-07-30 16:23:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 13:00:41 +00:00
checksum = "30e22bd8629359895450b59ea7a776c850561b96a3b1d31321c1949d9e6c9146"
2020-07-30 16:23:52 +00:00
2023-04-07 06:14:07 +00:00
[[package]]
name = "is-terminal"
version = "0.4.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "adcf93614601c8129ddf72e2d5633df827ba6551541c6d8c59520a371475be1f"
dependencies = [
"hermit-abi 0.3.1",
"io-lifetimes",
"rustix",
"windows-sys 0.48.0",
]
2018-03-23 13:21:32 +00:00
[[package]]
name = "itoa"
2023-02-14 13:00:41 +00:00
version = "1.0.5"
2022-06-07 08:29:32 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 13:00:41 +00:00
checksum = "fad582f4b9e86b6caa621cabeb0963332d92eea04729ab12892c2533951e6440"
2022-06-07 08:29:32 +00:00
[[package]]
name = "js-sys"
2023-02-14 13:00:41 +00:00
version = "0.3.61"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 13:00:41 +00:00
checksum = "445dde2150c55e483f3d8416706b97ec8e8237c307e5b7b4b8dd15e6af2a0730"
dependencies = [
"wasm-bindgen",
]
2018-03-05 14:41:22 +00:00
[[package]]
name = "kernel32-sys"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d"
2018-03-05 14:41:22 +00:00
dependencies = [
"winapi 0.2.8",
"winapi-build",
2018-03-05 14:41:22 +00:00
]
[[package]]
name = "language-tags"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a91d884b6667cd606bb5a69aa0c99ba811a115fc68915e7056ec08a46e93199a"
2018-03-05 14:41:22 +00:00
[[package]]
name = "lazy_static"
version = "1.4.0"
2018-03-05 14:41:22 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
2018-03-05 14:41:22 +00:00
[[package]]
name = "libc"
2023-04-07 06:14:07 +00:00
version = "0.2.141"
2018-03-05 14:41:22 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-07 06:14:07 +00:00
checksum = "3304a64d199bb964be99741b7a14d26972741915b3649639149b2479bb46f4b5"
2023-02-14 13:00:41 +00:00
[[package]]
name = "link-cplusplus"
version = "1.0.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ecd207c9c713c34f95a097a5b029ac2ce6010530c7b49d7fea24d977dede04f5"
dependencies = [
"cc",
]
2018-03-05 14:41:22 +00:00
2023-04-07 06:14:07 +00:00
[[package]]
name = "linux-raw-sys"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d59d8c75012853d2e872fb56bc8a2e53718e2cafe1a4c823143141c6d90c322f"
2018-09-18 19:52:53 +00:00
[[package]]
name = "lock_api"
2020-04-19 16:11:14 +00:00
version = "0.3.4"
2018-09-18 19:52:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c4da24a77a3d8a6d4862d95f72e6fdb9c09a643ecdb402d754004a557f2bec75"
2018-09-18 19:52:53 +00:00
dependencies = [
"scopeguard",
2018-09-18 19:52:53 +00:00
]
2021-01-04 10:44:01 +00:00
[[package]]
name = "lock_api"
2023-02-14 13:00:41 +00:00
version = "0.4.9"
2021-01-04 10:44:01 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 13:00:41 +00:00
checksum = "435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df"
2021-01-04 10:44:01 +00:00
dependencies = [
2022-06-07 08:29:32 +00:00
"autocfg 1.1.0",
2021-01-04 10:44:01 +00:00
"scopeguard",
]
[[package]]
name = "log"
version = "0.3.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e19e8d5c34a3e0e2223db8e060f9e8264aeeb5c5fc64a4ee9965c062211c024b"
dependencies = [
2022-06-07 08:29:32 +00:00
"log 0.4.17",
]
2018-03-05 14:41:22 +00:00
[[package]]
name = "log"
2022-06-07 08:29:32 +00:00
version = "0.4.17"
2018-03-05 14:41:22 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-07 08:29:32 +00:00
checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
2018-03-05 14:41:22 +00:00
dependencies = [
2021-04-09 12:33:28 +00:00
"cfg-if 1.0.0",
2018-03-05 14:41:22 +00:00
]
[[package]]
name = "malloc_buf"
version = "0.0.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "62bb907fe88d54d8d9ce32a3cceab4218ed2f6b7d35617cafe9adf84e43919cb"
dependencies = [
"libc",
]
2018-03-05 14:41:22 +00:00
[[package]]
name = "matches"
2023-02-14 13:00:41 +00:00
version = "0.1.10"
2018-03-05 14:41:22 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 13:00:41 +00:00
checksum = "2532096657941c2fea9c289d370a250971c689d4f143798ff67113ec042024a5"
2018-03-05 14:41:22 +00:00
2019-11-06 15:52:26 +00:00
[[package]]
name = "maybe-uninit"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "60302e4db3a61da70c0cb7991976248362f30319e88850c487b9b95bbf059e00"
2019-11-06 15:52:26 +00:00
[[package]]
name = "memchr"
2022-06-07 08:29:32 +00:00
version = "2.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-07 08:29:32 +00:00
checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
[[package]]
name = "mime"
version = "0.2.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ba626b8a6de5da682e1caa06bdb42a335aee5a84db8e5046a3e8ab17ba0a3ae0"
dependencies = [
"log 0.3.9",
]
2018-03-05 14:41:22 +00:00
[[package]]
name = "mime"
2020-01-10 15:14:16 +00:00
version = "0.3.16"
2018-03-05 14:41:22 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2a60c7ce501c71e03a9c9c0d35b861413ae925bd979cc7a4e30d060069aaac8d"
2018-03-05 14:41:22 +00:00
[[package]]
name = "mime_guess"
2022-06-07 08:29:32 +00:00
version = "2.0.4"
2018-03-05 14:41:22 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-07 08:29:32 +00:00
checksum = "4192263c238a5f0d0c6bfd21f336a313a4ce1c450542449ca191bb657b4642ef"
2018-03-05 14:41:22 +00:00
dependencies = [
"mime 0.3.16",
"unicase 2.6.0",
2018-03-05 14:41:22 +00:00
]
2020-07-09 10:46:27 +00:00
[[package]]
name = "miniz_oxide"
2023-02-14 13:00:41 +00:00
version = "0.6.2"
2020-07-09 10:46:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 13:00:41 +00:00
checksum = "b275950c28b37e794e8c55d88aeb5e139d0ce23fdbbeda68f8d7174abdf9e8fa"
2020-07-09 10:46:27 +00:00
dependencies = [
"adler",
2020-07-09 10:46:27 +00:00
]
2018-03-05 14:41:22 +00:00
[[package]]
name = "mio"
2021-01-04 10:44:01 +00:00
version = "0.6.23"
2018-03-05 14:41:22 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-04 10:44:01 +00:00
checksum = "4afd66f5b91bf2a3bc13fad0e21caedac168ca4c707504e75585648ae80e4cc4"
2018-03-05 14:41:22 +00:00
dependencies = [
2020-10-16 12:35:50 +00:00
"cfg-if 0.1.10",
"fuchsia-zircon",
"fuchsia-zircon-sys",
"iovec",
"kernel32-sys",
"libc",
2022-06-07 08:29:32 +00:00
"log 0.4.17",
"miow",
"net2",
"slab",
"winapi 0.2.8",
2018-03-05 14:41:22 +00:00
]
2020-07-09 10:46:27 +00:00
[[package]]
name = "mio"
2023-02-14 13:00:41 +00:00
version = "0.8.6"
2020-07-09 10:46:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 13:00:41 +00:00
checksum = "5b9d9a46eff5b4ff64b45a9e316a6d1e0bc719ef429cbec4dc630684212bfdf9"
2020-07-09 10:46:27 +00:00
dependencies = [
"libc",
2022-06-07 08:29:32 +00:00
"log 0.4.17",
"wasi 0.11.0+wasi-snapshot-preview1",
2023-02-14 13:00:41 +00:00
"windows-sys 0.45.0",
2020-07-09 10:46:27 +00:00
]
2018-03-05 14:41:22 +00:00
[[package]]
name = "miow"
2021-01-04 10:44:01 +00:00
version = "0.2.2"
2018-03-05 14:41:22 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-04 10:44:01 +00:00
checksum = "ebd808424166322d4a38da87083bfddd3ac4c131334ed55856112eb06d46944d"
2018-03-05 14:41:22 +00:00
dependencies = [
"kernel32-sys",
"net2",
"winapi 0.2.8",
"ws2_32-sys",
2018-03-05 14:41:22 +00:00
]
[[package]]
name = "native-tls"
2023-02-14 13:00:41 +00:00
version = "0.2.11"
2018-03-05 14:41:22 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 13:00:41 +00:00
checksum = "07226173c32f2926027b63cce4bcd8076c3552846cbe7925f3aaffeac0a3b92e"
2018-03-05 14:41:22 +00:00
dependencies = [
"lazy_static",
"libc",
2022-06-07 08:29:32 +00:00
"log 0.4.17",
"openssl",
"openssl-probe",
"openssl-sys",
"schannel",
"security-framework",
"security-framework-sys",
"tempfile",
2018-03-05 14:41:22 +00:00
]
[[package]]
name = "net2"
2023-02-14 13:00:41 +00:00
version = "0.2.38"
2018-03-05 14:41:22 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 13:00:41 +00:00
checksum = "74d0df99cfcd2530b2e694f6e17e7f37b8e26bb23983ac530c0c97408837c631"
2018-03-05 14:41:22 +00:00
dependencies = [
2020-10-16 12:35:50 +00:00
"cfg-if 0.1.10",
"libc",
"winapi 0.3.9",
2020-07-09 10:46:27 +00:00
]
2018-03-08 19:32:45 +00:00
[[package]]
name = "num-integer"
2022-06-07 08:29:32 +00:00
version = "0.1.45"
2018-03-08 19:32:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-07 08:29:32 +00:00
checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9"
2018-03-08 19:32:45 +00:00
dependencies = [
2022-06-07 08:29:32 +00:00
"autocfg 1.1.0",
"num-traits",
2018-03-08 19:32:45 +00:00
]
[[package]]
name = "num-traits"
2022-06-07 08:29:32 +00:00
version = "0.2.15"
2018-03-05 14:41:22 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-07 08:29:32 +00:00
checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd"
2019-05-23 20:17:38 +00:00
dependencies = [
2022-06-07 08:29:32 +00:00
"autocfg 1.1.0",
2019-05-23 20:17:38 +00:00
]
2018-03-05 14:41:22 +00:00
[[package]]
name = "num_cpus"
2023-02-14 13:00:41 +00:00
version = "1.15.0"
2018-03-05 14:41:22 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 13:00:41 +00:00
checksum = "0fac9e2da13b5eb447a6ce3d392f23a29d8694bff781bf03a16cd9ac8697593b"
2018-03-05 14:41:22 +00:00
dependencies = [
2023-02-14 13:00:41 +00:00
"hermit-abi 0.2.6",
"libc",
2018-03-05 14:41:22 +00:00
]
[[package]]
name = "objc"
version = "0.2.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "915b1b472bc21c53464d6c8461c9d3af805ba1ef837e1cac254428f4a77177b1"
dependencies = [
"malloc_buf",
]
[[package]]
name = "objc-foundation"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1add1b659e36c9607c7aab864a76c7a4c2760cd0cd2e120f3fb8b952c7e22bf9"
dependencies = [
"block",
"objc",
"objc_id",
]
[[package]]
name = "objc_id"
2018-09-18 19:52:53 +00:00
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c92d4ddb4bd7b50d730c215ff871754d0da6b2178849f8a2a2ab69712d0c073b"
dependencies = [
"objc",
]
2020-05-16 15:28:47 +00:00
[[package]]
name = "object"
2023-02-14 13:00:41 +00:00
version = "0.30.3"
2020-05-16 15:28:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 13:00:41 +00:00
checksum = "ea86265d3d3dcb6a27fc51bd29a4bf387fae9d2986b823079d4986af253eb439"
2021-08-26 18:37:43 +00:00
dependencies = [
"memchr",
]
2020-05-16 15:28:47 +00:00
2020-05-11 18:56:24 +00:00
[[package]]
name = "once_cell"
2023-02-14 13:00:41 +00:00
version = "1.17.0"
2020-05-11 18:56:24 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 13:00:41 +00:00
checksum = "6f61fba1741ea2b3d6a1e3178721804bb716a68a6aeba1149b5d52e3d464ea66"
2020-05-11 18:56:24 +00:00
[[package]]
name = "opaque-debug"
2019-08-04 20:49:07 +00:00
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2839e79665f131bdb5782e51f2c6c9599c133c6098982a54c794358bf432529c"
2021-04-09 12:33:28 +00:00
[[package]]
name = "opaque-debug"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5"
2018-03-05 14:41:22 +00:00
[[package]]
name = "open"
2022-06-07 08:29:32 +00:00
version = "2.1.3"
2018-03-05 14:41:22 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-07 08:29:32 +00:00
checksum = "f2423ffbf445b82e58c3b1543655968923dd06f85432f10be2bb4f1b7122f98c"
2018-03-05 14:41:22 +00:00
dependencies = [
2021-08-26 18:37:43 +00:00
"pathdiff",
2023-02-14 13:00:41 +00:00
"windows-sys 0.36.1",
2018-03-05 14:41:22 +00:00
]
[[package]]
name = "openssl"
2023-02-14 13:00:41 +00:00
version = "0.10.45"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 13:00:41 +00:00
checksum = "b102428fd03bc5edf97f62620f7298614c45cedf287c271e7ed450bbaf83f2e1"
dependencies = [
"bitflags",
2021-01-04 10:44:01 +00:00
"cfg-if 1.0.0",
"foreign-types",
"libc",
2021-04-09 12:33:28 +00:00
"once_cell",
2022-06-07 08:29:32 +00:00
"openssl-macros",
"openssl-sys",
]
2022-06-07 08:29:32 +00:00
[[package]]
name = "openssl-macros"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b501e44f11665960c7e7fcf062c7d96a14ade4aa98116c004b2e37b5be7d736c"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
2018-06-23 15:02:02 +00:00
[[package]]
name = "openssl-probe"
2022-06-07 08:29:32 +00:00
version = "0.1.5"
2018-06-23 15:02:02 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-07 08:29:32 +00:00
checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
2018-06-23 15:02:02 +00:00
2018-03-05 14:41:22 +00:00
[[package]]
name = "openssl-sys"
2023-02-14 13:00:41 +00:00
version = "0.9.80"
2018-09-18 19:52:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 13:00:41 +00:00
checksum = "23bbbf7854cd45b83958ebe919f0e8e516793727652e27fda10a8384cfc790b7"
2018-09-18 19:52:53 +00:00
dependencies = [
2022-06-07 08:29:32 +00:00
"autocfg 1.1.0",
"cc",
"libc",
"pkg-config",
"vcpkg",
2018-09-18 19:52:53 +00:00
]
[[package]]
name = "parking_lot"
2019-10-06 22:53:34 +00:00
version = "0.9.0"
2018-03-05 14:41:22 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f842b1982eb6c2fe34036a4fbfb06dd185a3f5c8edfaacdf7d1ea10b07de6252"
2018-03-05 14:41:22 +00:00
dependencies = [
2021-01-04 10:44:01 +00:00
"lock_api 0.3.4",
2023-02-14 13:00:41 +00:00
"parking_lot_core 0.6.3",
"rustc_version",
2018-09-18 19:52:53 +00:00
]
[[package]]
name = "parking_lot"
2022-06-07 08:29:32 +00:00
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-07 08:29:32 +00:00
checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
dependencies = [
2023-02-14 13:00:41 +00:00
"lock_api 0.4.9",
"parking_lot_core 0.9.7",
]
2018-09-18 19:52:53 +00:00
[[package]]
name = "parking_lot_core"
2023-02-14 13:00:41 +00:00
version = "0.6.3"
2018-09-18 19:52:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 13:00:41 +00:00
checksum = "bda66b810a62be75176a80873726630147a5ca780cd33921e0b5709033e66b0a"
2018-09-18 19:52:53 +00:00
dependencies = [
2020-10-16 12:35:50 +00:00
"cfg-if 0.1.10",
"cloudabi",
"libc",
2021-04-09 12:33:28 +00:00
"redox_syscall 0.1.57",
"rustc_version",
2021-04-09 12:33:28 +00:00
"smallvec 0.6.14",
"winapi 0.3.9",
2018-03-05 14:41:22 +00:00
]
[[package]]
name = "parking_lot_core"
2023-02-14 13:00:41 +00:00
version = "0.9.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 13:00:41 +00:00
checksum = "9069cbb9f99e3a5083476ccb29ceb1de18b9118cafa53e90c9551235de2b9521"
dependencies = [
2021-01-04 10:44:01 +00:00
"cfg-if 1.0.0",
"libc",
2022-08-18 14:51:01 +00:00
"redox_syscall 0.2.16",
2023-02-14 13:00:41 +00:00
"smallvec 1.10.0",
"windows-sys 0.45.0",
]
[[package]]
name = "pathdiff"
2021-10-06 11:51:38 +00:00
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-06 11:51:38 +00:00
checksum = "8835116a5c179084a830efb3adc117ab007512b535bc1a21c991d3b32a6b44dd"
[[package]]
name = "pbr"
2023-02-14 13:00:41 +00:00
version = "1.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 13:00:41 +00:00
checksum = "ed5827dfa0d69b6c92493d6c38e633bbaa5937c153d0d7c28bf12313f8c6d514"
dependencies = [
"crossbeam-channel",
"libc",
"winapi 0.3.9",
]
2018-03-05 14:41:22 +00:00
[[package]]
name = "percent-encoding"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "31010dd2e1ac33d5b46a5b413495239882813e0369f8ed8a5e266f173602f831"
2018-03-05 14:41:22 +00:00
2019-08-25 13:05:25 +00:00
[[package]]
name = "percent-encoding"
2023-02-14 13:00:41 +00:00
version = "2.2.0"
2021-01-04 10:44:01 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 13:00:41 +00:00
checksum = "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e"
2021-01-04 10:44:01 +00:00
[[package]]
name = "pin-project-lite"
2022-06-07 08:29:32 +00:00
version = "0.2.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-07 08:29:32 +00:00
checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116"
[[package]]
name = "pin-utils"
2020-05-04 23:46:01 +00:00
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
2018-03-05 14:41:22 +00:00
[[package]]
name = "pkg-config"
2023-02-14 13:00:41 +00:00
version = "0.3.26"
2018-03-05 14:41:22 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 13:00:41 +00:00
checksum = "6ac9a59f73473f1b8d852421e59e64809f025994837ef743615c6d0c5b305160"
2018-03-05 14:41:22 +00:00
[[package]]
name = "ppv-lite86"
2023-02-14 13:00:41 +00:00
version = "0.2.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 13:00:41 +00:00
checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
2018-04-27 17:11:21 +00:00
[[package]]
name = "prettytable-rs"
2023-04-07 06:14:07 +00:00
version = "0.10.0"
2018-04-27 17:11:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-07 06:14:07 +00:00
checksum = "eea25e07510aa6ab6547308ebe3c036016d162b8da920dbb079e3ba8acf3d95a"
2018-04-27 17:11:21 +00:00
dependencies = [
"encode_unicode",
2023-04-07 06:14:07 +00:00
"is-terminal",
"lazy_static",
"term",
"unicode-width",
2018-04-27 17:11:21 +00:00
]
[[package]]
name = "proc-macro-hack"
2023-02-14 13:00:41 +00:00
version = "0.5.20+deprecated"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 13:00:41 +00:00
checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068"
[[package]]
name = "proc-macro2"
2023-02-14 13:00:41 +00:00
version = "1.0.51"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 13:00:41 +00:00
checksum = "5d727cae5b39d21da60fa540906919ad737832fe0b1c165da3a34d6548c849d6"
dependencies = [
2022-06-07 08:29:32 +00:00
"unicode-ident",
]
[[package]]
name = "qr2term"
2022-06-07 08:29:32 +00:00
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-07 08:29:32 +00:00
checksum = "1d9ed66d596477e4a04d2ebdbc9b657c417e8316ae7cc504f82ace5a786d4d7d"
dependencies = [
"crossterm",
"qrcode",
]
[[package]]
name = "qrcode"
2020-03-31 00:12:54 +00:00
version = "0.12.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "16d2f1455f3630c6e5107b4f2b94e74d76dea80736de0981fd27644216cff57f"
dependencies = [
"checked_int_cast",
]
[[package]]
name = "quote"
2023-02-14 13:00:41 +00:00
version = "1.0.23"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 13:00:41 +00:00
checksum = "8856d8364d252a14d474036ea1358d63c9e6965c8e5c1885c18f73d70bff9c7b"
dependencies = [
"proc-macro2",
]
2019-01-11 17:14:26 +00:00
[[package]]
name = "rand"
version = "0.6.5"
2019-01-11 17:14:26 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6d71dacdc3c88c1fde3885a3be3fbab9f35724e6ce99467f7d9c5026132184ca"
2019-01-11 17:14:26 +00:00
dependencies = [
2022-06-07 08:29:32 +00:00
"autocfg 0.1.8",
"libc",
"rand_chacha 0.1.1",
"rand_core 0.4.2",
2022-06-07 08:29:32 +00:00
"rand_hc",
"rand_isaac",
"rand_jitter",
"rand_os",
"rand_pcg",
"rand_xorshift",
"winapi 0.3.9",
2019-01-11 17:14:26 +00:00
]
[[package]]
name = "rand"
2022-06-07 08:29:32 +00:00
version = "0.8.5"
2021-01-04 10:44:01 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-07 08:29:32 +00:00
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
2021-01-04 10:44:01 +00:00
dependencies = [
"libc",
2021-08-26 18:37:43 +00:00
"rand_chacha 0.3.1",
2023-02-14 13:00:41 +00:00
"rand_core 0.6.4",
2021-01-04 10:44:01 +00:00
]
2019-01-11 17:14:26 +00:00
[[package]]
name = "rand_chacha"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "556d3a1ca6600bfcbab7c7c91ccb085ac7fbbcd70e008a98742e7847f4f7bcef"
2019-01-11 17:14:26 +00:00
dependencies = [
2022-06-07 08:29:32 +00:00
"autocfg 0.1.8",
"rand_core 0.3.1",
2019-01-11 17:14:26 +00:00
]
2021-01-04 10:44:01 +00:00
[[package]]
name = "rand_chacha"
2021-08-26 18:37:43 +00:00
version = "0.3.1"
2021-01-04 10:44:01 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-26 18:37:43 +00:00
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
2021-01-04 10:44:01 +00:00
dependencies = [
"ppv-lite86",
2023-02-14 13:00:41 +00:00
"rand_core 0.6.4",
2021-01-04 10:44:01 +00:00
]
[[package]]
name = "rand_core"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b"
dependencies = [
"rand_core 0.4.2",
]
[[package]]
name = "rand_core"
version = "0.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9c33a3c44ca05fa6f1807d8e6743f3824e8509beca625669633be0acbdf509dc"
[[package]]
name = "rand_core"
2023-02-14 13:00:41 +00:00
version = "0.6.4"
2021-01-04 10:44:01 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 13:00:41 +00:00
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
2021-01-04 10:44:01 +00:00
dependencies = [
2023-04-07 06:14:07 +00:00
"getrandom",
]
2019-01-11 17:14:26 +00:00
[[package]]
name = "rand_hc"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7b40677c7be09ae76218dc623efbf7b18e34bced3f38883af07bb75630a21bc4"
2019-01-11 17:14:26 +00:00
dependencies = [
"rand_core 0.3.1",
2019-01-11 17:14:26 +00:00
]
[[package]]
name = "rand_isaac"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ded997c9d5f13925be2a6fd7e66bf1872597f759fd9dd93513dd7e92e5a5ee08"
2019-01-11 17:14:26 +00:00
dependencies = [
"rand_core 0.3.1",
]
[[package]]
name = "rand_jitter"
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1166d5c91dc97b88d1decc3285bb0a99ed84b05cfd0bc2341bdf2d43fc41e39b"
dependencies = [
"libc",
"rand_core 0.4.2",
"winapi 0.3.9",
2019-01-11 17:14:26 +00:00
]
[[package]]
name = "rand_os"
version = "0.1.3"
2019-01-11 17:14:26 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7b75f676a1e053fc562eafbb47838d67c84801e38fc1ba459e8f180deabd5071"
2019-01-11 17:14:26 +00:00
dependencies = [
"cloudabi",
"fuchsia-cprng",
"libc",
"rand_core 0.4.2",
"rdrand",
"winapi 0.3.9",
2019-01-11 17:14:26 +00:00
]
[[package]]
name = "rand_pcg"
version = "0.1.2"
2019-01-11 17:14:26 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "abf9b09b01790cfe0364f52bf32995ea3c39f4d2dd011eac241d2914146d0b44"
2019-01-11 17:14:26 +00:00
dependencies = [
2022-06-07 08:29:32 +00:00
"autocfg 0.1.8",
"rand_core 0.4.2",
2019-01-11 17:14:26 +00:00
]
[[package]]
name = "rand_xorshift"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cbf7e9e623549b0e21f6e97cf8ecf247c1a8fd2e8a992ae265314300b2455d5c"
2019-01-11 17:14:26 +00:00
dependencies = [
"rand_core 0.3.1",
2019-01-11 17:14:26 +00:00
]
[[package]]
name = "rdrand"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2"
2019-01-11 17:14:26 +00:00
dependencies = [
"rand_core 0.3.1",
2019-01-11 17:14:26 +00:00
]
2018-03-05 14:41:22 +00:00
[[package]]
name = "redox_syscall"
2020-07-30 16:23:52 +00:00
version = "0.1.57"
2018-03-05 14:41:22 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "41cc0f7e4d5d4544e8861606a285bb08d3e70712ccc7d2b84d7c0ccfaf4b05ce"
2018-03-05 14:41:22 +00:00
2021-04-09 12:33:28 +00:00
[[package]]
name = "redox_syscall"
2022-08-18 14:51:01 +00:00
version = "0.2.16"
2021-04-09 12:33:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-18 14:51:01 +00:00
checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
2021-04-09 12:33:28 +00:00
dependencies = [
"bitflags",
]
2021-05-07 22:11:31 +00:00
[[package]]
name = "redox_users"
2022-06-07 08:29:32 +00:00
version = "0.4.3"
2021-05-07 22:11:31 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-07 08:29:32 +00:00
checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b"
2021-05-07 22:11:31 +00:00
dependencies = [
2023-04-07 06:14:07 +00:00
"getrandom",
2022-08-18 14:51:01 +00:00
"redox_syscall 0.2.16",
2022-06-07 08:29:32 +00:00
"thiserror",
2021-05-07 22:11:31 +00:00
]
[[package]]
name = "regex"
2023-02-14 13:00:41 +00:00
version = "1.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 13:00:41 +00:00
checksum = "48aaa5748ba571fb95cd2c85c09f629215d3a6ece942baa100950af03a34f733"
dependencies = [
"aho-corasick",
"memchr",
"regex-syntax",
]
[[package]]
name = "regex-syntax"
2023-02-14 13:00:41 +00:00
version = "0.6.28"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 13:00:41 +00:00
checksum = "456c603be3e8d448b072f410900c09faf164fbce2d480456f50eea6e25f9c848"
2018-03-05 14:41:22 +00:00
[[package]]
name = "remove_dir_all"
2020-07-09 10:46:27 +00:00
version = "0.5.3"
2018-03-05 14:41:22 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7"
2018-03-05 14:41:22 +00:00
dependencies = [
"winapi 0.3.9",
2018-03-05 14:41:22 +00:00
]
[[package]]
name = "reqwest"
2023-02-14 13:00:41 +00:00
version = "0.11.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 13:00:41 +00:00
checksum = "21eed90ec8570952d53b772ecf8f206aa1ec9a3d76b2521c56c42973f2d91ee9"
dependencies = [
2023-02-14 13:00:41 +00:00
"base64 0.21.0",
"bytes 1.4.0",
"encoding_rs",
"futures-core",
"futures-util",
2023-02-14 13:00:41 +00:00
"h2",
"http",
2023-02-14 13:00:41 +00:00
"http-body",
"hyper 0.14.24",
"hyper-rustls",
2023-02-14 13:00:41 +00:00
"hyper-tls",
"ipnet",
"js-sys",
2022-06-07 08:29:32 +00:00
"log 0.4.17",
"mime 0.3.16",
"mime_guess",
"native-tls",
2023-02-14 13:00:41 +00:00
"once_cell",
"percent-encoding 2.2.0",
"pin-project-lite",
"rustls",
2022-06-07 08:29:32 +00:00
"rustls-pemfile",
"serde",
"serde_json",
"serde_urlencoded",
2023-02-14 13:00:41 +00:00
"tokio",
2021-04-09 12:33:28 +00:00
"tokio-native-tls",
"tokio-rustls",
2022-06-18 23:41:03 +00:00
"tower-service",
2023-02-14 13:00:41 +00:00
"url 2.3.1",
"wasm-bindgen",
"wasm-bindgen-futures",
"web-sys",
"webpki-roots",
2023-02-14 13:00:41 +00:00
"winreg",
]
[[package]]
name = "ring"
2021-04-09 12:33:28 +00:00
version = "0.16.20"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-09 12:33:28 +00:00
checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc"
dependencies = [
"cc",
"libc",
"once_cell",
"spin",
"untrusted",
"web-sys",
"winapi 0.3.9",
]
2018-03-28 19:42:02 +00:00
[[package]]
name = "rpassword"
2021-04-09 12:33:28 +00:00
version = "5.0.1"
2018-03-28 19:42:02 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-09 12:33:28 +00:00
checksum = "ffc936cf8a7ea60c58f030fd36a612a48f440610214dc54bc36431f9ea0c3efb"
2018-03-28 19:42:02 +00:00
dependencies = [
"libc",
"winapi 0.3.9",
]
[[package]]
name = "rustc-demangle"
2021-08-26 18:37:43 +00:00
version = "0.1.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-26 18:37:43 +00:00
checksum = "7ef03e0a2b150c7a90d01faf6254c9c48a41e95fb2a8c2ac1c6f0d2b9aefc342"
2018-09-18 19:52:53 +00:00
[[package]]
name = "rustc_version"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a"
2018-09-18 19:52:53 +00:00
dependencies = [
"semver",
2018-09-18 19:52:53 +00:00
]
2023-04-07 06:14:07 +00:00
[[package]]
name = "rustix"
version = "0.37.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1aef160324be24d31a62147fae491c14d2204a3865c7ca8c3b0d7f7bcb3ea635"
dependencies = [
"bitflags",
"errno",
"io-lifetimes",
"libc",
"linux-raw-sys",
"windows-sys 0.48.0",
]
[[package]]
name = "rustls"
2023-02-14 13:00:41 +00:00
version = "0.20.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 13:00:41 +00:00
checksum = "fff78fc74d175294f4e83b28343315ffcfb114b156f0185e9741cb5570f50e2f"
dependencies = [
2022-06-07 08:29:32 +00:00
"log 0.4.17",
"ring",
"sct",
"webpki",
]
2022-06-07 08:29:32 +00:00
[[package]]
name = "rustls-pemfile"
2023-02-14 13:00:41 +00:00
version = "1.0.2"
2022-06-07 08:29:32 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 13:00:41 +00:00
checksum = "d194b56d58803a43635bdc398cd17e383d6f71f9182b9a192c127ca42494a59b"
2022-06-07 08:29:32 +00:00
dependencies = [
2023-02-14 13:00:41 +00:00
"base64 0.21.0",
2022-06-07 08:29:32 +00:00
]
2023-04-07 06:14:07 +00:00
[[package]]
name = "rustversion"
version = "1.0.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4f3208ce4d8448b3f3e7d168a73f5e0c43a61e32930de3bceeccedb388b6bf06"
[[package]]
name = "ryu"
2023-02-14 13:00:41 +00:00
version = "1.0.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 13:00:41 +00:00
checksum = "7b4b9743ed687d4b4bcedf9ff5eaa7398495ae14e61cba0a295704edbc7decde"
[[package]]
name = "safemem"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ef703b7cb59335eae2eb93ceb664c0eb7ea6bf567079d843e09420219668e072"
2018-03-05 14:41:22 +00:00
[[package]]
name = "schannel"
2023-02-14 13:00:41 +00:00
version = "0.1.21"
2018-03-05 14:41:22 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 13:00:41 +00:00
checksum = "713cfb06c7059f3588fb8044c0fad1d09e3c01d225e25b9220dbfdcf16dbb1b3"
2018-03-05 14:41:22 +00:00
dependencies = [
2023-02-14 13:00:41 +00:00
"windows-sys 0.42.0",
2018-03-05 14:41:22 +00:00
]
2019-08-04 20:49:07 +00:00
[[package]]
name = "scopeguard"
2020-03-31 00:12:54 +00:00
version = "1.1.0"
2019-08-04 20:49:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
2019-08-04 20:49:07 +00:00
2023-02-14 13:00:41 +00:00
[[package]]
name = "scratch"
version = "1.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ddccb15bcce173023b3fedd9436f882a0739b8dfb45e4f6b6002bee5929f61b2"
[[package]]
name = "sct"
2022-06-07 08:29:32 +00:00
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-07 08:29:32 +00:00
checksum = "d53dcdb7c9f8158937a7981b48accfd39a43af418591a5d008c7b22b5e1b7ca4"
dependencies = [
"ring",
"untrusted",
]
2018-03-05 14:41:22 +00:00
[[package]]
name = "security-framework"
2023-02-14 13:00:41 +00:00
version = "2.8.2"
2018-03-05 14:41:22 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 13:00:41 +00:00
checksum = "a332be01508d814fed64bf28f798a146d73792121129962fdf335bb3c49a4254"
2018-03-05 14:41:22 +00:00
dependencies = [
"bitflags",
"core-foundation",
"core-foundation-sys",
"libc",
"security-framework-sys",
2018-03-05 14:41:22 +00:00
]
[[package]]
name = "security-framework-sys"
2023-02-14 13:00:41 +00:00
version = "2.8.0"
2018-03-05 14:41:22 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 13:00:41 +00:00
checksum = "31c9bb296072e961fcbd8853511dd39c2d8be2deb1e17c6860b1d30732b323b4"
2018-03-05 14:41:22 +00:00
dependencies = [
"core-foundation-sys",
"libc",
2018-03-05 14:41:22 +00:00
]
2018-09-18 19:52:53 +00:00
[[package]]
name = "semver"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403"
2018-09-18 19:52:53 +00:00
dependencies = [
"semver-parser",
2018-09-18 19:52:53 +00:00
]
[[package]]
name = "semver-parser"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3"
2018-09-18 19:52:53 +00:00
2018-03-05 14:41:22 +00:00
[[package]]
name = "serde"
2023-02-14 13:00:41 +00:00
version = "1.0.152"
2018-03-05 14:41:22 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 13:00:41 +00:00
checksum = "bb7d1f0d3021d347a83e556fc4683dea2ea09d87bccdf88ff5c12545d89d5efb"
2019-05-23 20:17:38 +00:00
dependencies = [
"serde_derive",
2019-05-23 20:17:38 +00:00
]
2018-03-05 14:41:22 +00:00
[[package]]
name = "serde_derive"
2023-02-14 13:00:41 +00:00
version = "1.0.152"
2018-03-05 14:41:22 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 13:00:41 +00:00
checksum = "af487d118eecd09402d70a5d72551860e788df87b464af30e5ea6a38c75c541e"
2018-03-05 14:41:22 +00:00
dependencies = [
"proc-macro2",
"quote",
"syn",
2018-03-05 14:41:22 +00:00
]
[[package]]
name = "serde_json"
2023-02-14 13:00:41 +00:00
version = "1.0.93"
2018-03-05 14:41:22 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 13:00:41 +00:00
checksum = "cad406b69c91885b5107daf2c29572f6c8cdb3c66826821e286c533490c0bc76"
2018-03-05 14:41:22 +00:00
dependencies = [
2023-02-14 13:00:41 +00:00
"itoa",
"ryu",
"serde",
2018-03-05 14:41:22 +00:00
]
[[package]]
name = "serde_urlencoded"
2022-06-07 08:29:32 +00:00
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-07 08:29:32 +00:00
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
dependencies = [
2021-01-04 10:44:01 +00:00
"form_urlencoded",
2023-02-14 13:00:41 +00:00
"itoa",
2021-01-04 10:44:01 +00:00
"ryu",
"serde",
]
2021-04-09 12:33:28 +00:00
[[package]]
name = "sha-1"
version = "0.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f7d94d0bede923b3cea61f3f1ff57ff8cdfd77b400fb8f9998949e0cf04163df"
dependencies = [
"block-buffer 0.7.3",
"digest 0.8.1",
"fake-simd",
"opaque-debug 0.2.3",
]
[[package]]
name = "sha1"
2022-06-07 08:29:32 +00:00
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"
2022-06-07 08:29:32 +00:00
checksum = "ae1a47186c03a32177042e55dbc5fd5aee900b8e0069a8d70fba96a9375cd012"
[[package]]
name = "sha2"
2022-06-07 08:29:32 +00:00
version = "0.9.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-07 08:29:32 +00:00
checksum = "4d58a1e1bf39749807d89cf2d98ac2dfa0ff1cb3faa38fbb64dd88ac8013d800"
dependencies = [
2021-04-09 12:33:28 +00:00
"block-buffer 0.9.0",
"cfg-if 1.0.0",
2021-05-07 22:11:31 +00:00
"cpufeatures",
2021-04-09 12:33:28 +00:00
"digest 0.9.0",
"opaque-debug 0.3.0",
]
[[package]]
name = "signal-hook"
2023-02-14 13:00:41 +00:00
version = "0.3.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 13:00:41 +00:00
checksum = "732768f1176d21d09e076c23a93123d40bba92d50c4058da34d45c8de8e682b9"
dependencies = [
"libc",
"signal-hook-registry",
]
2022-06-07 08:29:32 +00:00
[[package]]
name = "signal-hook-mio"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "29ad2e15f37ec9a6cc544097b78a1ec90001e9f71b81338ca39f430adaca99af"
dependencies = [
"libc",
2023-02-14 13:00:41 +00:00
"mio 0.8.6",
2022-06-07 08:29:32 +00:00
"signal-hook",
]
[[package]]
name = "signal-hook-registry"
2023-02-14 13:00:41 +00:00
version = "1.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 13:00:41 +00:00
checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1"
dependencies = [
"libc",
]
2018-03-05 14:41:22 +00:00
[[package]]
name = "slab"
2022-08-18 14:51:01 +00:00
version = "0.4.7"
2018-03-05 14:41:22 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-18 14:51:01 +00:00
checksum = "4614a76b2a8be0058caa9dbbaf66d988527d86d003c11a94fbd335d7661edcef"
dependencies = [
"autocfg 1.1.0",
]
2018-03-05 14:41:22 +00:00
2018-09-18 19:52:53 +00:00
[[package]]
name = "smallvec"
2021-04-09 12:33:28 +00:00
version = "0.6.14"
2018-09-18 19:52:53 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-09 12:33:28 +00:00
checksum = "b97fcaeba89edba30f044a10c6a3cc39df9c3f17d7cd829dd1446cab35f890e0"
2019-11-06 15:52:26 +00:00
dependencies = [
"maybe-uninit",
2019-11-06 15:52:26 +00:00
]
2018-09-18 19:52:53 +00:00
2019-11-29 15:13:23 +00:00
[[package]]
name = "smallvec"
2023-02-14 13:00:41 +00:00
version = "1.10.0"
2020-05-30 14:16:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 13:00:41 +00:00
checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0"
2020-05-30 14:16:45 +00:00
2021-04-09 12:33:28 +00:00
[[package]]
name = "socket2"
2023-02-14 13:00:41 +00:00
version = "0.4.7"
2021-04-09 12:33:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 13:00:41 +00:00
checksum = "02e2d2db9033d13a1567121ddd7a095ee144db4e1ca1b1bda3419bc0da294ebd"
2021-04-09 12:33:28 +00:00
dependencies = [
"libc",
"winapi 0.3.9",
]
[[package]]
name = "spin"
version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"
[[package]]
2020-03-31 00:12:54 +00:00
name = "standback"
2021-04-09 12:33:28 +00:00
version = "0.2.17"
2020-03-31 00:12:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-09 12:33:28 +00:00
checksum = "e113fb6f3de07a243d434a56ec6f186dfd51cb08448239fe7bcae73f87ff28ff"
2020-07-09 10:46:27 +00:00
dependencies = [
2022-06-07 08:29:32 +00:00
"version_check 0.9.4",
2020-07-09 10:46:27 +00:00
]
2020-03-31 00:12:54 +00:00
[[package]]
name = "stdweb"
version = "0.4.20"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d022496b16281348b52d0e30ae99e01a73d737b2f45d38fed4edf79f9325a1d5"
2020-03-31 00:12:54 +00:00
dependencies = [
"discard",
"rustc_version",
"stdweb-derive",
"stdweb-internal-macros",
"stdweb-internal-runtime",
"wasm-bindgen",
2020-03-31 00:12:54 +00:00
]
[[package]]
name = "stdweb-derive"
version = "0.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c87a60a40fccc84bef0652345bbbbbe20a605bf5d0ce81719fc476f5c03b50ef"
2020-03-31 00:12:54 +00:00
dependencies = [
"proc-macro2",
"quote",
"serde",
"serde_derive",
"syn",
2020-03-31 00:12:54 +00:00
]
[[package]]
name = "stdweb-internal-macros"
version = "0.2.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "58fa5ff6ad0d98d1ffa8cb115892b6e69d67799f6763e162a1c9db421dc22e11"
2020-03-31 00:12:54 +00:00
dependencies = [
"base-x",
"proc-macro2",
"quote",
"serde",
"serde_derive",
"serde_json",
"sha1",
"syn",
2020-03-31 00:12:54 +00:00
]
[[package]]
name = "stdweb-internal-runtime"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "213701ba3370744dcd1a12960caa4843b3d68b4d1c0a5d575e0d65b2ee9d16c0"
2018-03-05 17:23:41 +00:00
[[package]]
name = "strsim"
2019-04-09 16:12:15 +00:00
version = "0.8.0"
2018-03-05 17:23:41 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
2018-03-05 17:23:41 +00:00
[[package]]
name = "strsim"
version = "0.9.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6446ced80d6c486436db5c078dde11a9f73d42b57fb273121e160b84f63d894c"
2021-04-09 12:33:28 +00:00
[[package]]
name = "strsim"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
[[package]]
name = "subtle"
2021-08-26 18:37:43 +00:00
version = "2.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-26 18:37:43 +00:00
checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601"
2018-03-05 14:41:22 +00:00
[[package]]
name = "syn"
2023-02-14 13:00:41 +00:00
version = "1.0.107"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 13:00:41 +00:00
checksum = "1f4064b5b16e03ae50984a5a8ed5d4f8803e6bc1fd170a3cda91a1be4b18e3f5"
dependencies = [
"proc-macro2",
"quote",
2022-06-07 08:29:32 +00:00
"unicode-ident",
]
[[package]]
name = "synstructure"
2021-10-14 20:52:02 +00:00
version = "0.12.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-14 20:52:02 +00:00
checksum = "f36bdaa60a83aca3921b5259d5400cbf5e90fc51931376a9bd4a0eb79aa7210f"
dependencies = [
"proc-macro2",
"quote",
"syn",
"unicode-xid",
]
[[package]]
name = "tar"
2022-06-07 08:29:32 +00:00
version = "0.4.38"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-07 08:29:32 +00:00
checksum = "4b55807c0344e1e6c04d7c965f5289c39a8d94ae23ed5c0b57aabac549f871c6"
dependencies = [
"filetime",
"libc",
"xattr",
]
[[package]]
name = "tempfile"
2022-06-07 08:29:32 +00:00
version = "3.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-07 08:29:32 +00:00
checksum = "5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4"
dependencies = [
2021-04-09 12:33:28 +00:00
"cfg-if 1.0.0",
2022-06-07 08:29:32 +00:00
"fastrand",
"libc",
2022-08-18 14:51:01 +00:00
"redox_syscall 0.2.16",
"remove_dir_all",
"winapi 0.3.9",
]
2018-04-27 17:11:21 +00:00
[[package]]
name = "term"
2023-04-07 06:14:07 +00:00
version = "0.7.0"
2018-04-27 17:11:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-07 06:14:07 +00:00
checksum = "c59df8ac95d96ff9bede18eb7300b0fda5e5d8d90960e76f8e14ae765eedbf1f"
2018-04-27 17:11:21 +00:00
dependencies = [
2023-04-07 06:14:07 +00:00
"dirs-next",
"rustversion",
"winapi 0.3.9",
2018-04-27 17:11:21 +00:00
]
2023-02-14 13:00:41 +00:00
[[package]]
name = "termcolor"
version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "be55cf8942feac5c765c2c993422806843c9a9a45d4d5c407ad6dd2ea95eb9b6"
dependencies = [
"winapi-util",
]
2018-03-05 17:23:41 +00:00
[[package]]
name = "textwrap"
2019-04-09 16:12:15 +00:00
version = "0.11.0"
2018-03-05 17:23:41 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
2018-03-05 17:23:41 +00:00
dependencies = [
"unicode-width",
2018-03-05 17:23:41 +00:00
]
2020-05-30 14:17:38 +00:00
[[package]]
name = "thiserror"
2023-02-14 13:00:41 +00:00
version = "1.0.38"
2020-05-30 14:17:38 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 13:00:41 +00:00
checksum = "6a9cd18aa97d5c45c6603caea1da6628790b37f7a34b6ca89522331c5180fed0"
2020-05-30 14:17:38 +00:00
dependencies = [
"thiserror-impl",
2020-05-30 14:17:38 +00:00
]
[[package]]
name = "thiserror-impl"
2023-02-14 13:00:41 +00:00
version = "1.0.38"
2020-05-30 14:17:38 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 13:00:41 +00:00
checksum = "1fb327af4685e4d03fa8cbcf1716380da910eeb2bb8be417e7f9fd3fb164f36f"
2020-05-30 14:17:38 +00:00
dependencies = [
"proc-macro2",
"quote",
"syn",
2020-05-30 14:17:38 +00:00
]
2018-03-05 14:41:22 +00:00
[[package]]
name = "time"
2023-02-14 13:00:41 +00:00
version = "0.1.45"
2018-03-05 14:41:22 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 13:00:41 +00:00
checksum = "1b797afad3f312d1c66a56d11d0316f916356d11bd158fbc6ca6389ff6bf805a"
2018-03-05 14:41:22 +00:00
dependencies = [
"libc",
2022-06-18 23:41:03 +00:00
"wasi 0.10.0+wasi-snapshot-preview1",
"winapi 0.3.9",
2018-03-05 14:41:22 +00:00
]
[[package]]
name = "time"
2021-08-26 18:37:43 +00:00
version = "0.2.27"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-26 18:37:43 +00:00
checksum = "4752a97f8eebd6854ff91f1c1824cd6160626ac4bd44287f7f4ea2035a02a242"
dependencies = [
"const_fn",
"libc",
"standback",
"stdweb",
"time-macros",
2022-06-07 08:29:32 +00:00
"version_check 0.9.4",
"winapi 0.3.9",
]
[[package]]
name = "time-macros"
2020-10-16 12:35:50 +00:00
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-16 12:35:50 +00:00
checksum = "957e9c6e26f12cb6d0dd7fc776bb67a706312e7299aed74c8dd5b17ebb27e2f1"
dependencies = [
"proc-macro-hack",
"time-macros-impl",
]
[[package]]
name = "time-macros-impl"
2021-08-26 18:37:43 +00:00
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-26 18:37:43 +00:00
checksum = "fd3c141a1b43194f3f56a1411225df8646c55781d5f26db825b3d98507eb482f"
dependencies = [
"proc-macro-hack",
"proc-macro2",
"quote",
"standback",
"syn",
]
2020-07-09 10:46:27 +00:00
[[package]]
name = "tinyvec"
2022-06-07 08:29:32 +00:00
version = "1.6.0"
2020-07-09 10:46:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-07 08:29:32 +00:00
checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
2021-01-04 10:44:01 +00:00
dependencies = [
"tinyvec_macros",
]
[[package]]
name = "tinyvec_macros"
2023-02-14 13:00:41 +00:00
version = "0.1.1"
2021-01-04 10:44:01 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 13:00:41 +00:00
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
2020-07-09 10:46:27 +00:00
[[package]]
name = "tokio"
2023-02-14 13:00:41 +00:00
version = "1.25.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 13:00:41 +00:00
checksum = "c8e00990ebabbe4c14c08aca901caed183ecd5c09562a12c824bb53d3c3fd3af"
2021-04-09 12:33:28 +00:00
dependencies = [
2022-08-18 14:51:01 +00:00
"autocfg 1.1.0",
2023-02-14 13:00:41 +00:00
"bytes 1.4.0",
2021-04-09 12:33:28 +00:00
"libc",
"memchr",
2023-02-14 13:00:41 +00:00
"mio 0.8.6",
2021-04-09 12:33:28 +00:00
"num_cpus",
2023-02-14 13:00:41 +00:00
"pin-project-lite",
"socket2",
"windows-sys 0.42.0",
2021-04-09 12:33:28 +00:00
]
[[package]]
name = "tokio-codec"
2020-03-31 00:12:54 +00:00
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "25b2998660ba0e70d18684de5d06b70b70a3a747469af9dea7618cc59e75976b"
dependencies = [
"bytes 0.4.12",
"futures",
"tokio-io",
2018-09-18 19:52:53 +00:00
]
2018-03-23 13:21:32 +00:00
[[package]]
name = "tokio-executor"
2020-03-31 00:12:54 +00:00
version = "0.1.10"
2018-03-23 13:21:32 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fb2d1b8f4548dbf5e1f7818512e9c406860678f29c300cdf0ebac72d1a3a1671"
2018-03-23 13:21:32 +00:00
dependencies = [
2021-01-04 10:44:01 +00:00
"crossbeam-utils 0.7.2",
"futures",
2018-03-05 14:41:22 +00:00
]
[[package]]
name = "tokio-io"
2020-03-31 00:12:54 +00:00
version = "0.1.13"
2018-03-05 14:41:22 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "57fc868aae093479e3131e3d165c93b1c7474109d13c90ec0dda2a1bbfff0674"
2018-03-05 14:41:22 +00:00
dependencies = [
"bytes 0.4.12",
"futures",
2022-06-07 08:29:32 +00:00
"log 0.4.17",
2021-04-09 12:33:28 +00:00
]
[[package]]
name = "tokio-native-tls"
2023-02-14 13:00:41 +00:00
version = "0.3.1"
2021-04-09 12:33:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 13:00:41 +00:00
checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2"
2021-04-09 12:33:28 +00:00
dependencies = [
"native-tls",
2023-02-14 13:00:41 +00:00
"tokio",
2018-03-05 14:41:22 +00:00
]
2018-03-23 13:21:32 +00:00
[[package]]
name = "tokio-reactor"
2020-03-31 00:12:54 +00:00
version = "0.1.12"
2018-03-23 13:21:32 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "09bc590ec4ba8ba87652da2068d150dcada2cfa2e07faae270a5e0409aa51351"
2018-03-23 13:21:32 +00:00
dependencies = [
2021-01-04 10:44:01 +00:00
"crossbeam-utils 0.7.2",
"futures",
"lazy_static",
2022-06-07 08:29:32 +00:00
"log 0.4.17",
2021-01-04 10:44:01 +00:00
"mio 0.6.23",
"num_cpus",
"parking_lot 0.9.0",
"slab",
"tokio-executor",
"tokio-io",
"tokio-sync",
2018-03-23 13:21:32 +00:00
]
[[package]]
name = "tokio-rustls"
2022-06-07 08:29:32 +00:00
version = "0.23.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-07 08:29:32 +00:00
checksum = "c43ee83903113e03984cb9e5cebe6c04a5116269e900e3ddba8f068a62adda59"
dependencies = [
"rustls",
2023-02-14 13:00:41 +00:00
"tokio",
"webpki",
]
[[package]]
name = "tokio-sync"
2020-03-31 00:12:54 +00:00
version = "0.1.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "edfe50152bc8164fcc456dab7891fa9bf8beaf01c5ee7e1dd43a397c3cf87dee"
dependencies = [
"fnv",
"futures",
]
2018-03-23 13:21:32 +00:00
[[package]]
name = "tokio-tcp"
2020-03-31 00:12:54 +00:00
version = "0.1.4"
2018-03-23 13:21:32 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "98df18ed66e3b72e742f185882a9e201892407957e45fbff8da17ae7a7c51f72"
dependencies = [
"bytes 0.4.12",
"futures",
"iovec",
2021-01-04 10:44:01 +00:00
"mio 0.6.23",
"tokio-io",
"tokio-reactor",
]
[[package]]
name = "tokio-tls"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "354b8cd83825b3c20217a9dc174d6a0c67441a2fae5c41bcb1ea6679f6ae0f7c"
dependencies = [
"futures",
"native-tls",
"tokio-io",
]
[[package]]
name = "tokio-util"
2023-02-14 13:00:41 +00:00
version = "0.7.7"
2021-04-09 12:33:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 13:00:41 +00:00
checksum = "5427d89453009325de0d8f342c9490009f76e999cb7672d77e46267448f7e6b2"
2021-04-09 12:33:28 +00:00
dependencies = [
2023-02-14 13:00:41 +00:00
"bytes 1.4.0",
2021-04-09 12:33:28 +00:00
"futures-core",
"futures-sink",
2023-02-14 13:00:41 +00:00
"pin-project-lite",
"tokio",
2022-06-07 08:29:32 +00:00
"tracing",
]
[[package]]
name = "toml"
2023-02-14 13:00:41 +00:00
version = "0.5.11"
2019-01-11 17:14:26 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 13:00:41 +00:00
checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234"
2019-01-11 17:14:26 +00:00
dependencies = [
"serde",
2019-01-11 17:14:26 +00:00
]
[[package]]
name = "tower-service"
2022-06-18 23:41:03 +00:00
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-18 23:41:03 +00:00
checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52"
2020-07-30 16:23:52 +00:00
[[package]]
name = "tracing"
2023-02-14 13:00:41 +00:00
version = "0.1.37"
2020-07-30 16:23:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 13:00:41 +00:00
checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8"
2020-07-30 16:23:52 +00:00
dependencies = [
2021-01-04 10:44:01 +00:00
"cfg-if 1.0.0",
2023-02-14 13:00:41 +00:00
"pin-project-lite",
"tracing-core",
2020-07-30 16:23:52 +00:00
]
[[package]]
name = "tracing-core"
2023-02-14 13:00:41 +00:00
version = "0.1.30"
2020-07-30 16:23:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 13:00:41 +00:00
checksum = "24eb03ba0eab1fd845050058ce5e616558e8f8d8fca633e6b163fe25c797213a"
2020-07-30 16:23:52 +00:00
dependencies = [
2022-06-18 23:41:03 +00:00
"once_cell",
2020-07-30 16:23:52 +00:00
]
[[package]]
name = "traitobject"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "efd1f82c56340fdf16f2a953d7bda4f8fdffba13d93b00844c25572110b26079"
2018-05-17 12:35:08 +00:00
[[package]]
name = "try-lock"
2023-02-14 13:00:41 +00:00
version = "0.2.4"
2018-05-17 12:35:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 13:00:41 +00:00
checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed"
2018-05-17 12:35:08 +00:00
[[package]]
name = "typeable"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1410f6f91f21d1612654e7cc69193b0334f909dcf2c790c4826254fbb86f8887"
[[package]]
name = "typenum"
2023-02-14 13:00:41 +00:00
version = "1.16.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 13:00:41 +00:00
checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba"
2018-03-05 14:41:22 +00:00
[[package]]
name = "unicase"
version = "1.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7f4765f83163b74f957c797ad9253caf97f103fb064d3999aea9568d09fc8a33"
2018-03-05 14:41:22 +00:00
dependencies = [
"version_check 0.1.5",
2018-03-05 14:41:22 +00:00
]
[[package]]
name = "unicase"
2019-11-29 15:13:23 +00:00
version = "2.6.0"
2018-03-05 14:41:22 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6"
2018-03-05 14:41:22 +00:00
dependencies = [
2022-06-07 08:29:32 +00:00
"version_check 0.9.4",
2018-03-05 14:41:22 +00:00
]
[[package]]
name = "unicode-bidi"
2023-02-14 13:00:41 +00:00
version = "0.3.10"
2022-06-07 08:29:32 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 13:00:41 +00:00
checksum = "d54675592c1dbefd78cbd98db9bacd89886e1ca50692a0692baefffdeb92dd58"
2022-06-07 08:29:32 +00:00
[[package]]
name = "unicode-ident"
2023-02-14 13:00:41 +00:00
version = "1.0.6"
2018-03-05 14:41:22 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 13:00:41 +00:00
checksum = "84a22b9f218b40614adcb3f4ff08b703773ad44fa9423e4e0d346d5db86e4ebc"
2018-03-05 14:41:22 +00:00
[[package]]
name = "unicode-normalization"
2023-02-14 13:00:41 +00:00
version = "0.1.22"
2018-03-05 14:41:22 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 13:00:41 +00:00
checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921"
dependencies = [
"tinyvec",
]
2018-03-05 14:41:22 +00:00
2018-03-05 17:23:41 +00:00
[[package]]
name = "unicode-width"
2023-02-14 13:00:41 +00:00
version = "0.1.10"
2018-03-05 17:23:41 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 13:00:41 +00:00
checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b"
2018-03-05 17:23:41 +00:00
[[package]]
name = "unicode-xid"
2023-02-14 13:00:41 +00:00
version = "0.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 13:00:41 +00:00
checksum = "f962df74c8c05a667b5ee8bcf162993134c104e96440b663c8daa176dc772d8c"
[[package]]
name = "untrusted"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
2018-03-05 14:41:22 +00:00
[[package]]
name = "url"
2018-11-20 10:03:08 +00:00
version = "1.7.2"
2018-03-05 14:41:22 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dd4e7c0d531266369519a4aa4f399d748bd37043b00bde1e4ff1f60a120b355a"
2018-03-05 14:41:22 +00:00
dependencies = [
"idna 0.1.5",
"matches",
"percent-encoding 1.0.1",
2018-03-05 14:41:22 +00:00
]
2019-08-25 13:05:25 +00:00
[[package]]
name = "url"
2023-02-14 13:00:41 +00:00
version = "2.3.1"
2019-08-25 13:05:25 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 13:00:41 +00:00
checksum = "0d68c799ae75762b8c3fe375feb6600ef5602c883c5d21eb51c09f22b83c4643"
2019-08-25 13:05:25 +00:00
dependencies = [
2021-01-04 10:44:01 +00:00
"form_urlencoded",
2023-02-14 13:00:41 +00:00
"idna 0.3.0",
"percent-encoding 2.2.0",
"serde",
]
[[package]]
name = "urlshortener"
2023-02-14 13:00:41 +00:00
version = "3.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 13:00:41 +00:00
checksum = "45f52f28eac462823cdf5ad746c2fd1355498e3450e8854c22e9da61a1fbe572"
dependencies = [
2023-02-14 13:00:41 +00:00
"reqwest",
"url 2.3.1",
]
2018-03-05 14:41:22 +00:00
[[package]]
name = "vcpkg"
2021-08-26 18:37:43 +00:00
version = "0.2.15"
2018-03-05 14:41:22 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-26 18:37:43 +00:00
checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
2018-03-05 14:41:22 +00:00
2018-03-05 17:23:41 +00:00
[[package]]
name = "vec_map"
2020-05-11 18:56:24 +00:00
version = "0.8.2"
2018-03-05 17:23:41 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191"
2018-03-05 17:23:41 +00:00
2020-09-21 10:23:45 +00:00
[[package]]
name = "version-compare"
version = "0.0.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1c18c859eead79d8b95d09e4678566e8d70105c4e7b251f707a03df32442661b"
2020-09-21 10:23:45 +00:00
2021-10-06 11:51:38 +00:00
[[package]]
name = "version-compare"
2023-02-14 13:00:41 +00:00
version = "0.1.1"
2021-10-06 11:51:38 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 13:00:41 +00:00
checksum = "579a42fc0b8e0c63b76519a339be31bed574929511fa53c1a3acae26eb258f29"
2021-10-06 11:51:38 +00:00
2018-03-05 14:41:22 +00:00
[[package]]
name = "version_check"
version = "0.1.5"
2018-03-05 14:41:22 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "914b1a6776c4c929a602fafd8bc742e06365d4bcbe48c30f9cca5824f70dc9dd"
2018-03-05 14:41:22 +00:00
2019-11-29 15:13:23 +00:00
[[package]]
name = "version_check"
2022-06-07 08:29:32 +00:00
version = "0.9.4"
2019-11-29 15:13:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-07 08:29:32 +00:00
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
2019-11-29 15:13:23 +00:00
[[package]]
name = "want"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0"
dependencies = [
2022-06-07 08:29:32 +00:00
"log 0.4.17",
"try-lock",
]
2020-09-21 10:23:45 +00:00
[[package]]
name = "wasi"
2022-06-18 23:41:03 +00:00
version = "0.10.0+wasi-snapshot-preview1"
2020-09-21 10:23:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-18 23:41:03 +00:00
checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f"
2020-09-21 10:23:45 +00:00
2022-06-07 08:29:32 +00:00
[[package]]
name = "wasi"
version = "0.11.0+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
[[package]]
name = "wasm-bindgen"
2023-02-14 13:00:41 +00:00
version = "0.2.84"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 13:00:41 +00:00
checksum = "31f8dcbc21f30d9b8f2ea926ecb58f6b91192c17e9d33594b3df58b2007ca53b"
dependencies = [
2021-01-04 10:44:01 +00:00
"cfg-if 1.0.0",
"wasm-bindgen-macro",
]
[[package]]
name = "wasm-bindgen-backend"
2023-02-14 13:00:41 +00:00
version = "0.2.84"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 13:00:41 +00:00
checksum = "95ce90fd5bcc06af55a641a86428ee4229e44e07033963a2290a8e241607ccb9"
dependencies = [
"bumpalo",
2022-06-07 08:29:32 +00:00
"log 0.4.17",
2022-08-18 14:51:01 +00:00
"once_cell",
"proc-macro2",
"quote",
"syn",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-futures"
2023-02-14 13:00:41 +00:00
version = "0.4.34"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 13:00:41 +00:00
checksum = "f219e0d211ba40266969f6dbdd90636da12f75bee4fc9d6c23d1260dadb51454"
dependencies = [
2021-01-04 10:44:01 +00:00
"cfg-if 1.0.0",
"js-sys",
"wasm-bindgen",
"web-sys",
]
[[package]]
name = "wasm-bindgen-macro"
2023-02-14 13:00:41 +00:00
version = "0.2.84"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 13:00:41 +00:00
checksum = "4c21f77c0bedc37fd5dc21f897894a5ca01e7bb159884559461862ae90c0b4c5"
dependencies = [
"quote",
"wasm-bindgen-macro-support",
]
[[package]]
name = "wasm-bindgen-macro-support"
2023-02-14 13:00:41 +00:00
version = "0.2.84"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 13:00:41 +00:00
checksum = "2aff81306fcac3c7515ad4e177f521b5c9a15f2b08f4e32d823066102f35a5f6"
dependencies = [
"proc-macro2",
"quote",
"syn",
"wasm-bindgen-backend",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-shared"
2023-02-14 13:00:41 +00:00
version = "0.2.84"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 13:00:41 +00:00
checksum = "0046fef7e28c3804e5e38bfa31ea2a0f73905319b677e57ebe37e49358989b5d"
[[package]]
name = "web-sys"
2023-02-14 13:00:41 +00:00
version = "0.3.61"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 13:00:41 +00:00
checksum = "e33b99f4b23ba3eec1a53ac264e35a755f00e966e0065077d6027c0f575b0b97"
dependencies = [
"js-sys",
"wasm-bindgen",
]
[[package]]
name = "webpki"
2022-06-07 08:29:32 +00:00
version = "0.22.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-07 08:29:32 +00:00
checksum = "f095d78192e208183081cc07bc5515ef55216397af48b873e5edcd72637fa1bd"
dependencies = [
"ring",
"untrusted",
]
[[package]]
name = "webpki-roots"
2023-02-14 13:00:41 +00:00
version = "0.22.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 13:00:41 +00:00
checksum = "b6c71e40d7d2c34a5106301fb632274ca37242cd0c9d3e64dbece371a40a2d87"
dependencies = [
"webpki",
]
[[package]]
name = "websocket"
2022-08-18 14:51:01 +00:00
version = "0.26.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-18 14:51:01 +00:00
checksum = "92aacab060eea423e4036820ddd28f3f9003b2c4d8048cbda985e5a14e18038d"
dependencies = [
"bytes 0.4.12",
"futures",
"hyper 0.10.16",
"native-tls",
"rand 0.6.5",
"tokio-codec",
"tokio-io",
"tokio-reactor",
"tokio-tcp",
2023-02-14 13:00:41 +00:00
"tokio-tls",
"unicase 1.4.2",
"url 1.7.2",
"websocket-base",
]
[[package]]
name = "websocket-base"
2022-08-18 14:51:01 +00:00
version = "0.26.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-18 14:51:01 +00:00
checksum = "49aec794b07318993d1db16156d5a9c750120597a5ee40c6b928d416186cb138"
dependencies = [
"base64 0.10.1",
"bitflags",
"byteorder",
"bytes 0.4.12",
"futures",
"native-tls",
"rand 0.6.5",
2021-04-09 12:33:28 +00:00
"sha-1",
"tokio-codec",
"tokio-io",
"tokio-tcp",
2023-02-14 13:00:41 +00:00
"tokio-tls",
]
[[package]]
name = "which"
2023-02-14 13:00:41 +00:00
version = "4.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 13:00:41 +00:00
checksum = "2441c784c52b289a054b7201fc93253e288f094e2f4be9058343127c4226a269"
dependencies = [
2021-04-09 12:33:28 +00:00
"either",
"libc",
2023-02-14 13:00:41 +00:00
"once_cell",
]
2018-03-05 14:41:22 +00:00
[[package]]
name = "winapi"
version = "0.2.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a"
2018-03-05 14:41:22 +00:00
[[package]]
name = "winapi"
2020-07-09 10:46:27 +00:00
version = "0.3.9"
2018-03-05 14:41:22 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
2018-03-05 14:41:22 +00:00
dependencies = [
"winapi-i686-pc-windows-gnu",
"winapi-x86_64-pc-windows-gnu",
2018-03-05 14:41:22 +00:00
]
[[package]]
name = "winapi-build"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc"
2018-03-05 14:41:22 +00:00
[[package]]
name = "winapi-i686-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
2018-03-05 14:41:22 +00:00
2023-02-14 13:00:41 +00:00
[[package]]
name = "winapi-util"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
dependencies = [
"winapi 0.3.9",
]
2018-03-05 14:41:22 +00:00
[[package]]
name = "winapi-x86_64-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
2018-03-05 14:41:22 +00:00
2022-06-07 08:29:32 +00:00
[[package]]
name = "windows-sys"
version = "0.36.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ea04155a16a59f9eab786fe12a4a450e75cdb175f9e0d80da1e17db09f55b8d2"
dependencies = [
2023-02-14 13:00:41 +00:00
"windows_aarch64_msvc 0.36.1",
"windows_i686_gnu 0.36.1",
"windows_i686_msvc 0.36.1",
"windows_x86_64_gnu 0.36.1",
"windows_x86_64_msvc 0.36.1",
2022-06-07 08:29:32 +00:00
]
2023-02-14 13:00:41 +00:00
[[package]]
name = "windows-sys"
version = "0.42.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7"
dependencies = [
2023-04-07 06:14:07 +00:00
"windows_aarch64_gnullvm 0.42.1",
2023-02-14 13:00:41 +00:00
"windows_aarch64_msvc 0.42.1",
"windows_i686_gnu 0.42.1",
"windows_i686_msvc 0.42.1",
"windows_x86_64_gnu 0.42.1",
2023-04-07 06:14:07 +00:00
"windows_x86_64_gnullvm 0.42.1",
2023-02-14 13:00:41 +00:00
"windows_x86_64_msvc 0.42.1",
]
[[package]]
name = "windows-sys"
version = "0.45.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
dependencies = [
2023-04-07 06:14:07 +00:00
"windows-targets 0.42.1",
]
[[package]]
name = "windows-sys"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
dependencies = [
"windows-targets 0.48.0",
2023-02-14 13:00:41 +00:00
]
[[package]]
name = "windows-targets"
version = "0.42.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8e2522491fbfcd58cc84d47aeb2958948c4b8982e9a2d8a2a35bbaed431390e7"
dependencies = [
2023-04-07 06:14:07 +00:00
"windows_aarch64_gnullvm 0.42.1",
2023-02-14 13:00:41 +00:00
"windows_aarch64_msvc 0.42.1",
"windows_i686_gnu 0.42.1",
"windows_i686_msvc 0.42.1",
"windows_x86_64_gnu 0.42.1",
2023-04-07 06:14:07 +00:00
"windows_x86_64_gnullvm 0.42.1",
2023-02-14 13:00:41 +00:00
"windows_x86_64_msvc 0.42.1",
]
2023-04-07 06:14:07 +00:00
[[package]]
name = "windows-targets"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7b1eb6f0cd7c80c79759c929114ef071b87354ce476d9d94271031c0497adfd5"
dependencies = [
"windows_aarch64_gnullvm 0.48.0",
"windows_aarch64_msvc 0.48.0",
"windows_i686_gnu 0.48.0",
"windows_i686_msvc 0.48.0",
"windows_x86_64_gnu 0.48.0",
"windows_x86_64_gnullvm 0.48.0",
"windows_x86_64_msvc 0.48.0",
]
2023-02-14 13:00:41 +00:00
[[package]]
name = "windows_aarch64_gnullvm"
version = "0.42.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8c9864e83243fdec7fc9c5444389dcbbfd258f745e7853198f365e3c4968a608"
2023-04-07 06:14:07 +00:00
[[package]]
name = "windows_aarch64_gnullvm"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc"
2022-06-07 08:29:32 +00:00
[[package]]
name = "windows_aarch64_msvc"
version = "0.36.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9bb8c3fd39ade2d67e9874ac4f3db21f0d710bee00fe7cab16949ec184eeaa47"
2023-02-14 13:00:41 +00:00
[[package]]
name = "windows_aarch64_msvc"
version = "0.42.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4c8b1b673ffc16c47a9ff48570a9d85e25d265735c503681332589af6253c6c7"
2023-04-07 06:14:07 +00:00
[[package]]
name = "windows_aarch64_msvc"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3"
2022-06-07 08:29:32 +00:00
[[package]]
name = "windows_i686_gnu"
version = "0.36.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "180e6ccf01daf4c426b846dfc66db1fc518f074baa793aa7d9b9aaeffad6a3b6"
2023-02-14 13:00:41 +00:00
[[package]]
name = "windows_i686_gnu"
version = "0.42.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "de3887528ad530ba7bdbb1faa8275ec7a1155a45ffa57c37993960277145d640"
2023-04-07 06:14:07 +00:00
[[package]]
name = "windows_i686_gnu"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241"
2022-06-07 08:29:32 +00:00
[[package]]
name = "windows_i686_msvc"
version = "0.36.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e2e7917148b2812d1eeafaeb22a97e4813dfa60a3f8f78ebe204bcc88f12f024"
2023-02-14 13:00:41 +00:00
[[package]]
name = "windows_i686_msvc"
version = "0.42.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bf4d1122317eddd6ff351aa852118a2418ad4214e6613a50e0191f7004372605"
2023-04-07 06:14:07 +00:00
[[package]]
name = "windows_i686_msvc"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00"
2022-06-07 08:29:32 +00:00
[[package]]
name = "windows_x86_64_gnu"
version = "0.36.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4dcd171b8776c41b97521e5da127a2d86ad280114807d0b2ab1e462bc764d9e1"
2023-02-14 13:00:41 +00:00
[[package]]
name = "windows_x86_64_gnu"
version = "0.42.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c1040f221285e17ebccbc2591ffdc2d44ee1f9186324dd3e84e99ac68d699c45"
2023-04-07 06:14:07 +00:00
[[package]]
name = "windows_x86_64_gnu"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1"
2023-02-14 13:00:41 +00:00
[[package]]
name = "windows_x86_64_gnullvm"
version = "0.42.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "628bfdf232daa22b0d64fdb62b09fcc36bb01f05a3939e20ab73aaf9470d0463"
2023-04-07 06:14:07 +00:00
[[package]]
name = "windows_x86_64_gnullvm"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953"
2022-06-07 08:29:32 +00:00
[[package]]
name = "windows_x86_64_msvc"
version = "0.36.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c811ca4a8c853ef420abd8592ba53ddbbac90410fab6903b3e79972a631f7680"
2019-08-04 20:49:07 +00:00
[[package]]
2023-02-14 13:00:41 +00:00
name = "windows_x86_64_msvc"
version = "0.42.1"
2019-08-04 20:49:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 13:00:41 +00:00
checksum = "447660ad36a13288b1db4d4248e857b510e8c3a225c822ba4fb748c0aafecffd"
2019-08-04 20:49:07 +00:00
2023-04-07 06:14:07 +00:00
[[package]]
name = "windows_x86_64_msvc"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a"
2022-06-07 08:29:32 +00:00
[[package]]
name = "winreg"
version = "0.10.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d"
dependencies = [
"winapi 0.3.9",
]
2018-03-05 14:41:22 +00:00
[[package]]
name = "ws2_32-sys"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d59cefebd0c892fa2dd6de581e937301d8552cb44489cdff035c6187cb63fa5e"
2018-03-05 14:41:22 +00:00
dependencies = [
"winapi 0.2.8",
"winapi-build",
2018-03-05 14:41:22 +00:00
]
2018-03-05 12:07:31 +00:00
[[package]]
name = "x11-clipboard"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "89bd49c06c9eb5d98e6ba6536cf64ac9f7ee3a009b2f53996d405b3944f6bcea"
dependencies = [
"xcb",
]
[[package]]
name = "xattr"
2022-06-07 08:29:32 +00:00
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-07 08:29:32 +00:00
checksum = "6d1526bbe5aaeb5eb06885f4d987bcdfa5e23187055de9b83fe00156a821fabc"
dependencies = [
"libc",
]
[[package]]
name = "xcb"
version = "0.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5e917a3f24142e9ff8be2414e36c649d47d6cc2ba81f16201cdef96e533e02de"
dependencies = [
"libc",
2022-06-07 08:29:32 +00:00
"log 0.4.17",
]