lix-installer/Cargo.lock

2375 lines
58 KiB
Plaintext
Raw Normal View History

2022-09-02 23:03:57 +00:00
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
[[package]]
name = "addr2line"
2022-12-19 22:52:09 +00:00
version = "0.19.0"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-19 22:52:09 +00:00
checksum = "a76fd60b23679b7d19bd066031410fb7e458ccc5e958eb5c325888ce4baedc97"
2022-09-02 23:03:57 +00:00
dependencies = [
"gimli",
]
[[package]]
name = "adler"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
2022-10-13 19:03:42 +00:00
[[package]]
name = "android_system_properties"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
dependencies = [
"libc",
]
2023-03-29 17:13:28 +00:00
[[package]]
name = "anstream"
2023-05-03 18:01:34 +00:00
version = "0.3.2"
2023-03-29 17:13:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-03 18:01:34 +00:00
checksum = "0ca84f3628370c59db74ee214b3263d58f9aadd9b4fe7e711fd87dc452b7f163"
2023-03-29 17:13:28 +00:00
dependencies = [
"anstyle",
"anstyle-parse",
2023-05-03 18:01:34 +00:00
"anstyle-query",
2023-03-29 17:13:28 +00:00
"anstyle-wincon",
2023-05-03 18:01:34 +00:00
"colorchoice",
2023-03-29 17:13:28 +00:00
"is-terminal",
"utf8parse",
]
[[package]]
name = "anstyle"
2023-05-03 18:01:34 +00:00
version = "1.0.0"
2023-03-29 17:13:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-03 18:01:34 +00:00
checksum = "41ed9a86bf92ae6580e0a31281f65a1b1d867c0cc68d5346e2ae128dddfa6a7d"
2023-03-29 17:13:28 +00:00
[[package]]
name = "anstyle-parse"
2023-05-03 18:01:34 +00:00
version = "0.2.0"
2023-03-29 17:13:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-03 18:01:34 +00:00
checksum = "e765fd216e48e067936442276d1d57399e37bce53c264d6fefbe298080cb57ee"
2023-03-29 17:13:28 +00:00
dependencies = [
"utf8parse",
]
2023-05-03 18:01:34 +00:00
[[package]]
name = "anstyle-query"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5ca11d4be1bab0c8bc8734a9aa7bf4ee8316d462a08c6ac5052f888fef5b494b"
dependencies = [
"windows-sys 0.48.0",
]
2023-03-29 17:13:28 +00:00
[[package]]
name = "anstyle-wincon"
2023-05-03 18:01:34 +00:00
version = "1.0.1"
2023-03-29 17:13:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-03 18:01:34 +00:00
checksum = "180abfa45703aebe0093f79badacc01b8fd4ea2e35118747e5811127f926e188"
2023-03-29 17:13:28 +00:00
dependencies = [
"anstyle",
2023-05-03 18:01:34 +00:00
"windows-sys 0.48.0",
2023-03-29 17:13:28 +00:00
]
2022-09-02 23:03:57 +00:00
[[package]]
name = "async-trait"
2023-03-29 17:13:28 +00:00
version = "0.1.68"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-29 17:13:28 +00:00
checksum = "b9ccdd8f2a161be9bd5c023df56f1b2a0bd1d83872ae53b71a84a12c9bf6e842"
2022-09-02 23:03:57 +00:00
dependencies = [
"proc-macro2",
"quote",
2023-05-17 18:28:32 +00:00
"syn 2.0.16",
2022-09-02 23:03:57 +00:00
]
[[package]]
name = "atty"
version = "0.2.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
dependencies = [
2022-12-02 16:20:42 +00:00
"hermit-abi 0.1.19",
2022-09-02 23:03:57 +00:00
"libc",
"winapi",
]
[[package]]
name = "autocfg"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
[[package]]
name = "backtrace"
2022-12-19 22:52:09 +00:00
version = "0.3.67"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-19 22:52:09 +00:00
checksum = "233d376d6d185f2a3093e58f283f60f880315b6c60075b01f36b3b85154564ca"
2022-09-02 23:03:57 +00:00
dependencies = [
"addr2line",
"cc",
"cfg-if",
"libc",
"miniz_oxide",
"object",
"rustc-demangle",
]
2023-02-03 17:07:10 +00:00
[[package]]
name = "base64"
version = "0.21.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a4a4ddaa51a5bc52a6948f74c06d20aaaddb71924eab79b8c97a8c556e942d6a"
2022-09-02 23:03:57 +00:00
[[package]]
name = "bitflags"
version = "1.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
[[package]]
name = "bumpalo"
2023-05-17 18:28:32 +00:00
version = "3.12.2"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-17 18:28:32 +00:00
checksum = "3c6ed94e98ecff0c12dd1b04c15ec0d7d9458ca8fe806cea6f12954efe74c63b"
2022-09-02 23:03:57 +00:00
2022-09-09 18:43:35 +00:00
[[package]]
name = "byteorder"
version = "1.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
[[package]]
name = "bytes"
version = "0.4.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "206fdffcfa2df7cbe15601ef46c813fce0965eb3286db6b56c583b814b51c81c"
dependencies = [
"byteorder",
"iovec",
]
2022-09-02 23:03:57 +00:00
[[package]]
name = "bytes"
2023-02-03 17:07:10 +00:00
version = "1.4.0"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-03 17:07:10 +00:00
checksum = "89b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be"
dependencies = [
"serde",
]
2022-09-02 23:03:57 +00:00
[[package]]
name = "cc"
2023-02-03 17:07:10 +00:00
version = "1.0.79"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-03 17:07:10 +00:00
checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f"
2022-09-02 23:03:57 +00:00
[[package]]
name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
2022-10-13 19:03:42 +00:00
[[package]]
name = "chrono"
version = "0.4.24"
2022-10-13 19:03:42 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4e3c5919066adf22df73762e50cffcde3a758f2a848b113b586d1f86728b673b"
2022-10-13 19:03:42 +00:00
dependencies = [
"iana-time-zone",
"num-integer",
"num-traits",
"serde",
"winapi",
]
2022-09-02 23:03:57 +00:00
[[package]]
name = "clap"
2023-05-17 18:28:32 +00:00
version = "4.2.7"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-17 18:28:32 +00:00
checksum = "34d21f9bf1b425d2968943631ec91202fe5e837264063503708b83013f8fc938"
2022-09-02 23:03:57 +00:00
dependencies = [
2023-03-29 17:13:28 +00:00
"clap_builder",
2022-09-02 23:03:57 +00:00
"clap_derive",
"once_cell",
2023-03-29 17:13:28 +00:00
]
[[package]]
name = "clap_builder"
2023-05-17 18:28:32 +00:00
version = "4.2.7"
2023-03-29 17:13:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-17 18:28:32 +00:00
checksum = "914c8c79fb560f238ef6429439a30023c862f7a28e688c58f7203f12b29970bd"
2023-03-29 17:13:28 +00:00
dependencies = [
"anstream",
"anstyle",
"bitflags",
"clap_lex",
2022-09-02 23:03:57 +00:00
"strsim",
]
[[package]]
name = "clap_derive"
2023-03-29 17:13:28 +00:00
version = "4.2.0"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-29 17:13:28 +00:00
checksum = "3f9644cd56d6b87dbe899ef8b053e331c0637664e9e21a33dfcdc36093f5c5c4"
2022-09-02 23:03:57 +00:00
dependencies = [
"heck",
"proc-macro2",
"quote",
2023-05-17 18:28:32 +00:00
"syn 2.0.16",
2022-09-02 23:03:57 +00:00
]
[[package]]
name = "clap_lex"
2023-03-29 17:13:28 +00:00
version = "0.4.1"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-29 17:13:28 +00:00
checksum = "8a2dd5a6fe8c6e3502f568a6353e5273bbb15193ad9a89e457b9970798efbea1"
2022-09-02 23:03:57 +00:00
[[package]]
name = "color-eyre"
version = "0.6.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5a667583cca8c4f8436db8de46ea8233c42a7d9ae424a82d338f2e4675229204"
dependencies = [
"backtrace",
"color-spantrace",
"eyre",
"indenter",
"once_cell",
"owo-colors",
"tracing-error",
"url",
2022-09-02 23:03:57 +00:00
]
[[package]]
name = "color-spantrace"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1ba75b3d9449ecdccb27ecbc479fdc0b87fa2dd43d2f8298f9bf0e59aacc8dce"
dependencies = [
"once_cell",
"owo-colors",
"tracing-core",
"tracing-error",
]
2023-03-29 17:13:28 +00:00
[[package]]
2023-05-03 18:01:34 +00:00
name = "colorchoice"
2023-03-29 17:13:28 +00:00
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-03 18:01:34 +00:00
checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7"
2023-03-29 17:13:28 +00:00
2023-03-13 21:13:05 +00:00
[[package]]
name = "core-foundation"
version = "0.9.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146"
dependencies = [
"core-foundation-sys",
"libc",
]
2022-10-13 19:03:42 +00:00
[[package]]
name = "core-foundation-sys"
2023-04-12 14:38:17 +00:00
version = "0.8.4"
2022-10-13 19:03:42 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-12 14:38:17 +00:00
checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa"
2022-10-13 19:03:42 +00:00
[[package]]
name = "darling"
2023-05-17 18:28:32 +00:00
version = "0.20.1"
2022-10-13 19:03:42 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-17 18:28:32 +00:00
checksum = "0558d22a7b463ed0241e993f76f09f30b126687447751a8638587b864e4b3944"
2022-10-13 19:03:42 +00:00
dependencies = [
"darling_core",
"darling_macro",
]
[[package]]
name = "darling_core"
2023-05-17 18:28:32 +00:00
version = "0.20.1"
2022-10-13 19:03:42 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-17 18:28:32 +00:00
checksum = "ab8bfa2e259f8ee1ce5e97824a3c55ec4404a0d772ca7fa96bf19f0752a046eb"
2022-10-13 19:03:42 +00:00
dependencies = [
"fnv",
"ident_case",
"proc-macro2",
"quote",
"strsim",
2023-05-17 18:28:32 +00:00
"syn 2.0.16",
2022-10-13 19:03:42 +00:00
]
[[package]]
name = "darling_macro"
2023-05-17 18:28:32 +00:00
version = "0.20.1"
2022-10-13 19:03:42 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-17 18:28:32 +00:00
checksum = "29a358ff9f12ec09c3e61fef9b5a9902623a695a46a917b07f269bff1445611a"
2022-10-13 19:03:42 +00:00
dependencies = [
"darling_core",
"quote",
2023-05-17 18:28:32 +00:00
"syn 2.0.16",
2022-10-13 19:03:42 +00:00
]
[[package]]
name = "dirs"
2023-05-03 18:01:34 +00:00
version = "5.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-03 18:01:34 +00:00
checksum = "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225"
dependencies = [
"dirs-sys",
]
[[package]]
name = "dirs-next"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b98cf8ebf19c3d1b223e151f99a4f9f0690dca41414773390fc824184ac833e1"
dependencies = [
"cfg-if",
"dirs-sys-next",
]
[[package]]
name = "dirs-sys"
2023-05-03 18:01:34 +00:00
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-03 18:01:34 +00:00
checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c"
dependencies = [
"libc",
2023-05-03 18:01:34 +00:00
"option-ext",
"redox_users",
2023-05-03 18:01:34 +00:00
"windows-sys 0.48.0",
]
[[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",
]
[[package]]
name = "dyn-clone"
2023-03-06 17:14:40 +00:00
version = "1.0.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-06 17:14:40 +00:00
checksum = "68b0cf012f1230e43cd00ebb729c6bb58707ecfa8ad08b52ef3a4ccd2697fc30"
[[package]]
name = "either"
version = "1.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91"
2022-09-02 23:03:57 +00:00
[[package]]
name = "encoding_rs"
2023-02-03 17:07:10 +00:00
version = "0.8.32"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-03 17:07:10 +00:00
checksum = "071a31f4ee85403370b58aca746f01041ede6f0da2730960ad001edc2b71b394"
2022-09-02 23:03:57 +00:00
dependencies = [
"cfg-if",
]
[[package]]
name = "enum-as-inner"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c9720bba047d567ffc8a3cba48bf19126600e249ab7f128e9233e6376976a116"
dependencies = [
"heck",
"proc-macro2",
"quote",
2023-03-29 17:13:28 +00:00
"syn 1.0.109",
]
[[package]]
name = "erased-serde"
2023-03-06 17:14:40 +00:00
version = "0.3.25"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-06 17:14:40 +00:00
checksum = "4f2b0c2380453a92ea8b6c8e5f64ecaafccddde8ceab55ff7a8ac1029f894569"
dependencies = [
"serde",
]
2022-12-02 16:20:42 +00:00
[[package]]
name = "errno"
2023-04-12 14:38:17 +00:00
version = "0.3.1"
2022-12-02 16:20:42 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-12 14:38:17 +00:00
checksum = "4bcfec3a70f97c962c307b2d2c56e358cf1d00b558d74262b5f929ee8cc7e73a"
2022-12-02 16:20:42 +00:00
dependencies = [
"errno-dragonfly",
"libc",
2023-04-12 14:38:17 +00:00
"windows-sys 0.48.0",
2022-12-02 16:20:42 +00:00
]
[[package]]
name = "errno-dragonfly"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf"
dependencies = [
"cc",
"libc",
]
2022-09-02 23:03:57 +00:00
[[package]]
name = "eyre"
version = "0.6.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4c2b6b5a29c02cdc822728b7d7b8ae1bab3e3b05d44522770ddd49722eeac7eb"
dependencies = [
"indenter",
"once_cell",
]
[[package]]
name = "fastrand"
version = "1.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be"
dependencies = [
"instant",
]
2022-09-02 23:03:57 +00:00
[[package]]
name = "filetime"
2023-04-12 14:38:17 +00:00
version = "0.2.21"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-12 14:38:17 +00:00
checksum = "5cbc844cecaee9d4443931972e1289c8ff485cb4cc2767cb03ca139ed6885153"
2022-09-02 23:03:57 +00:00
dependencies = [
"cfg-if",
"libc",
2023-03-29 17:13:28 +00:00
"redox_syscall 0.2.16",
2023-04-12 14:38:17 +00:00
"windows-sys 0.48.0",
2022-09-02 23:03:57 +00:00
]
[[package]]
name = "fnv"
version = "1.0.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
[[package]]
2022-09-09 18:43:35 +00:00
name = "form_urlencoded"
2022-09-14 22:18:13 +00:00
version = "1.1.0"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-14 22:18:13 +00:00
checksum = "a9c384f161156f5260c24a097c56119f9be8c798586aecc13afbcbe7b7e26bf8"
2022-09-02 23:03:57 +00:00
dependencies = [
2022-09-09 18:43:35 +00:00
"percent-encoding",
2022-09-02 23:03:57 +00:00
]
[[package]]
2022-09-09 18:43:35 +00:00
name = "futures"
version = "0.1.31"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-09 18:43:35 +00:00
checksum = "3a471a38ef8ed83cd6e40aa59c1ffe17db6855c18e3604d9c4ed8c08ebc28678"
2022-09-02 23:03:57 +00:00
[[package]]
name = "futures-channel"
2023-04-12 14:38:17 +00:00
version = "0.3.28"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-12 14:38:17 +00:00
checksum = "955518d47e09b25bbebc7a18df10b81f0c766eaf4c4f1cccef2fca5f2a4fb5f2"
2022-09-02 23:03:57 +00:00
dependencies = [
"futures-core",
]
[[package]]
name = "futures-core"
2023-04-12 14:38:17 +00:00
version = "0.3.28"
2023-02-03 17:07:10 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-12 14:38:17 +00:00
checksum = "4bca583b7e26f571124fe5b7561d49cb2868d79116cfa0eefce955557c6fee8c"
2023-02-03 17:07:10 +00:00
[[package]]
name = "futures-io"
2023-04-12 14:38:17 +00:00
version = "0.3.28"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-12 14:38:17 +00:00
checksum = "4fff74096e71ed47f8e023204cfd0aa1289cd54ae5430a9523be060cdb849964"
2023-02-03 17:07:10 +00:00
[[package]]
name = "futures-macro"
2023-04-12 14:38:17 +00:00
version = "0.3.28"
2023-02-03 17:07:10 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-12 14:38:17 +00:00
checksum = "89ca545a94061b6365f2c7355b4b32bd20df3ff95f02da9329b34ccc3bd6ee72"
2023-02-03 17:07:10 +00:00
dependencies = [
"proc-macro2",
"quote",
2023-05-17 18:28:32 +00:00
"syn 2.0.16",
2023-02-03 17:07:10 +00:00
]
2022-09-02 23:03:57 +00:00
[[package]]
name = "futures-sink"
2023-04-12 14:38:17 +00:00
version = "0.3.28"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-12 14:38:17 +00:00
checksum = "f43be4fe21a13b9781a69afa4985b0f6ee0e1afab2c6f454a8cf30e2b2237b6e"
2022-09-02 23:03:57 +00:00
[[package]]
name = "futures-task"
2023-04-12 14:38:17 +00:00
version = "0.3.28"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-12 14:38:17 +00:00
checksum = "76d3d132be6c0e6aa1534069c705a74a5997a356c0dc2f86a47765e5617c5b65"
2022-09-02 23:03:57 +00:00
[[package]]
name = "futures-util"
2023-04-12 14:38:17 +00:00
version = "0.3.28"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-12 14:38:17 +00:00
checksum = "26b01e40b772d54cf6c6d721c1d1abd0647a0106a12ecaa1c186273392a69533"
2022-09-02 23:03:57 +00:00
dependencies = [
"futures-core",
2023-02-03 17:07:10 +00:00
"futures-io",
"futures-macro",
"futures-sink",
2022-09-02 23:03:57 +00:00
"futures-task",
2023-02-03 17:07:10 +00:00
"memchr",
2022-09-02 23:03:57 +00:00
"pin-project-lite",
"pin-utils",
2023-02-03 17:07:10 +00:00
"slab",
2022-09-02 23:03:57 +00:00
]
[[package]]
name = "getrandom"
2023-04-12 14:38:17 +00:00
version = "0.2.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-12 14:38:17 +00:00
checksum = "c85e1d9ab2eadba7e5040d4e09cbd6d072b76a557ad64e797c2cb9d4da21d7e4"
dependencies = [
"cfg-if",
"libc",
"wasi",
]
[[package]]
name = "ghost"
2023-03-29 17:13:28 +00:00
version = "0.1.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-29 17:13:28 +00:00
checksum = "e77ac7b51b8e6313251737fcef4b1c01a2ea102bde68415b62c0ee9268fec357"
dependencies = [
"proc-macro2",
"quote",
2023-05-17 18:28:32 +00:00
"syn 2.0.16",
]
2022-09-02 23:03:57 +00:00
[[package]]
name = "gimli"
version = "0.27.2"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ad0a93d233ebf96623465aad4046a8d3aa4da22d4f4beba5388838c8a434bbb4"
2022-09-02 23:03:57 +00:00
2022-09-09 18:43:35 +00:00
[[package]]
name = "glob"
2023-01-09 17:30:11 +00:00
version = "0.3.1"
2022-09-09 18:43:35 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-09 17:30:11 +00:00
checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
2022-09-09 18:43:35 +00:00
2022-09-02 23:03:57 +00:00
[[package]]
name = "h2"
2023-05-17 18:28:32 +00:00
version = "0.3.19"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-17 18:28:32 +00:00
checksum = "d357c7ae988e7d2182f7d7871d0b963962420b0678b0997ce7de72001aeab782"
2022-09-02 23:03:57 +00:00
dependencies = [
2023-02-03 17:07:10 +00:00
"bytes 1.4.0",
2022-09-02 23:03:57 +00:00
"fnv",
"futures-core",
"futures-sink",
"futures-util",
"http",
"indexmap",
"slab",
"tokio",
"tokio-util",
"tracing",
]
[[package]]
name = "hashbrown"
version = "0.12.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
[[package]]
name = "heck"
2023-02-03 17:07:10 +00:00
version = "0.4.1"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-03 17:07:10 +00:00
checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
2022-09-02 23:03:57 +00:00
[[package]]
name = "hermit-abi"
version = "0.1.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
dependencies = [
"libc",
]
2022-12-02 16:20:42 +00:00
[[package]]
name = "hermit-abi"
version = "0.2.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7"
dependencies = [
"libc",
]
[[package]]
name = "hermit-abi"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fed44880c466736ef9a5c5b5facefb5ed0785676d0c02d612db14e54f0d84286"
2022-10-13 19:03:42 +00:00
[[package]]
name = "hex"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
2022-09-02 23:03:57 +00:00
[[package]]
name = "http"
version = "0.2.9"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bd6effc99afb63425aff9b05836f029929e345a6148a14b7ecd5ab67af944482"
2022-09-02 23:03:57 +00:00
dependencies = [
2023-02-03 17:07:10 +00:00
"bytes 1.4.0",
2022-09-02 23:03:57 +00:00
"fnv",
"itoa",
]
[[package]]
name = "http-body"
version = "0.4.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1"
dependencies = [
2023-02-03 17:07:10 +00:00
"bytes 1.4.0",
2022-09-02 23:03:57 +00:00
"http",
"pin-project-lite",
]
[[package]]
name = "httparse"
version = "1.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904"
[[package]]
name = "httpdate"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421"
[[package]]
name = "hyper"
2023-05-03 18:01:34 +00:00
version = "0.14.26"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-03 18:01:34 +00:00
checksum = "ab302d72a6f11a3b910431ff93aae7e773078c769f0a3ef15fb9ec692ed147d4"
2022-09-02 23:03:57 +00:00
dependencies = [
2023-02-03 17:07:10 +00:00
"bytes 1.4.0",
2022-09-02 23:03:57 +00:00
"futures-channel",
"futures-core",
"futures-util",
"h2",
"http",
"http-body",
"httparse",
"httpdate",
"itoa",
"pin-project-lite",
"socket2",
"tokio",
"tower-service",
"tracing",
"want",
]
[[package]]
2022-09-09 18:43:35 +00:00
name = "hyper-rustls"
2023-05-17 18:28:32 +00:00
version = "0.24.0"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-17 18:28:32 +00:00
checksum = "0646026eb1b3eea4cd9ba47912ea5ce9cc07713d105b1a14698f4e6433d348b7"
2022-09-02 23:03:57 +00:00
dependencies = [
2022-09-09 18:43:35 +00:00
"http",
2022-09-02 23:03:57 +00:00
"hyper",
2022-09-09 18:43:35 +00:00
"rustls",
2022-09-02 23:03:57 +00:00
"tokio",
2022-09-09 18:43:35 +00:00
"tokio-rustls",
2022-09-02 23:03:57 +00:00
]
2022-10-13 19:03:42 +00:00
[[package]]
name = "iana-time-zone"
2023-04-12 14:38:17 +00:00
version = "0.1.56"
2022-10-13 19:03:42 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-12 14:38:17 +00:00
checksum = "0722cd7114b7de04316e7ea5456a0bbb20e4adb46fd27a3697adb812cff0f37c"
2022-10-13 19:03:42 +00:00
dependencies = [
"android_system_properties",
"core-foundation-sys",
"iana-time-zone-haiku",
"js-sys",
"wasm-bindgen",
2023-03-29 17:13:28 +00:00
"windows",
2022-10-13 19:03:42 +00:00
]
[[package]]
name = "iana-time-zone-haiku"
2023-05-17 18:28:32 +00:00
version = "0.1.2"
2022-10-13 19:03:42 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-17 18:28:32 +00:00
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
2022-10-13 19:03:42 +00:00
dependencies = [
2023-05-17 18:28:32 +00:00
"cc",
2022-10-13 19:03:42 +00:00
]
[[package]]
name = "ident_case"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
2022-09-02 23:03:57 +00:00
[[package]]
name = "idna"
2022-09-14 22:18:13 +00:00
version = "0.3.0"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-14 22:18:13 +00:00
checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6"
2022-09-02 23:03:57 +00:00
dependencies = [
"unicode-bidi",
"unicode-normalization",
]
[[package]]
name = "indenter"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ce23b50ad8242c51a442f3ff322d56b02f08852c77e4c0b4d3fd684abc89c683"
[[package]]
name = "indexmap"
2023-03-29 17:13:28 +00:00
version = "1.9.3"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-29 17:13:28 +00:00
checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
2022-09-02 23:03:57 +00:00
dependencies = [
"autocfg",
"hashbrown",
2022-10-13 19:03:42 +00:00
"serde",
2022-09-02 23:03:57 +00:00
]
[[package]]
name = "instant"
version = "0.1.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
dependencies = [
"cfg-if",
]
[[package]]
name = "inventory"
2023-05-17 18:28:32 +00:00
version = "0.3.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-17 18:28:32 +00:00
checksum = "e0539b5de9241582ce6bd6b0ba7399313560151e58c9aaf8b74b711b1bdce644"
dependencies = [
"ghost",
]
2022-12-02 16:20:42 +00:00
[[package]]
name = "io-lifetimes"
2023-04-12 14:38:17 +00:00
version = "1.0.10"
2022-12-02 16:20:42 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-12 14:38:17 +00:00
checksum = "9c66c74d2ae7e79a5a8f7ac924adbe38ee42a859c6539ad869eb51f0b52dc220"
2022-12-02 16:20:42 +00:00
dependencies = [
"hermit-abi 0.3.1",
2022-12-02 16:20:42 +00:00
"libc",
2023-04-12 14:38:17 +00:00
"windows-sys 0.48.0",
2022-12-02 16:20:42 +00:00
]
2022-09-09 18:43:35 +00:00
[[package]]
name = "iovec"
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b2b3ea6ff95e175473f8ffe6a7eb7c00d054240321b84c57051175fe3c1e075e"
dependencies = [
"libc",
]
2022-09-02 23:03:57 +00:00
[[package]]
name = "ipnet"
2023-03-29 17:13:28 +00:00
version = "2.7.2"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-29 17:13:28 +00:00
checksum = "12b6ee2129af8d4fb011108c73d99a1b83a85977f23b82460c0ae2e25bb4b57f"
2022-09-02 23:03:57 +00:00
2022-12-02 16:20:42 +00:00
[[package]]
name = "is-terminal"
2023-04-12 14:38:17 +00:00
version = "0.4.7"
2022-12-02 16:20:42 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-12 14:38:17 +00:00
checksum = "adcf93614601c8129ddf72e2d5633df827ba6551541c6d8c59520a371475be1f"
2022-12-02 16:20:42 +00:00
dependencies = [
"hermit-abi 0.3.1",
2022-12-02 16:20:42 +00:00
"io-lifetimes",
"rustix",
2023-04-12 14:38:17 +00:00
"windows-sys 0.48.0",
2022-12-02 16:20:42 +00:00
]
2022-09-02 23:03:57 +00:00
[[package]]
name = "is_ci"
version = "1.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "616cde7c720bb2bb5824a224687d8f77bfd38922027f01d825cd7453be5099fb"
[[package]]
name = "itoa"
2023-03-06 17:14:40 +00:00
version = "1.0.6"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-06 17:14:40 +00:00
checksum = "453ad9f582a441959e5f0d088b02ce04cfe8d51a8eaf077f12ac6d3e94164ca6"
2022-09-02 23:03:57 +00:00
[[package]]
name = "js-sys"
2023-05-17 18:28:32 +00:00
version = "0.3.63"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-17 18:28:32 +00:00
checksum = "2f37a4a5928311ac501dee68b3c7613a1037d0edb30c8e5427bd832d55d1b790"
2022-09-02 23:03:57 +00:00
dependencies = [
"wasm-bindgen",
]
[[package]]
name = "lazy_static"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
[[package]]
name = "libc"
2023-05-17 18:28:32 +00:00
version = "0.2.144"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-17 18:28:32 +00:00
checksum = "2b00cc1c228a6782d0f076e7b232802e0c5689d41bb5df366f2a6b6621cfdfe1"
2022-09-02 23:03:57 +00:00
2022-10-19 22:12:50 +00:00
[[package]]
name = "line-wrap"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f30344350a2a51da54c1d53be93fade8a237e545dbcc4bdbe635413f2117cab9"
dependencies = [
"safemem",
]
2022-12-02 16:20:42 +00:00
[[package]]
name = "linux-raw-sys"
2023-05-17 18:28:32 +00:00
version = "0.3.7"
2022-12-02 16:20:42 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-17 18:28:32 +00:00
checksum = "ece97ea872ece730aed82664c424eb4c8291e1ff2480247ccf7409044bc6479f"
2022-12-02 16:20:42 +00:00
2022-09-02 23:03:57 +00:00
[[package]]
name = "lock_api"
2022-11-01 16:32:14 +00:00
version = "0.4.9"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-01 16:32:14 +00:00
checksum = "435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df"
2022-09-02 23:03:57 +00:00
dependencies = [
"autocfg",
"scopeguard",
]
[[package]]
name = "log"
version = "0.4.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
dependencies = [
"cfg-if",
]
[[package]]
name = "lzma-sys"
2022-11-01 16:32:14 +00:00
version = "0.1.20"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-01 16:32:14 +00:00
checksum = "5fda04ab3764e6cde78b9974eec4f779acaba7c4e84b36eca3cf77c581b85d27"
2022-09-02 23:03:57 +00:00
dependencies = [
"cc",
"libc",
"pkg-config",
]
[[package]]
name = "matchers"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558"
dependencies = [
"regex-automata",
]
[[package]]
name = "memchr"
version = "2.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
[[package]]
name = "mime"
2023-03-29 17:13:28 +00:00
version = "0.3.17"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-29 17:13:28 +00:00
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
2022-09-02 23:03:57 +00:00
[[package]]
name = "miniz_oxide"
2022-12-19 22:52:09 +00:00
version = "0.6.2"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-19 22:52:09 +00:00
checksum = "b275950c28b37e794e8c55d88aeb5e139d0ce23fdbbeda68f8d7174abdf9e8fa"
2022-09-02 23:03:57 +00:00
dependencies = [
"adler",
]
[[package]]
name = "mio"
version = "0.8.6"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5b9d9a46eff5b4ff64b45a9e316a6d1e0bc719ef429cbec4dc630684212bfdf9"
2022-09-02 23:03:57 +00:00
dependencies = [
"libc",
"log",
"wasi",
"windows-sys 0.45.0",
2022-09-02 23:03:57 +00:00
]
[[package]]
2022-09-09 18:43:35 +00:00
name = "nix"
2023-02-03 17:07:10 +00:00
version = "0.26.2"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-03 17:07:10 +00:00
checksum = "bfdda3d196821d6af13126e40375cdf7da646a96114af134d5f417a9a1dc8e1a"
2022-09-02 23:03:57 +00:00
dependencies = [
2022-09-09 18:43:35 +00:00
"bitflags",
"cfg-if",
2022-09-02 23:03:57 +00:00
"libc",
2022-12-02 16:20:42 +00:00
"static_assertions",
2022-09-02 23:03:57 +00:00
]
[[package]]
name = "nix-config-parser"
2023-05-17 18:28:32 +00:00
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-17 18:28:32 +00:00
checksum = "5a94767d6f881412ae02a87a4b6136b4079cbda9d3eab8f4ae272c9db740902c"
dependencies = [
"serde",
"thiserror",
]
[[package]]
name = "nix-installer"
2023-05-31 16:43:17 +00:00
version = "0.9.2-unreleased"
dependencies = [
"async-trait",
"atty",
2023-02-03 17:07:10 +00:00
"bytes 1.4.0",
"clap",
"color-eyre",
"dirs",
"dyn-clone",
"eyre",
"glob",
"is_ci",
"nix",
"nix-config-parser",
"os-release",
"owo-colors",
"plist",
"rand",
"reqwest",
"semver",
"serde",
"serde_json",
"serde_with",
"strum",
"sysctl",
"tar",
"target-lexicon",
"tempfile",
"term",
"thiserror",
"tokio",
"tracing",
"tracing-error",
"tracing-subscriber",
"typetag",
"url",
"uuid",
"walkdir",
"which",
"xz2",
]
2022-11-01 16:32:14 +00:00
[[package]]
name = "nu-ansi-term"
version = "0.46.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84"
dependencies = [
"overload",
"winapi",
]
2022-10-13 19:03:42 +00:00
[[package]]
name = "num-integer"
version = "0.1.45"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9"
dependencies = [
"autocfg",
"num-traits",
]
[[package]]
name = "num-traits"
version = "0.2.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd"
dependencies = [
"autocfg",
]
2022-09-02 23:03:57 +00:00
[[package]]
name = "num_cpus"
2023-01-09 17:30:11 +00:00
version = "1.15.0"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-09 17:30:11 +00:00
checksum = "0fac9e2da13b5eb447a6ce3d392f23a29d8694bff781bf03a16cd9ac8697593b"
2022-09-02 23:03:57 +00:00
dependencies = [
2023-01-09 17:30:11 +00:00
"hermit-abi 0.2.6",
2022-09-02 23:03:57 +00:00
"libc",
]
[[package]]
name = "object"
2023-02-03 17:07:10 +00:00
version = "0.30.3"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-03 17:07:10 +00:00
checksum = "ea86265d3d3dcb6a27fc51bd29a4bf387fae9d2986b823079d4986af253eb439"
2022-09-02 23:03:57 +00:00
dependencies = [
"memchr",
]
[[package]]
name = "once_cell"
version = "1.17.1"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b7e5500299e16ebb147ae15a00a942af264cf3688f47923b8fc2cd5858f23ad3"
2022-09-02 23:03:57 +00:00
2023-03-13 21:13:05 +00:00
[[package]]
name = "openssl-probe"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
2023-05-03 18:01:34 +00:00
[[package]]
name = "option-ext"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
[[package]]
name = "os-release"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "82f29ae2f71b53ec19cc23385f8e4f3d90975195aa3d09171ba3bef7159bec27"
dependencies = [
"lazy_static",
]
2022-11-01 16:32:14 +00:00
[[package]]
name = "overload"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39"
2022-09-02 23:03:57 +00:00
[[package]]
name = "owo-colors"
version = "3.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c1b04fb49957986fdce4d6ee7a65027d55d4b6d2265e5848bbb507b58ccfdb6f"
dependencies = [
"supports-color",
]
[[package]]
name = "parking_lot"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
dependencies = [
"lock_api",
"parking_lot_core",
]
[[package]]
name = "parking_lot_core"
2023-02-03 17:07:10 +00:00
version = "0.9.7"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-03 17:07:10 +00:00
checksum = "9069cbb9f99e3a5083476ccb29ceb1de18b9118cafa53e90c9551235de2b9521"
2022-09-02 23:03:57 +00:00
dependencies = [
"cfg-if",
"libc",
2023-03-29 17:13:28 +00:00
"redox_syscall 0.2.16",
2022-09-02 23:03:57 +00:00
"smallvec",
2023-02-03 17:07:10 +00:00
"windows-sys 0.45.0",
2022-09-02 23:03:57 +00:00
]
[[package]]
name = "percent-encoding"
2022-09-14 22:18:13 +00:00
version = "2.2.0"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-14 22:18:13 +00:00
checksum = "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e"
2022-09-02 23:03:57 +00:00
[[package]]
name = "pin-project-lite"
version = "0.2.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116"
[[package]]
name = "pin-utils"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
[[package]]
name = "pkg-config"
2023-05-17 18:28:32 +00:00
version = "0.3.27"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-17 18:28:32 +00:00
checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964"
2022-09-02 23:03:57 +00:00
2022-10-19 22:12:50 +00:00
[[package]]
name = "plist"
2023-03-29 17:13:28 +00:00
version = "1.4.3"
2022-10-19 22:12:50 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-29 17:13:28 +00:00
checksum = "9bd9647b268a3d3e14ff09c23201133a62589c658db02bb7388c7246aafe0590"
2022-10-19 22:12:50 +00:00
dependencies = [
2023-05-03 18:01:34 +00:00
"base64",
2022-10-19 22:12:50 +00:00
"indexmap",
"line-wrap",
2023-02-03 17:07:10 +00:00
"quick-xml",
2022-10-19 22:12:50 +00:00
"serde",
"time",
]
2022-11-01 18:33:54 +00:00
[[package]]
name = "ppv-lite86"
2022-11-16 21:11:14 +00:00
version = "0.2.17"
2022-11-01 18:33:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-16 21:11:14 +00:00
checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
2022-11-01 18:33:54 +00:00
2022-09-02 23:03:57 +00:00
[[package]]
name = "proc-macro2"
2023-05-17 18:28:32 +00:00
version = "1.0.58"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-17 18:28:32 +00:00
checksum = "fa1fb82fc0c281dd9671101b66b771ebbe1eaf967b96ac8740dcba4b70005ca8"
2022-09-02 23:03:57 +00:00
dependencies = [
"unicode-ident",
]
2023-02-03 17:07:10 +00:00
[[package]]
name = "quick-xml"
2023-05-03 18:01:34 +00:00
version = "0.28.2"
2023-02-03 17:07:10 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-03 18:01:34 +00:00
checksum = "0ce5e73202a820a31f8a0ee32ada5e21029c81fd9e3ebf668a40832e4219d9d1"
2023-02-03 17:07:10 +00:00
dependencies = [
"memchr",
]
2022-09-02 23:03:57 +00:00
[[package]]
name = "quote"
2023-05-17 18:28:32 +00:00
version = "1.0.27"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-17 18:28:32 +00:00
checksum = "8f4f29d145265ec1c483c7c654450edde0bfe043d3938d6972630663356d9500"
2022-09-02 23:03:57 +00:00
dependencies = [
"proc-macro2",
]
2022-11-01 18:33:54 +00:00
[[package]]
name = "rand"
version = "0.8.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
dependencies = [
"libc",
"rand_chacha",
"rand_core",
2022-11-01 18:33:54 +00:00
]
[[package]]
name = "rand_chacha"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
dependencies = [
"ppv-lite86",
"rand_core",
2022-09-09 18:43:35 +00:00
]
2022-11-01 18:33:54 +00:00
[[package]]
name = "rand_core"
version = "0.6.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
dependencies = [
"getrandom",
]
2022-09-02 23:03:57 +00:00
[[package]]
name = "redox_syscall"
version = "0.2.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
dependencies = [
"bitflags",
]
2023-03-29 17:13:28 +00:00
[[package]]
name = "redox_syscall"
version = "0.3.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29"
dependencies = [
"bitflags",
]
[[package]]
name = "redox_users"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b"
dependencies = [
"getrandom",
2023-03-29 17:13:28 +00:00
"redox_syscall 0.2.16",
"thiserror",
]
2022-09-02 23:03:57 +00:00
[[package]]
name = "regex"
2023-05-03 18:01:34 +00:00
version = "1.8.1"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-03 18:01:34 +00:00
checksum = "af83e617f331cc6ae2da5443c602dfa5af81e517212d9d611a5b3ba1777b5370"
2022-09-02 23:03:57 +00:00
dependencies = [
2023-05-03 18:01:34 +00:00
"regex-syntax 0.7.1",
2022-09-02 23:03:57 +00:00
]
[[package]]
name = "regex-automata"
version = "0.1.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
dependencies = [
2023-05-03 18:01:34 +00:00
"regex-syntax 0.6.29",
2022-09-02 23:03:57 +00:00
]
[[package]]
name = "regex-syntax"
2023-03-29 17:13:28 +00:00
version = "0.6.29"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-29 17:13:28 +00:00
checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
2022-09-02 23:03:57 +00:00
2023-05-03 18:01:34 +00:00
[[package]]
name = "regex-syntax"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a5996294f19bd3aae0453a862ad728f60e6600695733dd5df01da90c54363a3c"
2022-09-02 23:03:57 +00:00
[[package]]
name = "reqwest"
2023-05-17 18:28:32 +00:00
version = "0.11.18"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-17 18:28:32 +00:00
checksum = "cde824a14b7c14f85caff81225f411faacc04a2013f41670f41443742b1c1c55"
2022-09-02 23:03:57 +00:00
dependencies = [
2023-05-03 18:01:34 +00:00
"base64",
2023-02-03 17:07:10 +00:00
"bytes 1.4.0",
2022-09-02 23:03:57 +00:00
"encoding_rs",
"futures-core",
"futures-util",
"h2",
"http",
"http-body",
"hyper",
2022-09-09 18:43:35 +00:00
"hyper-rustls",
2022-09-02 23:03:57 +00:00
"ipnet",
"js-sys",
"log",
"mime",
2022-11-01 16:32:14 +00:00
"once_cell",
2022-09-02 23:03:57 +00:00
"percent-encoding",
"pin-project-lite",
2022-09-09 18:43:35 +00:00
"rustls",
2023-03-13 21:13:05 +00:00
"rustls-native-certs",
2022-09-09 18:43:35 +00:00
"rustls-pemfile",
2022-09-02 23:03:57 +00:00
"serde",
"serde_json",
"serde_urlencoded",
"tokio",
2022-09-09 18:43:35 +00:00
"tokio-rustls",
"tokio-socks",
2022-09-02 23:03:57 +00:00
"tokio-util",
"tower-service",
"url",
"wasm-bindgen",
"wasm-bindgen-futures",
2023-02-03 17:07:10 +00:00
"wasm-streams",
2022-09-02 23:03:57 +00:00
"web-sys",
"winreg",
]
2022-09-09 18:43:35 +00:00
[[package]]
name = "ring"
version = "0.16.20"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc"
dependencies = [
"cc",
"libc",
"once_cell",
"spin",
"untrusted",
"web-sys",
"winapi",
]
2022-09-02 23:03:57 +00:00
[[package]]
name = "rustc-demangle"
2023-05-03 18:01:34 +00:00
version = "0.1.23"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-03 18:01:34 +00:00
checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76"
2022-09-02 23:03:57 +00:00
2022-12-02 16:20:42 +00:00
[[package]]
name = "rustix"
2023-05-17 18:28:32 +00:00
version = "0.37.19"
2022-12-02 16:20:42 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-17 18:28:32 +00:00
checksum = "acf8729d8542766f1b2cf77eb034d52f40d375bb8b615d0b147089946e16613d"
2022-12-02 16:20:42 +00:00
dependencies = [
"bitflags",
"errno",
"io-lifetimes",
"libc",
"linux-raw-sys",
2023-04-12 14:38:17 +00:00
"windows-sys 0.48.0",
2022-12-02 16:20:42 +00:00
]
2022-09-09 18:43:35 +00:00
[[package]]
name = "rustls"
2023-05-17 18:28:32 +00:00
version = "0.21.1"
2022-09-09 18:43:35 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-17 18:28:32 +00:00
checksum = "c911ba11bc8433e811ce56fde130ccf32f5127cab0e0194e9c68c5a5b671791e"
2022-09-09 18:43:35 +00:00
dependencies = [
"log",
"ring",
2023-05-17 18:28:32 +00:00
"rustls-webpki",
2022-09-09 18:43:35 +00:00
"sct",
]
2023-03-13 21:13:05 +00:00
[[package]]
name = "rustls-native-certs"
version = "0.6.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0167bac7a9f490495f3c33013e7722b53cb087ecbe082fb0c6387c96f634ea50"
dependencies = [
"openssl-probe",
"rustls-pemfile",
"schannel",
"security-framework",
]
2022-09-09 18:43:35 +00:00
[[package]]
name = "rustls-pemfile"
2023-02-03 17:07:10 +00:00
version = "1.0.2"
2022-09-09 18:43:35 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-03 17:07:10 +00:00
checksum = "d194b56d58803a43635bdc398cd17e383d6f71f9182b9a192c127ca42494a59b"
2022-09-09 18:43:35 +00:00
dependencies = [
2023-05-03 18:01:34 +00:00
"base64",
2022-09-09 18:43:35 +00:00
]
2023-05-17 18:28:32 +00:00
[[package]]
name = "rustls-webpki"
version = "0.100.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d6207cd5ed3d8dca7816f8f3725513a34609c0c765bf652b8c3cb4cfd87db46b"
dependencies = [
"ring",
"untrusted",
]
[[package]]
name = "rustversion"
2023-03-06 17:14:40 +00:00
version = "1.0.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-06 17:14:40 +00:00
checksum = "4f3208ce4d8448b3f3e7d168a73f5e0c43a61e32930de3bceeccedb388b6bf06"
2022-09-02 23:03:57 +00:00
[[package]]
name = "ryu"
2023-03-06 17:14:40 +00:00
version = "1.0.13"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-06 17:14:40 +00:00
checksum = "f91339c0467de62360649f8d3e185ca8de4224ff281f66000de5eb2a77a79041"
2022-09-02 23:03:57 +00:00
2022-10-19 22:12:50 +00:00
[[package]]
name = "safemem"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ef703b7cb59335eae2eb93ceb664c0eb7ea6bf567079d843e09420219668e072"
[[package]]
name = "same-file"
version = "1.0.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
dependencies = [
"winapi-util",
]
2023-03-13 21:13:05 +00:00
[[package]]
name = "schannel"
version = "0.1.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "713cfb06c7059f3588fb8044c0fad1d09e3c01d225e25b9220dbfdcf16dbb1b3"
dependencies = [
"windows-sys 0.42.0",
]
2022-09-02 23:03:57 +00:00
[[package]]
name = "scopeguard"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
[[package]]
2022-09-09 18:43:35 +00:00
name = "sct"
version = "0.7.0"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-09 18:43:35 +00:00
checksum = "d53dcdb7c9f8158937a7981b48accfd39a43af418591a5d008c7b22b5e1b7ca4"
2022-09-02 23:03:57 +00:00
dependencies = [
2022-09-09 18:43:35 +00:00
"ring",
"untrusted",
2022-09-02 23:03:57 +00:00
]
2023-03-13 21:13:05 +00:00
[[package]]
name = "security-framework"
2023-05-17 18:28:32 +00:00
version = "2.9.0"
2023-03-13 21:13:05 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-17 18:28:32 +00:00
checksum = "ca2855b3715770894e67cbfa3df957790aa0c9edc3bf06efa1a84d77fa0839d1"
2023-03-13 21:13:05 +00:00
dependencies = [
"bitflags",
"core-foundation",
"core-foundation-sys",
"libc",
"security-framework-sys",
]
[[package]]
name = "security-framework-sys"
2023-05-17 18:28:32 +00:00
version = "2.9.0"
2023-03-13 21:13:05 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-17 18:28:32 +00:00
checksum = "f51d0c0d83bec45f16480d0ce0058397a69e48fcdc52d1dc8855fb68acbd31a7"
2023-03-13 21:13:05 +00:00
dependencies = [
"core-foundation-sys",
"libc",
]
[[package]]
name = "semver"
version = "1.0.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bebd363326d05ec3e2f532ab7660680f3b02130d780c299bca73469d521bc0ed"
dependencies = [
"serde",
]
2022-09-02 23:03:57 +00:00
[[package]]
name = "serde"
2023-05-17 18:28:32 +00:00
version = "1.0.163"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-17 18:28:32 +00:00
checksum = "2113ab51b87a539ae008b5c6c02dc020ffa39afd2d83cffcb3f4eb2722cebec2"
2022-09-14 22:18:13 +00:00
dependencies = [
"serde_derive",
]
[[package]]
name = "serde_derive"
2023-05-17 18:28:32 +00:00
version = "1.0.163"
2022-09-14 22:18:13 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-17 18:28:32 +00:00
checksum = "8c805777e3930c8883389c602315a24224bcc738b63905ef87cd1420353ea93e"
2022-09-14 22:18:13 +00:00
dependencies = [
"proc-macro2",
"quote",
2023-05-17 18:28:32 +00:00
"syn 2.0.16",
2022-09-14 22:18:13 +00:00
]
2022-09-02 23:03:57 +00:00
[[package]]
name = "serde_json"
2023-05-03 18:01:34 +00:00
version = "1.0.96"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-03 18:01:34 +00:00
checksum = "057d394a50403bcac12672b2b18fb387ab6d289d957dab67dd201875391e52f1"
2022-09-02 23:03:57 +00:00
dependencies = [
"itoa",
"ryu",
"serde",
]
[[package]]
name = "serde_urlencoded"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
dependencies = [
"form_urlencoded",
"itoa",
"ryu",
"serde",
]
2022-10-13 19:03:42 +00:00
[[package]]
name = "serde_with"
2023-05-03 18:01:34 +00:00
version = "3.0.0"
2022-10-13 19:03:42 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-03 18:01:34 +00:00
checksum = "9f02d8aa6e3c385bf084924f660ce2a3a6bd333ba55b35e8590b321f35d88513"
2022-10-13 19:03:42 +00:00
dependencies = [
2023-05-03 18:01:34 +00:00
"base64",
2022-10-13 19:03:42 +00:00
"chrono",
"hex",
"indexmap",
"serde",
"serde_json",
"serde_with_macros",
"time",
]
[[package]]
name = "serde_with_macros"
2023-05-03 18:01:34 +00:00
version = "3.0.0"
2022-10-13 19:03:42 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-03 18:01:34 +00:00
checksum = "edc7d5d3932fb12ce722ee5e64dd38c504efba37567f0c402f6ca728c3b8b070"
2022-10-13 19:03:42 +00:00
dependencies = [
"darling",
"proc-macro2",
"quote",
2023-05-17 18:28:32 +00:00
"syn 2.0.16",
2022-10-13 19:03:42 +00:00
]
2022-09-02 23:03:57 +00:00
[[package]]
name = "sharded-slab"
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "900fba806f70c630b0a382d0d825e17a0f19fcd059a2ade1ff237bcddf446b31"
dependencies = [
"lazy_static",
]
[[package]]
name = "signal-hook-registry"
version = "1.4.1"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1"
2022-09-02 23:03:57 +00:00
dependencies = [
"libc",
]
[[package]]
name = "slab"
version = "0.4.8"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6528351c9bc8ab22353f9d776db39a20288e8d6c37ef8cfe3317cf875eecfc2d"
2022-09-02 23:03:57 +00:00
dependencies = [
"autocfg",
]
[[package]]
name = "smallvec"
2022-11-01 16:32:14 +00:00
version = "1.10.0"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-01 16:32:14 +00:00
checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0"
2022-09-02 23:03:57 +00:00
[[package]]
name = "socket2"
2023-03-06 17:14:40 +00:00
version = "0.4.9"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-06 17:14:40 +00:00
checksum = "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662"
2022-09-02 23:03:57 +00:00
dependencies = [
"libc",
"winapi",
]
2022-09-09 18:43:35 +00:00
[[package]]
name = "spin"
version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"
2022-12-02 16:20:42 +00:00
[[package]]
name = "static_assertions"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
2022-09-02 23:03:57 +00:00
[[package]]
name = "strsim"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
[[package]]
name = "strum"
version = "0.24.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "063e6045c0e62079840579a7e47a355ae92f60eb74daaf156fb1e84ba164e63f"
dependencies = [
"strum_macros",
]
[[package]]
name = "strum_macros"
version = "0.24.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1e385be0d24f186b4ce2f9982191e7101bb737312ad61c1f2f984f34bcf85d59"
dependencies = [
"heck",
"proc-macro2",
"quote",
"rustversion",
2023-03-29 17:13:28 +00:00
"syn 1.0.109",
]
2022-09-02 23:03:57 +00:00
[[package]]
name = "supports-color"
2022-11-16 21:11:14 +00:00
version = "1.3.1"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-16 21:11:14 +00:00
checksum = "8ba6faf2ca7ee42fdd458f4347ae0a9bd6bcc445ad7cb57ad82b383f18870d6f"
2022-09-02 23:03:57 +00:00
dependencies = [
"atty",
"is_ci",
]
[[package]]
name = "syn"
version = "1.0.109"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
2022-09-02 23:03:57 +00:00
dependencies = [
"proc-macro2",
"quote",
"unicode-ident",
]
2023-03-29 17:13:28 +00:00
[[package]]
name = "syn"
2023-05-17 18:28:32 +00:00
version = "2.0.16"
2023-03-29 17:13:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-17 18:28:32 +00:00
checksum = "a6f671d4b5ffdb8eadec19c0ae67fe2639df8684bd7bc4b83d986b8db549cf01"
2023-03-29 17:13:28 +00:00
dependencies = [
"proc-macro2",
"quote",
"unicode-ident",
]
[[package]]
name = "sysctl"
version = "0.5.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ed66d6a2ccbd656659289bc90767895b7abbdec897a0fc6031aca3ed1cb51d3e"
dependencies = [
"bitflags",
"byteorder",
"enum-as-inner",
"libc",
"thiserror",
"walkdir",
]
2022-09-09 18:43:35 +00:00
[[package]]
name = "tar"
version = "0.4.38"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4b55807c0344e1e6c04d7c965f5289c39a8d94ae23ed5c0b57aabac549f871c6"
dependencies = [
"filetime",
"libc",
"xattr",
]
2022-09-02 23:03:57 +00:00
[[package]]
name = "target-lexicon"
2023-05-03 18:01:34 +00:00
version = "0.12.7"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-03 18:01:34 +00:00
checksum = "fd1ba337640d60c3e96bc6f0638a939b9c9a7f2c316a1598c279828b3d1dc8c5"
2022-09-02 23:03:57 +00:00
[[package]]
name = "tempfile"
2023-03-29 17:13:28 +00:00
version = "3.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-29 17:13:28 +00:00
checksum = "b9fbec84f381d5795b08656e4912bec604d162bff9291d6189a78f4c8ab87998"
dependencies = [
"cfg-if",
"fastrand",
2023-03-29 17:13:28 +00:00
"redox_syscall 0.3.5",
2023-02-27 15:51:47 +00:00
"rustix",
2023-03-29 17:13:28 +00:00
"windows-sys 0.45.0",
]
[[package]]
name = "term"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c59df8ac95d96ff9bede18eb7300b0fda5e5d8d90960e76f8e14ae765eedbf1f"
dependencies = [
"dirs-next",
"rustversion",
"winapi",
]
2022-09-02 23:03:57 +00:00
[[package]]
name = "thiserror"
2023-03-29 17:13:28 +00:00
version = "1.0.40"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-29 17:13:28 +00:00
checksum = "978c9a314bd8dc99be594bc3c175faaa9794be04a5a5e153caba6915336cebac"
2022-09-02 23:03:57 +00:00
dependencies = [
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
2023-03-29 17:13:28 +00:00
version = "1.0.40"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-29 17:13:28 +00:00
checksum = "f9456a42c5b0d803c8cd86e73dd7cc9edd429499f37a3550d286d5e86720569f"
2022-09-02 23:03:57 +00:00
dependencies = [
"proc-macro2",
"quote",
2023-05-17 18:28:32 +00:00
"syn 2.0.16",
2022-09-02 23:03:57 +00:00
]
[[package]]
name = "thread_local"
version = "1.1.7"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3fdd6f064ccff2d6567adcb3873ca630700f00b5ad3f060c25b5dcfd9a4ce152"
2022-09-02 23:03:57 +00:00
dependencies = [
"cfg-if",
2022-09-02 23:03:57 +00:00
"once_cell",
]
2022-10-13 19:03:42 +00:00
[[package]]
name = "time"
2023-05-17 18:28:32 +00:00
version = "0.3.21"
2022-10-13 19:03:42 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-17 18:28:32 +00:00
checksum = "8f3403384eaacbca9923fa06940178ac13e4edb725486d70e8e15881d0c836cc"
2022-10-13 19:03:42 +00:00
dependencies = [
"itoa",
"serde",
2022-11-01 16:32:14 +00:00
"time-core",
"time-macros",
]
[[package]]
name = "time-core"
2023-05-17 18:28:32 +00:00
version = "0.1.1"
2022-11-01 16:32:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-17 18:28:32 +00:00
checksum = "7300fbefb4dadc1af235a9cef3737cea692a9d97e1b9cbcd4ebdae6f8868e6fb"
2022-11-01 16:32:14 +00:00
[[package]]
name = "time-macros"
2023-05-17 18:28:32 +00:00
version = "0.2.9"
2022-11-01 16:32:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-17 18:28:32 +00:00
checksum = "372950940a5f07bf38dbe211d7283c9e6d7327df53794992d293e534c733d09b"
2022-11-01 16:32:14 +00:00
dependencies = [
"time-core",
2022-10-13 19:03:42 +00:00
]
2022-09-02 23:03:57 +00:00
[[package]]
name = "tinyvec"
version = "1.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
dependencies = [
"tinyvec_macros",
]
[[package]]
name = "tinyvec_macros"
version = "0.1.1"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
2022-09-02 23:03:57 +00:00
[[package]]
name = "tokio"
2023-05-17 18:28:32 +00:00
version = "1.28.1"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-17 18:28:32 +00:00
checksum = "0aa32867d44e6f2ce3385e89dceb990188b8bb0fb25b0cf576647a6f98ac5105"
2022-09-02 23:03:57 +00:00
dependencies = [
"autocfg",
2023-02-03 17:07:10 +00:00
"bytes 1.4.0",
2022-09-02 23:03:57 +00:00
"libc",
"mio",
"num_cpus",
"parking_lot",
2022-09-02 23:03:57 +00:00
"pin-project-lite",
"signal-hook-registry",
"socket2",
"tokio-macros",
"tracing",
2023-05-03 18:01:34 +00:00
"windows-sys 0.48.0",
2022-09-02 23:03:57 +00:00
]
2022-09-09 18:43:35 +00:00
[[package]]
name = "tokio-io"
version = "0.1.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "57fc868aae093479e3131e3d165c93b1c7474109d13c90ec0dda2a1bbfff0674"
dependencies = [
"bytes 0.4.12",
"futures",
2022-09-09 18:43:35 +00:00
"log",
]
2022-09-02 23:03:57 +00:00
[[package]]
name = "tokio-macros"
2023-05-03 18:01:34 +00:00
version = "2.1.0"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-03 18:01:34 +00:00
checksum = "630bdcf245f78637c13ec01ffae6187cca34625e8c63150d424b59e55af2675e"
2022-09-02 23:03:57 +00:00
dependencies = [
"proc-macro2",
"quote",
2023-05-17 18:28:32 +00:00
"syn 2.0.16",
2022-09-02 23:03:57 +00:00
]
[[package]]
2022-09-09 18:43:35 +00:00
name = "tokio-rustls"
2023-05-17 18:28:32 +00:00
version = "0.24.0"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-17 18:28:32 +00:00
checksum = "e0d409377ff5b1e3ca6437aa86c1eb7d40c134bfec254e44c830defa92669db5"
2022-09-02 23:03:57 +00:00
dependencies = [
2022-09-09 18:43:35 +00:00
"rustls",
2022-09-02 23:03:57 +00:00
"tokio",
]
[[package]]
name = "tokio-socks"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "51165dfa029d2a65969413a6cc96f354b86b464498702f174a4efa13608fd8c0"
dependencies = [
"either",
"futures-util",
"thiserror",
"tokio",
]
2022-09-02 23:03:57 +00:00
[[package]]
name = "tokio-util"
2023-05-03 18:01:34 +00:00
version = "0.7.8"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-03 18:01:34 +00:00
checksum = "806fe8c2c87eccc8b3267cbae29ed3ab2d0bd37fca70ab622e46aaa9375ddb7d"
2022-09-02 23:03:57 +00:00
dependencies = [
2023-02-03 17:07:10 +00:00
"bytes 1.4.0",
2022-09-02 23:03:57 +00:00
"futures-core",
"futures-sink",
"pin-project-lite",
"tokio",
"tracing",
]
[[package]]
name = "tower-service"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52"
[[package]]
name = "tracing"
2022-11-01 16:32:14 +00:00
version = "0.1.37"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-01 16:32:14 +00:00
checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8"
2022-09-02 23:03:57 +00:00
dependencies = [
"cfg-if",
"pin-project-lite",
"tracing-attributes",
"tracing-core",
]
[[package]]
name = "tracing-attributes"
2023-05-03 18:01:34 +00:00
version = "0.1.24"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-03 18:01:34 +00:00
checksum = "0f57e3ca2a01450b1a921183a9c9cbfda207fd822cef4ccb00a65402cbba7a74"
2022-09-02 23:03:57 +00:00
dependencies = [
"proc-macro2",
"quote",
2023-05-17 18:28:32 +00:00
"syn 2.0.16",
2022-09-02 23:03:57 +00:00
]
[[package]]
name = "tracing-core"
2023-05-17 18:28:32 +00:00
version = "0.1.31"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-17 18:28:32 +00:00
checksum = "0955b8137a1df6f1a2e9a37d8a6656291ff0297c1a97c24e0d8425fe2312f79a"
2022-09-02 23:03:57 +00:00
dependencies = [
"once_cell",
"valuable",
]
[[package]]
name = "tracing-error"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d686ec1c0f384b1277f097b2f279a2ecc11afe8c133c1aabf036a27cb4cd206e"
dependencies = [
"tracing",
"tracing-subscriber",
]
[[package]]
name = "tracing-serde"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bc6b213177105856957181934e4920de57730fc69bf42c37ee5bb664d406d9e1"
dependencies = [
"serde",
"tracing-core",
]
[[package]]
name = "tracing-subscriber"
2023-05-03 18:01:34 +00:00
version = "0.3.17"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-03 18:01:34 +00:00
checksum = "30a651bc37f915e81f087d86e62a18eec5f79550c7faff886f7090b4ea757c77"
2022-09-02 23:03:57 +00:00
dependencies = [
"matchers",
2022-11-01 16:32:14 +00:00
"nu-ansi-term",
2022-09-02 23:03:57 +00:00
"once_cell",
"regex",
"serde",
"serde_json",
2022-09-02 23:03:57 +00:00
"sharded-slab",
"thread_local",
"tracing",
"tracing-core",
"tracing-serde",
]
[[package]]
name = "try-lock"
2023-01-09 17:30:11 +00:00
version = "0.2.4"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-09 17:30:11 +00:00
checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed"
2022-09-02 23:03:57 +00:00
[[package]]
name = "typetag"
2023-05-03 18:01:34 +00:00
version = "0.2.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-03 18:01:34 +00:00
checksum = "6a6898cc6f6a32698cc3e14d5632a14d2b23ed9f7b11e6b8e05ce685990acc22"
dependencies = [
"erased-serde",
"inventory",
"once_cell",
"serde",
"typetag-impl",
]
[[package]]
name = "typetag-impl"
2023-05-03 18:01:34 +00:00
version = "0.2.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-03 18:01:34 +00:00
checksum = "2c3e1c30cedd24fc597f7d37a721efdbdc2b1acae012c1ef1218f4c7c2c0f3e7"
dependencies = [
"proc-macro2",
"quote",
2023-05-17 18:28:32 +00:00
"syn 2.0.16",
]
2022-09-02 23:03:57 +00:00
[[package]]
name = "unicode-bidi"
2023-03-29 17:13:28 +00:00
version = "0.3.13"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-29 17:13:28 +00:00
checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460"
2022-09-02 23:03:57 +00:00
[[package]]
name = "unicode-ident"
2023-03-06 17:14:40 +00:00
version = "1.0.8"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-06 17:14:40 +00:00
checksum = "e5464a87b239f13a63a501f2701565754bae92d243d4bb7eb12f6d57d2269bf4"
2022-09-02 23:03:57 +00:00
[[package]]
name = "unicode-normalization"
2022-11-01 16:32:14 +00:00
version = "0.1.22"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-01 16:32:14 +00:00
checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921"
2022-09-02 23:03:57 +00:00
dependencies = [
"tinyvec",
]
2022-09-09 18:43:35 +00:00
[[package]]
name = "untrusted"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
2022-09-02 23:03:57 +00:00
[[package]]
name = "url"
2022-09-14 22:18:13 +00:00
version = "2.3.1"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-14 22:18:13 +00:00
checksum = "0d68c799ae75762b8c3fe375feb6600ef5602c883c5d21eb51c09f22b83c4643"
2022-09-02 23:03:57 +00:00
dependencies = [
"form_urlencoded",
"idna",
"percent-encoding",
2022-09-14 22:18:13 +00:00
"serde",
2022-09-02 23:03:57 +00:00
]
2023-03-29 17:13:28 +00:00
[[package]]
name = "utf8parse"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a"
[[package]]
name = "uuid"
2023-05-17 18:28:32 +00:00
version = "1.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-17 18:28:32 +00:00
checksum = "345444e32442451b267fc254ae85a209c64be56d2890e601a0c37ff0c3c5ecd2"
dependencies = [
"serde",
]
2022-09-02 23:03:57 +00:00
[[package]]
name = "valuable"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d"
[[package]]
name = "walkdir"
version = "2.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "36df944cda56c7d8d8b7496af378e6b16de9284591917d307c9b4d313c44e698"
dependencies = [
"same-file",
"winapi-util",
]
2022-09-02 23:03:57 +00:00
[[package]]
name = "want"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0"
dependencies = [
"log",
"try-lock",
]
[[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-05-17 18:28:32 +00:00
version = "0.2.86"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-17 18:28:32 +00:00
checksum = "5bba0e8cb82ba49ff4e229459ff22a191bbe9a1cb3a341610c9c33efc27ddf73"
2022-09-02 23:03:57 +00:00
dependencies = [
"cfg-if",
"wasm-bindgen-macro",
]
[[package]]
name = "wasm-bindgen-backend"
2023-05-17 18:28:32 +00:00
version = "0.2.86"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-17 18:28:32 +00:00
checksum = "19b04bc93f9d6bdee709f6bd2118f57dd6679cf1176a1af464fca3ab0d66d8fb"
2022-09-02 23:03:57 +00:00
dependencies = [
"bumpalo",
"log",
"once_cell",
"proc-macro2",
"quote",
2023-05-17 18:28:32 +00:00
"syn 2.0.16",
2022-09-02 23:03:57 +00:00
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-futures"
2023-05-17 18:28:32 +00:00
version = "0.4.36"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-17 18:28:32 +00:00
checksum = "2d1985d03709c53167ce907ff394f5316aa22cb4e12761295c5dc57dacb6297e"
2022-09-02 23:03:57 +00:00
dependencies = [
"cfg-if",
"js-sys",
"wasm-bindgen",
"web-sys",
]
[[package]]
name = "wasm-bindgen-macro"
2023-05-17 18:28:32 +00:00
version = "0.2.86"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-17 18:28:32 +00:00
checksum = "14d6b024f1a526bb0234f52840389927257beb670610081360e5a03c5df9c258"
2022-09-02 23:03:57 +00:00
dependencies = [
"quote",
"wasm-bindgen-macro-support",
]
[[package]]
name = "wasm-bindgen-macro-support"
2023-05-17 18:28:32 +00:00
version = "0.2.86"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-17 18:28:32 +00:00
checksum = "e128beba882dd1eb6200e1dc92ae6c5dbaa4311aa7bb211ca035779e5efc39f8"
2022-09-02 23:03:57 +00:00
dependencies = [
"proc-macro2",
"quote",
2023-05-17 18:28:32 +00:00
"syn 2.0.16",
2022-09-02 23:03:57 +00:00
"wasm-bindgen-backend",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-shared"
2023-05-17 18:28:32 +00:00
version = "0.2.86"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-17 18:28:32 +00:00
checksum = "ed9d5b4305409d1fc9482fee2d7f9bcbf24b3972bf59817ef757e23982242a93"
2023-02-03 17:07:10 +00:00
[[package]]
name = "wasm-streams"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6bbae3363c08332cadccd13b67db371814cd214c2524020932f0804b8cf7c078"
dependencies = [
"futures-util",
"js-sys",
"wasm-bindgen",
"wasm-bindgen-futures",
"web-sys",
]
2022-09-02 23:03:57 +00:00
[[package]]
name = "web-sys"
2023-05-17 18:28:32 +00:00
version = "0.3.63"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-17 18:28:32 +00:00
checksum = "3bdd9ef4e984da1187bf8110c5cf5b845fbc87a23602cdf912386a76fcd3a7c2"
2022-09-02 23:03:57 +00:00
dependencies = [
"js-sys",
"wasm-bindgen",
]
[[package]]
name = "which"
version = "4.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2441c784c52b289a054b7201fc93253e288f094e2f4be9058343127c4226a269"
dependencies = [
"either",
"libc",
"once_cell",
]
2022-09-02 23:03:57 +00:00
[[package]]
name = "winapi"
version = "0.3.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
dependencies = [
"winapi-i686-pc-windows-gnu",
"winapi-x86_64-pc-windows-gnu",
]
[[package]]
name = "winapi-i686-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
[[package]]
name = "winapi-util"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
dependencies = [
"winapi",
]
[[package]]
name = "winapi-x86_64-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
2023-03-29 17:13:28 +00:00
[[package]]
name = "windows"
2023-04-12 14:38:17 +00:00
version = "0.48.0"
2023-03-29 17:13:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-12 14:38:17 +00:00
checksum = "e686886bc078bc1b0b600cac0147aadb815089b6e4da64016cbd754b6342700f"
2023-03-29 17:13:28 +00:00
dependencies = [
2023-04-12 14:38:17 +00:00
"windows-targets 0.48.0",
2023-03-29 17:13:28 +00:00
]
2022-09-02 23:03:57 +00:00
[[package]]
name = "windows-sys"
2022-11-01 16:32:14 +00:00
version = "0.42.0"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-01 16:32:14 +00:00
checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7"
2022-09-02 23:03:57 +00:00
dependencies = [
2023-04-12 14:38:17 +00:00
"windows_aarch64_gnullvm 0.42.2",
"windows_aarch64_msvc 0.42.2",
"windows_i686_gnu 0.42.2",
"windows_i686_msvc 0.42.2",
"windows_x86_64_gnu 0.42.2",
"windows_x86_64_gnullvm 0.42.2",
"windows_x86_64_msvc 0.42.2",
2022-09-02 23:03:57 +00:00
]
2023-02-03 17:07:10 +00:00
[[package]]
name = "windows-sys"
version = "0.45.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
dependencies = [
2023-04-12 14:38:17 +00:00
"windows-targets 0.42.2",
]
[[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-03 17:07:10 +00:00
]
[[package]]
name = "windows-targets"
version = "0.42.2"
2023-02-03 17:07:10 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
2023-02-03 17:07:10 +00:00
dependencies = [
2023-04-12 14:38:17 +00:00
"windows_aarch64_gnullvm 0.42.2",
"windows_aarch64_msvc 0.42.2",
"windows_i686_gnu 0.42.2",
"windows_i686_msvc 0.42.2",
"windows_x86_64_gnu 0.42.2",
"windows_x86_64_gnullvm 0.42.2",
"windows_x86_64_msvc 0.42.2",
]
[[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-03 17:07:10 +00:00
]
2022-11-01 16:32:14 +00:00
[[package]]
name = "windows_aarch64_gnullvm"
version = "0.42.2"
2022-11-01 16:32:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
2022-11-01 16:32:14 +00:00
2023-04-12 14:38:17 +00:00
[[package]]
name = "windows_aarch64_gnullvm"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc"
2022-09-02 23:03:57 +00:00
[[package]]
name = "windows_aarch64_msvc"
version = "0.42.2"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
2022-09-02 23:03:57 +00:00
2023-04-12 14:38:17 +00:00
[[package]]
name = "windows_aarch64_msvc"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3"
2022-09-02 23:03:57 +00:00
[[package]]
name = "windows_i686_gnu"
version = "0.42.2"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
2022-09-02 23:03:57 +00:00
2023-04-12 14:38:17 +00:00
[[package]]
name = "windows_i686_gnu"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241"
2022-09-02 23:03:57 +00:00
[[package]]
name = "windows_i686_msvc"
version = "0.42.2"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
2022-09-02 23:03:57 +00:00
2023-04-12 14:38:17 +00:00
[[package]]
name = "windows_i686_msvc"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00"
2022-09-02 23:03:57 +00:00
[[package]]
name = "windows_x86_64_gnu"
version = "0.42.2"
2022-11-01 16:32:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
2022-11-01 16:32:14 +00:00
2023-04-12 14:38:17 +00:00
[[package]]
name = "windows_x86_64_gnu"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1"
2022-11-01 16:32:14 +00:00
[[package]]
name = "windows_x86_64_gnullvm"
version = "0.42.2"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
2022-09-02 23:03:57 +00:00
2023-04-12 14:38:17 +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-09-02 23:03:57 +00:00
[[package]]
name = "windows_x86_64_msvc"
version = "0.42.2"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
2022-09-02 23:03:57 +00:00
2023-04-12 14:38:17 +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-09-02 23:03:57 +00:00
[[package]]
name = "winreg"
version = "0.10.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d"
dependencies = [
"winapi",
]
[[package]]
name = "xattr"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6d1526bbe5aaeb5eb06885f4d987bcdfa5e23187055de9b83fe00156a821fabc"
dependencies = [
"libc",
]
[[package]]
name = "xz2"
version = "0.1.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "388c44dc09d76f1536602ead6d325eb532f5c122f17782bd57fb47baeeb767e2"
dependencies = [
"futures",
2022-09-02 23:03:57 +00:00
"lzma-sys",
2022-09-09 18:43:35 +00:00
"tokio-io",
2022-09-02 23:03:57 +00:00
]