lix-installer/Cargo.lock

2528 lines
61 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"
version = "0.17.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b9ecd88a8c8378ca913a680cd98f0f13ac67383d35993f86c90a70e3f137816b"
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",
]
2022-09-02 23:03:57 +00:00
[[package]]
name = "async-channel"
2022-12-02 16:20:42 +00:00
version = "1.8.0"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-02 16:20:42 +00:00
checksum = "cf46fee83e5ccffc220104713af3292ff9bc7c64c7de289f66dae8e38d826833"
2022-09-02 23:03:57 +00:00
dependencies = [
2022-12-02 16:20:42 +00:00
"concurrent-queue",
2022-09-02 23:03:57 +00:00
"event-listener",
"futures-core",
]
[[package]]
name = "async-executor"
2022-11-16 21:11:14 +00:00
version = "1.5.0"
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 = "17adb73da160dfb475c183343c8cccd80721ea5a605d3eb57125f0a7b7a92d0b"
2022-09-02 23:03:57 +00:00
dependencies = [
2022-11-16 21:11:14 +00:00
"async-lock",
2022-09-02 23:03:57 +00:00
"async-task",
2022-12-02 16:20:42 +00:00
"concurrent-queue",
2022-09-02 23:03:57 +00:00
"fastrand",
"futures-lite",
"slab",
]
[[package]]
name = "async-global-executor"
2022-11-01 16:32:14 +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-11-01 16:32:14 +00:00
checksum = "f1b6f5d7df27bd294849f8eec66ecfc63d11814df7a4f5d74168a2394467b776"
2022-09-02 23:03:57 +00:00
dependencies = [
"async-channel",
"async-executor",
"async-io",
"async-lock",
"blocking",
"futures-lite",
"once_cell",
]
[[package]]
name = "async-io"
2022-12-02 16:20:42 +00:00
version = "1.12.0"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-02 16:20:42 +00:00
checksum = "8c374dda1ed3e7d8f0d9ba58715f924862c63eae6849c92d3a18e7fbde9e2794"
2022-09-02 23:03:57 +00:00
dependencies = [
2022-11-01 16:32:14 +00:00
"async-lock",
2022-09-02 23:03:57 +00:00
"autocfg",
2022-12-02 16:20:42 +00:00
"concurrent-queue",
2022-09-02 23:03:57 +00:00
"futures-lite",
"libc",
"log",
"parking",
"polling",
"slab",
"socket2",
"waker-fn",
2022-12-02 16:20:42 +00:00
"windows-sys",
2022-09-02 23:03:57 +00:00
]
[[package]]
name = "async-lock"
2022-11-01 16:32:14 +00:00
version = "2.6.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 = "c8101efe8695a6c17e02911402145357e718ac92d3ff88ae8419e84b1707b685"
2022-09-02 23:03:57 +00:00
dependencies = [
"event-listener",
2022-11-01 16:32:14 +00:00
"futures-lite",
2022-09-02 23:03:57 +00:00
]
[[package]]
name = "async-std"
version = "1.12.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "62565bb4402e926b29953c785397c6dc0391b7b446e45008b0049eb43cec6f5d"
dependencies = [
"async-channel",
"async-global-executor",
"async-io",
"async-lock",
"crossbeam-utils",
"futures-channel",
"futures-core",
"futures-io",
"futures-lite",
"gloo-timers",
"kv-log-macro",
"log",
"memchr",
"once_cell",
"pin-project-lite",
"pin-utils",
"slab",
"wasm-bindgen-futures",
]
[[package]]
name = "async-tar"
version = "0.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5c49359998a76e32ef6e870dbc079ebad8f1e53e8441c5dd39d27b44493fe331"
dependencies = [
"async-std",
"filetime",
"libc",
"pin-project",
"redox_syscall",
"xattr",
]
[[package]]
name = "async-task"
version = "4.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7a40729d2133846d9ed0ea60a8b9541bccddab49cd30f0715a1da672fe9a2524"
[[package]]
name = "async-trait"
2022-12-02 16:20:42 +00:00
version = "0.1.59"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-02 16:20:42 +00:00
checksum = "31e6e93155431f3931513b243d371981bb2770112b370c82745a1d19d2f99364"
2022-09-02 23:03:57 +00:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "atomic-waker"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "065374052e7df7ee4047b1160cca5e1467a12351a40b3da123c870ba0b8eda2a"
[[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"
version = "0.3.66"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cab84319d616cfb654d03394f38ab7e6f0919e181b1b57e1fd15e7fb4077d9a7"
dependencies = [
"addr2line",
"cc",
"cfg-if",
"libc",
"miniz_oxide",
"object",
"rustc-demangle",
]
[[package]]
name = "base64"
2022-11-01 16:32:14 +00:00
version = "0.13.1"
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 = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
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 = "blocking"
2022-12-02 16:20:42 +00:00
version = "1.3.0"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-02 16:20:42 +00:00
checksum = "3c67b173a56acffd6d2326fb7ab938ba0b00a71480e14902b2591c87bc5741e8"
2022-09-02 23:03:57 +00:00
dependencies = [
"async-channel",
2022-12-02 16:20:42 +00:00
"async-lock",
2022-09-02 23:03:57 +00:00
"async-task",
"atomic-waker",
"fastrand",
"futures-lite",
]
[[package]]
name = "bumpalo"
2022-11-01 16:32:14 +00:00
version = "3.11.1"
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 = "572f695136211188308f16ad2ca5c851a712c464060ae6974944458eb83880ba"
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"
version = "1.3.0"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dfb24e866b15a1af2a1b663f10c6b6b8f397a84aadb828f12e5b289ec23a3a3c"
2022-09-02 23:03:57 +00:00
[[package]]
name = "cc"
version = "1.0.77"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e9f73505338f7d905b19d18738976aae232eb46b8efc15554ffc56deb5d9ebe4"
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"
2022-11-16 21:11:14 +00:00
version = "0.4.23"
2022-10-13 19:03:42 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-16 21:11:14 +00:00
checksum = "16b0a3d9ed01224b22057780a37bb8c5dbfe1be8ba48678e7bf57ec4b385411f"
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"
2022-12-02 16:20:42 +00:00
version = "4.0.29"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-02 16:20:42 +00:00
checksum = "4d63b9e9c07271b9957ad22c173bae2a4d9a81127680962039296abcd2f8251d"
2022-09-02 23:03:57 +00:00
dependencies = [
"bitflags",
"clap_derive",
"clap_lex",
2022-12-02 16:20:42 +00:00
"is-terminal",
2022-09-02 23:03:57 +00:00
"once_cell",
"strsim",
"termcolor",
]
[[package]]
name = "clap_derive"
2022-11-16 21:11:14 +00:00
version = "4.0.21"
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 = "0177313f9f02afc995627906bbd8967e2be069f5261954222dac78290c2b9014"
2022-09-02 23:03:57 +00:00
dependencies = [
"heck",
"proc-macro-error",
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "clap_lex"
2022-10-06 19:21:49 +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-10-06 19:21:49 +00:00
checksum = "0d4198f73e42b4936b35b5bb248d81d2b595ecb170da0bac7655c54eedfa8da8"
2022-09-02 23:03:57 +00:00
dependencies = [
"os_str_bytes",
]
2022-10-13 19:03:42 +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",
]
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",
]
[[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",
]
2022-11-16 21:11:14 +00:00
[[package]]
name = "concurrent-queue"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bd7bef69dc86e3c610e4e7aed41035e2a7ed12e72dd7530f61327a6579a4390b"
dependencies = [
"crossbeam-utils",
]
2022-10-13 19:03:42 +00:00
[[package]]
name = "core-foundation-sys"
version = "0.8.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc"
2022-09-02 23:03:57 +00:00
[[package]]
name = "crossbeam-utils"
version = "0.8.14"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4fb766fa798726286dbbb842f174001dab8abc7b627a1dd86e0b7222a95d929f"
2022-09-02 23:03:57 +00:00
dependencies = [
"cfg-if",
]
[[package]]
name = "crossterm"
version = "0.25.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e64e6c0fbe2c17357405f7c758c1ef960fce08bdfb2c03d88d2a18d7e09c4b67"
dependencies = [
"bitflags",
"crossterm_winapi",
"futures-core",
"libc",
"mio",
"parking_lot",
"signal-hook",
"signal-hook-mio",
"winapi",
]
[[package]]
name = "crossterm_winapi"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2ae1b35a484aa10e07fe0638d02301c5ad24de82d310ccbd2f3693da5f09bf1c"
dependencies = [
"winapi",
]
[[package]]
name = "ctor"
2022-11-01 16:32:14 +00:00
version = "0.1.26"
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 = "6d2301688392eb071b0bf1a37be05c469d3cc4dbbd95df672fe28ab021e6a096"
2022-09-02 23:03:57 +00:00
dependencies = [
"quote",
"syn",
]
2022-10-13 19:03:42 +00:00
[[package]]
name = "cxx"
2022-12-09 16:17:35 +00:00
version = "1.0.83"
2022-10-13 19:03:42 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-09 16:17:35 +00:00
checksum = "bdf07d07d6531bfcdbe9b8b739b104610c6508dcc4d63b410585faf338241daf"
2022-10-13 19:03:42 +00:00
dependencies = [
"cc",
"cxxbridge-flags",
"cxxbridge-macro",
"link-cplusplus",
]
[[package]]
name = "cxx-build"
2022-12-09 16:17:35 +00:00
version = "1.0.83"
2022-10-13 19:03:42 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-09 16:17:35 +00:00
checksum = "d2eb5b96ecdc99f72657332953d4d9c50135af1bac34277801cc3937906ebd39"
2022-10-13 19:03:42 +00:00
dependencies = [
"cc",
"codespan-reporting",
"once_cell",
"proc-macro2",
"quote",
"scratch",
"syn",
]
[[package]]
name = "cxxbridge-flags"
2022-12-09 16:17:35 +00:00
version = "1.0.83"
2022-10-13 19:03:42 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-09 16:17:35 +00:00
checksum = "ac040a39517fd1674e0f32177648334b0f4074625b5588a64519804ba0553b12"
2022-10-13 19:03:42 +00:00
[[package]]
name = "cxxbridge-macro"
2022-12-09 16:17:35 +00:00
version = "1.0.83"
2022-10-13 19:03:42 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-09 16:17:35 +00:00
checksum = "1362b0ddcfc4eb0a1f57b68bd77dd99f0e826958a96abd0ae9bd092e114ffed6"
2022-10-13 19:03:42 +00:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "darling"
2022-11-01 16:32:14 +00:00
version = "0.14.2"
2022-10-13 19:03:42 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-01 16:32:14 +00:00
checksum = "b0dd3cd20dc6b5a876612a6e5accfe7f3dd883db6d07acfbf14c128f61550dfa"
2022-10-13 19:03:42 +00:00
dependencies = [
"darling_core",
"darling_macro",
]
[[package]]
name = "darling_core"
2022-11-01 16:32:14 +00:00
version = "0.14.2"
2022-10-13 19:03:42 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-01 16:32:14 +00:00
checksum = "a784d2ccaf7c98501746bf0be29b2022ba41fd62a2e622af997a03e9f972859f"
2022-10-13 19:03:42 +00:00
dependencies = [
"fnv",
"ident_case",
"proc-macro2",
"quote",
"strsim",
"syn",
]
[[package]]
name = "darling_macro"
2022-11-01 16:32:14 +00:00
version = "0.14.2"
2022-10-13 19:03:42 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-01 16:32:14 +00:00
checksum = "7618812407e9402654622dd402b0a89dff9ba93badd6540781526117b92aab7e"
2022-10-13 19:03:42 +00:00
dependencies = [
"darling_core",
"quote",
"syn",
]
[[package]]
name = "dirs"
version = "4.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ca3aa72a6f96ea37bbc5aa912f6788242832f75369bdfdadcb0e38423f100059"
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"
version = "0.3.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1b1d1d91c932ef41c0f2663aa8b0ca0342d444d842c06914aa0a7e352d0bada6"
dependencies = [
"libc",
"redox_users",
"winapi",
]
[[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"
version = "1.0.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4f94fa09c2aeea5b8839e414b7b841bf429fd25b9c522116ac97ee87856d88b2"
2022-09-02 23:03:57 +00:00
[[package]]
name = "encoding_rs"
version = "0.8.31"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9852635589dc9f9ea1b6fe9f05b50ef208c85c834a562f0c6abb1c475736ec2b"
dependencies = [
"cfg-if",
]
[[package]]
name = "erased-serde"
version = "0.3.23"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "54558e0ba96fbe24280072642eceb9d7d442e32c7ec0ea9e7ecd7b4ea2cf4e11"
dependencies = [
"serde",
]
2022-12-02 16:20:42 +00:00
[[package]]
name = "errno"
version = "0.2.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f639046355ee4f37944e44f60642c6f3a7efa3cf6b78c78a0d989a8ce6c396a1"
dependencies = [
"errno-dragonfly",
"libc",
"winapi",
]
[[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 = "event-listener"
version = "2.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0"
[[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.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a7a407cfaa3385c4ae6b23e84623d48c2798d06e3e6a1878f7f59f17b3f86499"
dependencies = [
"instant",
]
[[package]]
name = "filetime"
2022-12-09 16:17:35 +00:00
version = "0.2.19"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-09 16:17:35 +00:00
checksum = "4e884668cd0c7480504233e951174ddc3b382f7c2666e3b7310b5c4e7b0c37f9"
2022-09-02 23:03:57 +00:00
dependencies = [
"cfg-if",
"libc",
"redox_syscall",
"windows-sys",
]
[[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"
2022-11-01 16:32:14 +00:00
version = "0.3.25"
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 = "38390104763dc37a5145a53c29c63c1290b5d316d6086ec32c293f6736051bb0"
2022-09-02 23:03:57 +00:00
dependencies = [
"futures-channel",
"futures-core",
"futures-executor",
"futures-io",
"futures-sink",
"futures-task",
"futures-util",
]
[[package]]
name = "futures-channel"
2022-11-01 16:32:14 +00:00
version = "0.3.25"
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 = "52ba265a92256105f45b719605a571ffe2d1f0fea3807304b522c1d778f79eed"
2022-09-02 23:03:57 +00:00
dependencies = [
"futures-core",
"futures-sink",
]
[[package]]
name = "futures-core"
2022-11-01 16:32:14 +00:00
version = "0.3.25"
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 = "04909a7a7e4633ae6c4a9ab280aeb86da1236243a77b694a49eacd659a4bd3ac"
2022-09-02 23:03:57 +00:00
[[package]]
name = "futures-executor"
2022-11-01 16:32:14 +00:00
version = "0.3.25"
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 = "7acc85df6714c176ab5edf386123fafe217be88c0840ec11f199441134a074e2"
2022-09-02 23:03:57 +00:00
dependencies = [
"futures-core",
"futures-task",
"futures-util",
]
[[package]]
name = "futures-io"
2022-11-01 16:32:14 +00:00
version = "0.3.25"
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 = "00f5fb52a06bdcadeb54e8d3671f8888a39697dcb0b81b23b55174030427f4eb"
2022-09-02 23:03:57 +00:00
[[package]]
name = "futures-lite"
version = "1.12.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7694489acd39452c77daa48516b894c153f192c3578d5a839b62c58099fcbf48"
dependencies = [
"fastrand",
"futures-core",
"futures-io",
"memchr",
"parking",
"pin-project-lite",
"waker-fn",
]
[[package]]
name = "futures-macro"
2022-11-01 16:32:14 +00:00
version = "0.3.25"
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 = "bdfb8ce053d86b91919aad980c220b1fb8401a9394410e1c289ed7e66b61835d"
2022-09-02 23:03:57 +00:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "futures-sink"
2022-11-01 16:32:14 +00:00
version = "0.3.25"
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 = "39c15cf1a4aa79df40f1bb462fb39676d0ad9e366c2a33b590d7c66f4f81fcf9"
2022-09-02 23:03:57 +00:00
[[package]]
name = "futures-task"
2022-11-01 16:32:14 +00:00
version = "0.3.25"
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 = "2ffb393ac5d9a6eaa9d3fdf37ae2776656b706e200c8e16b1bdb227f5198e6ea"
2022-09-02 23:03:57 +00:00
[[package]]
name = "futures-util"
2022-11-01 16:32:14 +00:00
version = "0.3.25"
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 = "197676987abd2f9cadff84926f410af1c183608d36641465df73ae8211dc65d6"
2022-09-02 23:03:57 +00:00
dependencies = [
"futures-channel",
"futures-core",
"futures-io",
"futures-macro",
"futures-sink",
"futures-task",
"memchr",
"pin-project-lite",
"pin-utils",
"slab",
]
[[package]]
name = "getrandom"
2022-11-01 16:32:14 +00:00
version = "0.2.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-01 16:32:14 +00:00
checksum = "c05aeb6a22b8f62540c194aac980f2115af067bfe15a0734d7277a768d396b31"
dependencies = [
"cfg-if",
"libc",
"wasi",
]
[[package]]
name = "ghost"
version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eb19fe8de3ea0920d282f7b77dd4227aea6b8b999b42cdf0ca41b2472b14443a"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
2022-09-02 23:03:57 +00:00
[[package]]
name = "gimli"
version = "0.26.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "22030e2c5a68ec659fde1e949a745124b48e6fa8b045b7ed5bd1fe4ccc5c4e5d"
2022-09-09 18:43:35 +00:00
[[package]]
name = "glob"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574"
2022-09-02 23:03:57 +00:00
[[package]]
name = "gloo-timers"
2022-12-02 16:20:42 +00:00
version = "0.2.5"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-02 16:20:42 +00:00
checksum = "98c4a8d6391675c6b2ee1a6c8d06e8e2d03605c44cec1270675985a4c2a5500b"
2022-09-02 23:03:57 +00:00
dependencies = [
"futures-channel",
"futures-core",
"js-sys",
"wasm-bindgen",
]
[[package]]
name = "h2"
2022-11-01 16:32:14 +00:00
version = "0.3.15"
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 = "5f9f29bc9dda355256b2916cf526ab02ce0aeaaaf2bad60d65ef3f12f11dd0f4"
2022-09-02 23:03:57 +00:00
dependencies = [
"bytes 1.3.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 = "harmonic"
version = "0.0.0-unreleased"
2022-09-02 23:03:57 +00:00
dependencies = [
"async-tar",
"async-trait",
"atty",
"bytes 1.3.0",
2022-09-02 23:03:57 +00:00
"clap",
"color-eyre",
"crossterm",
"dirs",
"dyn-clone",
"erased-serde",
2022-09-02 23:03:57 +00:00
"eyre",
2022-11-01 16:32:14 +00:00
"futures 0.3.25",
2022-09-09 18:43:35 +00:00
"glob",
"nix",
2022-09-02 23:03:57 +00:00
"owo-colors",
2022-10-19 22:12:50 +00:00
"plist",
"rand",
2022-09-02 23:03:57 +00:00
"reqwest",
"semver",
2022-09-14 22:18:13 +00:00
"serde",
2022-09-15 17:29:22 +00:00
"serde_json",
2022-10-13 19:03:42 +00:00
"serde_with",
2022-10-18 18:03:19 +00:00
"sxd-document",
"sxd-xpath",
2022-09-09 18:43:35 +00:00
"tar",
2022-09-02 23:03:57 +00:00
"target-lexicon",
"term",
2022-09-02 23:03:57 +00:00
"thiserror",
"tokio",
2022-09-09 18:43:35 +00:00
"tokio-util",
2022-09-02 23:03:57 +00:00
"tracing",
"tracing-error",
"tracing-subscriber",
"typetag",
2022-09-14 22:18:13 +00:00
"url",
2022-09-02 23:03:57 +00:00
"valuable",
2022-09-09 18:43:35 +00:00
"walkdir",
"xz2",
2022-09-02 23:03:57 +00:00
]
[[package]]
name = "hashbrown"
version = "0.12.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
[[package]]
name = "heck"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2540771e65fc8cb83cd6e8a237f70c319bd5c29f78ed1084ba5d50eeac86f7f9"
[[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",
]
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.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "75f43d41e26995c17e71ee126451dd3941010b0514a81a9d11f3b341debc2399"
dependencies = [
"bytes 1.3.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 = [
"bytes 1.3.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"
2022-11-16 21:11:14 +00:00
version = "0.14.23"
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 = "034711faac9d2166cb1baf1a2fb0b60b1f277f8492fd72176c17f3515e1abd3c"
2022-09-02 23:03:57 +00:00
dependencies = [
"bytes 1.3.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"
2022-12-09 16:17:35 +00:00
version = "0.23.2"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-09 16:17:35 +00:00
checksum = "1788965e61b367cd03a62950836d5cd41560c3577d90e40e0819373194d1661c"
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"
2022-11-01 16:32:14 +00:00
version = "0.1.53"
2022-10-13 19:03:42 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-01 16:32:14 +00:00
checksum = "64c122667b287044802d6ce17ee2ddf13207ed924c712de9a66a5814d5b64765"
2022-10-13 19:03:42 +00:00
dependencies = [
"android_system_properties",
"core-foundation-sys",
"iana-time-zone-haiku",
"js-sys",
"wasm-bindgen",
"winapi",
]
[[package]]
name = "iana-time-zone-haiku"
2022-11-01 16:32:14 +00:00
version = "0.1.1"
2022-10-13 19:03:42 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-01 16:32:14 +00:00
checksum = "0703ae284fc167426161c2e3f1da3ea71d94b21bedbcc9494e92b28e334e3dca"
2022-10-13 19:03:42 +00:00
dependencies = [
"cxx",
"cxx-build",
]
[[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"
version = "1.9.2"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1885e79c1fc4b10f0e172c475f458b7f7b93061064d98c3293e98c5ba0c8b399"
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"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e21e0a36a4dc4b469422ee17f715e8313f4a637675656d6a13637954278c6f55"
dependencies = [
"ctor",
"ghost",
]
2022-12-02 16:20:42 +00:00
[[package]]
name = "io-lifetimes"
version = "1.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "46112a93252b123d31a119a8d1a1ac19deac4fac6e0e8b0df58f0d4e5870e63c"
dependencies = [
"libc",
"windows-sys",
]
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"
2022-12-09 16:17:35 +00:00
version = "2.6.0"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-09 16:17:35 +00:00
checksum = "ec947b7a4ce12e3b87e353abae7ce124d025b6c7d6c5aea5cc0bcf92e9510ded"
2022-09-02 23:03:57 +00:00
2022-12-02 16:20:42 +00:00
[[package]]
name = "is-terminal"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "927609f78c2913a6f6ac3c27a4fe87f43e2a35367c0c4b0f8265e8f49a104330"
dependencies = [
"hermit-abi 0.2.6",
"io-lifetimes",
"rustix",
"windows-sys",
]
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"
2022-11-01 16:32:14 +00:00
version = "1.0.4"
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 = "4217ad341ebadf8d8e724e264f13e593e0648f5b3e94b3896a5df283be015ecc"
2022-09-02 23:03:57 +00:00
[[package]]
name = "js-sys"
2022-11-01 16:32:14 +00:00
version = "0.3.60"
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 = "49409df3e3bf0856b916e2ceaca09ee28e6871cf7d9ce97a692cacfdb2a25a47"
2022-09-02 23:03:57 +00:00
dependencies = [
"wasm-bindgen",
]
[[package]]
name = "kv-log-macro"
version = "1.0.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0de8b303297635ad57c9f5059fd9cee7a47f8e8daa09df0fcd07dd39fb22977f"
dependencies = [
"log",
]
[[package]]
name = "lazy_static"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
[[package]]
name = "libc"
2022-12-09 16:17:35 +00:00
version = "0.2.138"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-09 16:17:35 +00:00
checksum = "db6d7e329c562c5dfab7a46a2afabc8b987ab9a4834c9d1ca04dc54c1546cef8"
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-10-13 19:03:42 +00:00
[[package]]
name = "link-cplusplus"
version = "1.0.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9272ab7b96c9046fbc5bc56c06c117cb639fe2d509df0c421cad82d2915cf369"
dependencies = [
"cc",
]
2022-12-02 16:20:42 +00:00
[[package]]
name = "linux-raw-sys"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8f9f08d8963a6c613f4b1a78f4f4a4dbfadf8e6545b2d72861731e4858b8b47f"
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",
"value-bag",
]
[[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"
version = "0.3.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2a60c7ce501c71e03a9c9c0d35b861413ae925bd979cc7a4e30d060069aaac8d"
[[package]]
name = "miniz_oxide"
2022-11-01 16:32:14 +00:00
version = "0.5.4"
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 = "96590ba8f175222643a85693f33d26e9c8a015f599c216509b1a6894af675d34"
2022-09-02 23:03:57 +00:00
dependencies = [
"adler",
]
[[package]]
name = "mio"
2022-11-01 16:32:14 +00:00
version = "0.8.5"
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 = "e5d732bc30207a6423068df043e3d02e0735b155ad7ce1a6f76fe2baa5b158de"
2022-09-02 23:03:57 +00:00
dependencies = [
"libc",
"log",
"wasi",
"windows-sys",
]
[[package]]
2022-09-09 18:43:35 +00:00
name = "nix"
2022-12-02 16:20:42 +00:00
version = "0.26.1"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-02 16:20:42 +00:00
checksum = "46a58d1d356c6597d08cde02c2f09d785b09e28711837b1ed667dc652c08a694"
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
]
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"
2022-11-16 21:11:14 +00:00
version = "1.14.0"
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 = "f6058e64324c71e02bc2b150e4f3bc8286db6c83092132ffa3f6b1eab0f9def5"
2022-09-02 23:03:57 +00:00
dependencies = [
2022-12-02 16:20:42 +00:00
"hermit-abi 0.1.19",
2022-09-02 23:03:57 +00:00
"libc",
]
[[package]]
name = "object"
version = "0.29.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "21158b2c33aa6d4561f1c0a6ea283ca92bc54802a93b263e910746d679a7eb53"
dependencies = [
"memchr",
]
[[package]]
name = "once_cell"
2022-11-01 16:32:14 +00:00
version = "1.16.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 = "86f0b0d4bf799edbc74508c1e8bf170ff5f41238e5f8225603ca7caaae2b7860"
2022-09-02 23:03:57 +00:00
[[package]]
name = "os_str_bytes"
version = "6.4.1"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9b7820b9daea5457c9f21c69448905d723fbd21136ccf521748f23fd49e723ee"
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"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "427c3892f9e783d91cc128285287e70a59e206ca452770ece88a76f7a3eddd72"
[[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"
2022-12-02 16:20:42 +00:00
version = "0.9.5"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-02 16:20:42 +00:00
checksum = "7ff9f3fef3968a3ec5945535ed654cb38ff72d7495a25619e2247fb15a2ed9ba"
2022-09-02 23:03:57 +00:00
dependencies = [
"cfg-if",
"libc",
"redox_syscall",
"smallvec",
"windows-sys",
]
[[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
2022-10-18 18:03:19 +00:00
[[package]]
name = "peresil"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f658886ed52e196e850cfbbfddab9eaa7f6d90dd0929e264c31e5cec07e09e57"
2022-09-02 23:03:57 +00:00
[[package]]
name = "pin-project"
version = "1.0.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ad29a609b6bcd67fee905812e544992d216af9d755757c05ed2d0e15a74c6ecc"
dependencies = [
"pin-project-internal",
]
[[package]]
name = "pin-project-internal"
version = "1.0.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "069bdb1e05adc7a8990dce9cc75370895fbe4e3d58b9b73bf1aee56359344a55"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[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"
2022-11-01 16:32:14 +00:00
version = "0.3.26"
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 = "6ac9a59f73473f1b8d852421e59e64809f025994837ef743615c6d0c5b305160"
2022-09-02 23:03:57 +00:00
2022-10-19 22:12:50 +00:00
[[package]]
name = "plist"
version = "1.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bd39bc6cdc9355ad1dc5eeedefee696bb35c34caf21768741e81826c0bbd7225"
dependencies = [
"base64",
"indexmap",
"line-wrap",
"serde",
"time",
"xml-rs",
]
2022-09-02 23:03:57 +00:00
[[package]]
name = "polling"
2022-12-02 16:20:42 +00:00
version = "2.5.1"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-02 16:20:42 +00:00
checksum = "166ca89eb77fd403230b9c156612965a81e094ec6ec3aa13663d4c8b113fa748"
2022-09-02 23:03:57 +00:00
dependencies = [
"autocfg",
"cfg-if",
"libc",
"log",
"wepoll-ffi",
2022-12-02 16:20:42 +00:00
"windows-sys",
2022-09-02 23:03:57 +00:00
]
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-macro-error"
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
dependencies = [
"proc-macro-error-attr",
"proc-macro2",
"quote",
"syn",
"version_check",
]
[[package]]
name = "proc-macro-error-attr"
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
dependencies = [
"proc-macro2",
"quote",
"version_check",
]
[[package]]
name = "proc-macro2"
2022-11-01 16:32:14 +00:00
version = "1.0.47"
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 = "5ea3d908b0e36316caf9e9e2c4625cdde190a7e6f440d794667ed17a1855e725"
2022-09-02 23:03:57 +00:00
dependencies = [
"unicode-ident",
]
2022-10-18 18:03:19 +00:00
[[package]]
name = "quick-error"
version = "1.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
2022-09-02 23:03:57 +00:00
[[package]]
name = "quote"
version = "1.0.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bbe448f377a7d6961e30f5955f9b8d106c3f5e449d493ee1b125c1d43c2b5179"
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",
]
[[package]]
name = "redox_users"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b"
dependencies = [
"getrandom",
"redox_syscall",
"thiserror",
]
2022-09-02 23:03:57 +00:00
[[package]]
name = "regex"
2022-11-16 21:11:14 +00:00
version = "1.7.0"
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 = "e076559ef8e241f2ae3479e36f97bd5741c0330689e217ad51ce2c76808b868a"
2022-09-02 23:03:57 +00:00
dependencies = [
"regex-syntax",
]
[[package]]
name = "regex-automata"
version = "0.1.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
dependencies = [
"regex-syntax",
]
[[package]]
name = "regex-syntax"
2022-11-16 21:11:14 +00:00
version = "0.6.28"
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 = "456c603be3e8d448b072f410900c09faf164fbce2d480456f50eea6e25f9c848"
2022-09-02 23:03:57 +00:00
[[package]]
name = "reqwest"
2022-11-16 21:11:14 +00:00
version = "0.11.13"
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 = "68cc60575865c7831548863cc02356512e3f1dc2f3f82cb837d7fc4cc8f3c97c"
2022-09-02 23:03:57 +00:00
dependencies = [
"base64",
"bytes 1.3.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",
"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",
2022-09-02 23:03:57 +00:00
"tokio-util",
"tower-service",
"url",
"wasm-bindgen",
"wasm-bindgen-futures",
"web-sys",
2022-09-09 18:43:35 +00:00
"webpki-roots",
2022-09-02 23:03:57 +00:00
"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"
version = "0.1.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7ef03e0a2b150c7a90d01faf6254c9c48a41e95fb2a8c2ac1c6f0d2b9aefc342"
2022-12-02 16:20:42 +00:00
[[package]]
name = "rustix"
2022-12-09 16:17:35 +00:00
version = "0.36.5"
2022-12-02 16:20:42 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-09 16:17:35 +00:00
checksum = "a3807b5d10909833d3e9acd1eb5fb988f79376ff10fce42937de71a449c4c588"
2022-12-02 16:20:42 +00:00
dependencies = [
"bitflags",
"errno",
"io-lifetimes",
"libc",
"linux-raw-sys",
"windows-sys",
]
2022-09-09 18:43:35 +00:00
[[package]]
name = "rustls"
2022-11-01 16:32:14 +00:00
version = "0.20.7"
2022-09-09 18:43:35 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-01 16:32:14 +00:00
checksum = "539a2bfe908f471bfa933876bd1eb6a19cf2176d375f82ef7f99530a40e48c2c"
2022-09-09 18:43:35 +00:00
dependencies = [
"log",
"ring",
"sct",
"webpki",
]
[[package]]
name = "rustls-pemfile"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0864aeff53f8c05aa08d86e5ef839d3dfcf07aeba2db32f12db0ef716e87bd55"
dependencies = [
"base64",
]
[[package]]
name = "rustversion"
version = "1.0.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "97477e48b4cf8603ad5f7aaf897467cf42ab4218a38ef76fb14c2d6773a6d6a8"
2022-09-02 23:03:57 +00:00
[[package]]
name = "ryu"
version = "1.0.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4501abdff3ae82a1c1b477a17252eb69cee9e66eb915c1abaa4f44d873df9f09"
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"
2022-09-02 23:03:57 +00:00
[[package]]
2022-09-09 18:43:35 +00:00
name = "same-file"
version = "1.0.6"
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 = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
2022-09-02 23:03:57 +00:00
dependencies = [
2022-09-09 18:43:35 +00:00
"winapi-util",
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"
2022-10-13 19:03:42 +00:00
[[package]]
name = "scratch"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9c8132065adcfd6e02db789d9285a0deb2f3fcb04002865ab67d5fb103533898"
2022-09-02 23:03:57 +00:00
[[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
]
[[package]]
name = "semver"
version = "1.0.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e25dfac463d778e353db5be2449d1cce89bd6fd23c9f1ea21310ce6e5a1b29c4"
dependencies = [
"serde",
]
2022-09-02 23:03:57 +00:00
[[package]]
name = "serde"
2022-12-09 16:17:35 +00:00
version = "1.0.149"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-09 16:17:35 +00:00
checksum = "256b9932320c590e707b94576e3cc1f7c9024d0ee6612dfbcf1cb106cbe8e055"
2022-09-14 22:18:13 +00:00
dependencies = [
"serde_derive",
]
[[package]]
name = "serde_derive"
2022-12-09 16:17:35 +00:00
version = "1.0.149"
2022-09-14 22:18:13 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-09 16:17:35 +00:00
checksum = "b4eae9b04cbffdfd550eb462ed33bc6a1b68c935127d008b27444d08380f94e4"
2022-09-14 22:18:13 +00:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
2022-09-02 23:03:57 +00:00
[[package]]
name = "serde_json"
version = "1.0.89"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "020ff22c755c2ed3f8cf162dbb41a7268d934702f3ed3631656ea597e08fc3db"
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"
version = "2.1.0"
2022-10-13 19:03:42 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "25bf4a5a814902cd1014dbccfa4d4560fb8432c779471e96e035602519f82eef"
2022-10-13 19:03:42 +00:00
dependencies = [
"base64",
"chrono",
"hex",
"indexmap",
"serde",
"serde_json",
"serde_with_macros",
"time",
]
[[package]]
name = "serde_with_macros"
version = "2.1.0"
2022-10-13 19:03:42 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e3452b4c0f6c1e357f73fdb87cd1efabaa12acf328c7a528e252893baeb3f4aa"
2022-10-13 19:03:42 +00:00
dependencies = [
"darling",
"proc-macro2",
"quote",
"syn",
]
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"
version = "0.3.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a253b5e89e2698464fc26b545c9edceb338e18a89effeeecfea192c3025be29d"
dependencies = [
"libc",
"signal-hook-registry",
]
[[package]]
name = "signal-hook-mio"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "29ad2e15f37ec9a6cc544097b78a1ec90001e9f71b81338ca39f430adaca99af"
dependencies = [
"libc",
"mio",
"signal-hook",
]
[[package]]
name = "signal-hook-registry"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e51e73328dc4ac0c7ccbda3a494dfa03df1de2f46018127f60c693f2648455b0"
dependencies = [
"libc",
]
[[package]]
name = "slab"
version = "0.4.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4614a76b2a8be0058caa9dbbaf66d988527d86d003c11a94fbd335d7661edcef"
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"
version = "0.4.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "02e2d2db9033d13a1567121ddd7a095ee144db4e1ca1b1bda3419bc0da294ebd"
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 = "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",
]
2022-10-18 18:03:19 +00:00
[[package]]
name = "sxd-document"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "94d82f37be9faf1b10a82c4bd492b74f698e40082f0f40de38ab275f31d42078"
dependencies = [
"peresil",
"typed-arena",
]
[[package]]
name = "sxd-xpath"
version = "0.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "36e39da5d30887b5690e29de4c5ebb8ddff64ebd9933f98a01daaa4fd11b36ea"
dependencies = [
"peresil",
"quick-error",
"sxd-document",
]
2022-09-02 23:03:57 +00:00
[[package]]
name = "syn"
2022-12-02 16:20:42 +00:00
version = "1.0.105"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-02 16:20:42 +00:00
checksum = "60b9b43d45702de4c839cb9b51d9f529c5dd26a4aff255b42b1ebc03e88ee908"
2022-09-02 23:03:57 +00:00
dependencies = [
"proc-macro2",
"quote",
"unicode-ident",
]
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"
2022-11-16 21:11:14 +00:00
version = "0.12.5"
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 = "9410d0f6853b1d94f0e519fb95df60f29d2c1eff2d921ffdf01a4c8a3b54f12d"
2022-09-02 23:03:57 +00:00
[[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 = "termcolor"
version = "1.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bab24d30b911b2376f3a13cc2cd443142f0c81dda04c118693e35b3835757755"
dependencies = [
"winapi-util",
]
[[package]]
name = "thiserror"
2022-11-01 16:32:14 +00:00
version = "1.0.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 = "10deb33631e3c9018b9baf9dcbbc4f737320d2b576bac10f6aefa048fa407e3e"
2022-09-02 23:03:57 +00:00
dependencies = [
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
2022-11-01 16:32:14 +00:00
version = "1.0.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 = "982d17546b47146b28f7c22e3d08465f6b8903d0ea13c1660d9d84a6e7adcdbb"
2022-09-02 23:03:57 +00:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "thread_local"
version = "1.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5516c27b78311c50bf42c071425c560ac799b11c30b31f87e3081965fe5e0180"
dependencies = [
"once_cell",
]
2022-10-13 19:03:42 +00:00
[[package]]
name = "time"
2022-11-16 21:11:14 +00:00
version = "0.3.17"
2022-10-13 19:03:42 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-16 21:11:14 +00:00
checksum = "a561bf4617eebd33bca6434b988f39ed798e527f51a1e797d0ee4f61c0a38376"
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"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2e153e1f1acaef8acc537e68b44906d2db6436e2b35ac2c6b42640fff91f00fd"
[[package]]
name = "time-macros"
2022-11-16 21:11:14 +00:00
version = "0.2.6"
2022-11-01 16:32:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-16 21:11:14 +00:00
checksum = "d967f99f534ca7e495c575c62638eebc2898a8c84c119b89e250477bc4ba16b2"
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.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
[[package]]
name = "tokio"
2022-12-09 16:17:35 +00:00
version = "1.23.0"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-09 16:17:35 +00:00
checksum = "eab6d665857cc6ca78d6e80303a02cea7a7851e85dfbd77cbdc09bd129f1ef46"
2022-09-02 23:03:57 +00:00
dependencies = [
"autocfg",
"bytes 1.3.0",
2022-09-02 23:03:57 +00:00
"libc",
"memchr",
"mio",
"num_cpus",
"parking_lot",
2022-09-02 23:03:57 +00:00
"pin-project-lite",
"signal-hook-registry",
"socket2",
"tokio-macros",
"tracing",
2022-12-09 16:17:35 +00:00
"windows-sys",
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 0.1.31",
"log",
]
2022-09-02 23:03:57 +00:00
[[package]]
name = "tokio-macros"
2022-12-02 16:20:42 +00:00
version = "1.8.2"
2022-09-02 23:03:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-02 16:20:42 +00:00
checksum = "d266c00fde287f55d3f1c3e96c500c362a2b8c695076ec180f27918820bc6df8"
2022-09-02 23:03:57 +00:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
2022-09-09 18:43:35 +00:00
name = "tokio-rustls"
version = "0.23.4"
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 = "c43ee83903113e03984cb9e5cebe6c04a5116269e900e3ddba8f068a62adda59"
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",
2022-09-09 18:43:35 +00:00
"webpki",
2022-09-02 23:03:57 +00:00
]
[[package]]
name = "tokio-util"
2022-11-01 16:32:14 +00:00
version = "0.7.4"
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 = "0bb2e075f03b3d66d8d8785356224ba688d2906a371015e225beeb65ca92c740"
2022-09-02 23:03:57 +00:00
dependencies = [
"bytes 1.3.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"
2022-11-01 16:32:14 +00:00
version = "0.1.23"
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 = "4017f8f45139870ca7e672686113917c71c7a6e02d4924eda67186083c03081a"
2022-09-02 23:03:57 +00:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "tracing-core"
2022-11-01 16:32:14 +00:00
version = "0.1.30"
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 = "24eb03ba0eab1fd845050058ce5e616558e8f8d8fca633e6b163fe25c797213a"
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-log"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "78ddad33d2d10b1ed7eb9d1f518a5674713876e97e5bb9b7345a7984fbb4f922"
dependencies = [
"lazy_static",
"log",
"tracing-core",
]
[[package]]
name = "tracing-serde"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bc6b213177105856957181934e4920de57730fc69bf42c37ee5bb664d406d9e1"
dependencies = [
"serde",
"tracing-core",
"valuable",
"valuable-serde",
]
[[package]]
name = "tracing-subscriber"
2022-11-01 16:32:14 +00:00
version = "0.3.16"
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 = "a6176eae26dd70d0c919749377897b54a9276bd7061339665dd68777926b5a70"
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",
"sharded-slab",
"smallvec",
"thread_local",
"tracing",
"tracing-core",
"tracing-log",
"tracing-serde",
"valuable",
"valuable-serde",
]
[[package]]
name = "try-lock"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642"
2022-10-18 18:03:19 +00:00
[[package]]
name = "typed-arena"
version = "1.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a9b2228007eba4120145f785df0f6c92ea538f5a3635a612ecf4e334c8c1446d"
[[package]]
name = "typetag"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "23c8909f61359cac318f10dc9a3f9a7ee2155b6511f2a0c973460222ae5a00bb"
dependencies = [
"erased-serde",
"inventory",
"once_cell",
"serde",
"typetag-impl",
]
[[package]]
name = "typetag-impl"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fd4d8ff674190866d3437d2f725355d49e99e3b1a513bf7ee43dcfe7effc36f4"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
2022-09-02 23:03:57 +00:00
[[package]]
name = "unicode-bidi"
version = "0.3.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "099b7128301d285f79ddd55b9a83d5e6b9e97c92e0ea0daebee7263e932de992"
[[package]]
name = "unicode-ident"
2022-11-01 16:32:14 +00:00
version = "1.0.5"
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 = "6ceab39d59e4c9499d4e5a8ee0e2735b891bb7308ac83dfb4e80cad195c9f6f3"
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-10-13 19:03:42 +00:00
[[package]]
name = "unicode-width"
version = "0.1.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b"
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
]
[[package]]
name = "valuable"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d"
dependencies = [
"valuable-derive",
]
[[package]]
name = "valuable-derive"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9d44690c645190cfce32f91a1582281654b2338c6073fa250b0949fd25c55b32"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "valuable-serde"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5285cfff30cdabe26626736a54d989687dd9cab84f51f4048b61d6d0ae8b0907"
dependencies = [
"serde",
"valuable",
]
[[package]]
name = "value-bag"
version = "1.0.0-alpha.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2209b78d1249f7e6f3293657c9779fe31ced465df091bbd433a1cf88e916ec55"
dependencies = [
"ctor",
"version_check",
]
[[package]]
name = "version_check"
version = "0.9.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
[[package]]
name = "waker-fn"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9d5b2c62b4012a3e1eca5a7e077d13b3bf498c4073e33ccd58626607748ceeca"
2022-09-09 18:43:35 +00:00
[[package]]
name = "walkdir"
version = "2.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "808cf2735cd4b6866113f648b791c6adc5714537bc222d9347bb203386ffda56"
dependencies = [
"same-file",
"winapi",
"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"
2022-11-01 16:32:14 +00:00
version = "0.2.83"
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 = "eaf9f5aceeec8be17c128b2e93e031fb8a4d469bb9c4ae2d7dc1888b26887268"
2022-09-02 23:03:57 +00:00
dependencies = [
"cfg-if",
"wasm-bindgen-macro",
]
[[package]]
name = "wasm-bindgen-backend"
2022-11-01 16:32:14 +00:00
version = "0.2.83"
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 = "4c8ffb332579b0557b52d268b91feab8df3615f265d5270fec2a8c95b17c1142"
2022-09-02 23:03:57 +00:00
dependencies = [
"bumpalo",
"log",
"once_cell",
"proc-macro2",
"quote",
"syn",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-futures"
2022-11-01 16:32:14 +00:00
version = "0.4.33"
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 = "23639446165ca5a5de86ae1d8896b737ae80319560fbaa4c2887b7da6e7ebd7d"
2022-09-02 23:03:57 +00:00
dependencies = [
"cfg-if",
"js-sys",
"wasm-bindgen",
"web-sys",
]
[[package]]
name = "wasm-bindgen-macro"
2022-11-01 16:32:14 +00:00
version = "0.2.83"
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 = "052be0f94026e6cbc75cdefc9bae13fd6052cdcaf532fa6c45e7ae33a1e6c810"
2022-09-02 23:03:57 +00:00
dependencies = [
"quote",
"wasm-bindgen-macro-support",
]
[[package]]
name = "wasm-bindgen-macro-support"
2022-11-01 16:32:14 +00:00
version = "0.2.83"
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 = "07bc0c051dc5f23e307b13285f9d75df86bfdf816c5721e573dec1f9b8aa193c"
2022-09-02 23:03:57 +00:00
dependencies = [
"proc-macro2",
"quote",
"syn",
"wasm-bindgen-backend",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-shared"
2022-11-01 16:32:14 +00:00
version = "0.2.83"
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 = "1c38c045535d93ec4f0b4defec448e4291638ee608530863b1e2ba115d4fff7f"
2022-09-02 23:03:57 +00:00
[[package]]
name = "web-sys"
2022-11-01 16:32:14 +00:00
version = "0.3.60"
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 = "bcda906d8be16e728fd5adc5b729afad4e444e106ab28cd1c7256e54fa61510f"
2022-09-02 23:03:57 +00:00
dependencies = [
"js-sys",
"wasm-bindgen",
]
2022-09-09 18:43:35 +00:00
[[package]]
name = "webpki"
version = "0.22.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f095d78192e208183081cc07bc5515ef55216397af48b873e5edcd72637fa1bd"
dependencies = [
"ring",
"untrusted",
]
[[package]]
name = "webpki-roots"
2022-11-01 16:32:14 +00:00
version = "0.22.5"
2022-09-09 18:43:35 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-01 16:32:14 +00:00
checksum = "368bfe657969fb01238bb756d351dcade285e0f6fcbd36dcb23359a5169975be"
2022-09-09 18:43:35 +00:00
dependencies = [
"webpki",
]
2022-09-02 23:03:57 +00:00
[[package]]
name = "wepoll-ffi"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d743fdedc5c64377b5fc2bc036b01c7fd642205a0d96356034ae3404d49eb7fb"
dependencies = [
"cc",
]
[[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"
[[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 = [
2022-11-01 16:32:14 +00:00
"windows_aarch64_gnullvm",
2022-09-02 23:03:57 +00:00
"windows_aarch64_msvc",
"windows_i686_gnu",
"windows_i686_msvc",
"windows_x86_64_gnu",
2022-11-01 16:32:14 +00:00
"windows_x86_64_gnullvm",
2022-09-02 23:03:57 +00:00
"windows_x86_64_msvc",
]
2022-11-01 16:32:14 +00:00
[[package]]
name = "windows_aarch64_gnullvm"
version = "0.42.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "41d2aa71f6f0cbe00ae5167d90ef3cfe66527d6f613ca78ac8024c3ccab9a19e"
2022-09-02 23:03:57 +00:00
[[package]]
name = "windows_aarch64_msvc"
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 = "dd0f252f5a35cac83d6311b2e795981f5ee6e67eb1f9a7f64eb4500fbc4dcdb4"
2022-09-02 23:03:57 +00:00
[[package]]
name = "windows_i686_gnu"
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 = "fbeae19f6716841636c28d695375df17562ca208b2b7d0dc47635a50ae6c5de7"
2022-09-02 23:03:57 +00:00
[[package]]
name = "windows_i686_msvc"
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 = "84c12f65daa39dd2babe6e442988fc329d6243fdce47d7d2d155b8d874862246"
2022-09-02 23:03:57 +00:00
[[package]]
name = "windows_x86_64_gnu"
2022-11-01 16:32:14 +00:00
version = "0.42.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bf7b1b21b5362cbc318f686150e5bcea75ecedc74dd157d874d754a2ca44b0ed"
[[package]]
name = "windows_x86_64_gnullvm"
version = "0.42.0"
2022-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 = "09d525d2ba30eeb3297665bd434a54297e4170c7f1a44cad4ef58095b4cd2028"
2022-09-02 23:03:57 +00:00
[[package]]
name = "windows_x86_64_msvc"
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 = "f40009d85759725a34da6d89a94e63d7bdc50a862acf0dbc7c8e488f1edcb6f5"
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",
]
2022-10-19 22:12:50 +00:00
[[package]]
name = "xml-rs"
version = "0.8.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d2d7d3948613f75c98fd9328cfdcc45acc4d360655289d0a7d4ec931392200a3"
2022-09-02 23:03:57 +00:00
[[package]]
name = "xz2"
version = "0.1.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "388c44dc09d76f1536602ead6d325eb532f5c122f17782bd57fb47baeeb767e2"
dependencies = [
2022-09-09 18:43:35 +00:00
"futures 0.1.31",
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
]