|
|
|
|
@ -271,6 +271,27 @@ version = "1.8.0"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
|
|
|
checksum = "90e5c1c8368803113bf0c9584fc495a58b86dc8a29edbf8fe877d21d9507e797" |
|
|
|
|
|
|
|
|
|
[[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", |
|
|
|
|
] |
|
|
|
|
|
|
|
|
|
[[package]] |
|
|
|
|
name = "fastrand" |
|
|
|
|
version = "1.8.0" |
|
|
|
|
@ -371,6 +392,16 @@ dependencies = [
|
|
|
|
|
"cfg-if", |
|
|
|
|
] |
|
|
|
|
|
|
|
|
|
[[package]] |
|
|
|
|
name = "io-lifetimes" |
|
|
|
|
version = "1.0.5" |
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
|
|
|
checksum = "1abeb7a0dd0f8181267ff8adc397075586500b81b28a73e8a0208b00fc170fb3" |
|
|
|
|
dependencies = [ |
|
|
|
|
"libc", |
|
|
|
|
"windows-sys 0.45.0", |
|
|
|
|
] |
|
|
|
|
|
|
|
|
|
[[package]] |
|
|
|
|
name = "itertools" |
|
|
|
|
version = "0.10.5" |
|
|
|
|
@ -410,6 +441,12 @@ dependencies = [
|
|
|
|
|
"cc", |
|
|
|
|
] |
|
|
|
|
|
|
|
|
|
[[package]] |
|
|
|
|
name = "linux-raw-sys" |
|
|
|
|
version = "0.1.4" |
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
|
|
|
checksum = "f051f77a7c8e6957c0696eac88f26b0117e54f52d3fc682ab19397a8812846a4" |
|
|
|
|
|
|
|
|
|
[[package]] |
|
|
|
|
name = "log" |
|
|
|
|
version = "0.4.17" |
|
|
|
|
@ -571,12 +608,17 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "456c603be3e8d448b072f410900c09faf164fbce2d480456f50eea6e25f9c848" |
|
|
|
|
|
|
|
|
|
[[package]] |
|
|
|
|
name = "remove_dir_all" |
|
|
|
|
version = "0.5.3" |
|
|
|
|
name = "rustix" |
|
|
|
|
version = "0.36.8" |
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
|
|
|
checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7" |
|
|
|
|
checksum = "f43abb88211988493c1abb44a70efa56ff0ce98f233b7b276146f1f3f7ba9644" |
|
|
|
|
dependencies = [ |
|
|
|
|
"winapi", |
|
|
|
|
"bitflags", |
|
|
|
|
"errno", |
|
|
|
|
"io-lifetimes", |
|
|
|
|
"libc", |
|
|
|
|
"linux-raw-sys", |
|
|
|
|
"windows-sys 0.45.0", |
|
|
|
|
] |
|
|
|
|
|
|
|
|
|
[[package]] |
|
|
|
|
@ -621,16 +663,15 @@ dependencies = [
|
|
|
|
|
|
|
|
|
|
[[package]] |
|
|
|
|
name = "tempfile" |
|
|
|
|
version = "3.3.0" |
|
|
|
|
version = "3.4.0" |
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
|
|
|
checksum = "5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4" |
|
|
|
|
checksum = "af18f7ae1acd354b992402e9ec5864359d693cd8a79dcbef59f76891701c1e95" |
|
|
|
|
dependencies = [ |
|
|
|
|
"cfg-if", |
|
|
|
|
"fastrand", |
|
|
|
|
"libc", |
|
|
|
|
"redox_syscall", |
|
|
|
|
"remove_dir_all", |
|
|
|
|
"winapi", |
|
|
|
|
"rustix", |
|
|
|
|
"windows-sys 0.42.0", |
|
|
|
|
] |
|
|
|
|
|
|
|
|
|
[[package]] |
|
|
|
|
@ -806,6 +847,87 @@ version = "0.4.0"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
|
|
|
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" |
|
|
|
|
|
|
|
|
|
[[package]] |
|
|
|
|
name = "windows-sys" |
|
|
|
|
version = "0.42.0" |
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
|
|
|
checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7" |
|
|
|
|
dependencies = [ |
|
|
|
|
"windows_aarch64_gnullvm", |
|
|
|
|
"windows_aarch64_msvc", |
|
|
|
|
"windows_i686_gnu", |
|
|
|
|
"windows_i686_msvc", |
|
|
|
|
"windows_x86_64_gnu", |
|
|
|
|
"windows_x86_64_gnullvm", |
|
|
|
|
"windows_x86_64_msvc", |
|
|
|
|
] |
|
|
|
|
|
|
|
|
|
[[package]] |
|
|
|
|
name = "windows-sys" |
|
|
|
|
version = "0.45.0" |
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
|
|
|
checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" |
|
|
|
|
dependencies = [ |
|
|
|
|
"windows-targets", |
|
|
|
|
] |
|
|
|
|
|
|
|
|
|
[[package]] |
|
|
|
|
name = "windows-targets" |
|
|
|
|
version = "0.42.1" |
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
|
|
|
checksum = "8e2522491fbfcd58cc84d47aeb2958948c4b8982e9a2d8a2a35bbaed431390e7" |
|
|
|
|
dependencies = [ |
|
|
|
|
"windows_aarch64_gnullvm", |
|
|
|
|
"windows_aarch64_msvc", |
|
|
|
|
"windows_i686_gnu", |
|
|
|
|
"windows_i686_msvc", |
|
|
|
|
"windows_x86_64_gnu", |
|
|
|
|
"windows_x86_64_gnullvm", |
|
|
|
|
"windows_x86_64_msvc", |
|
|
|
|
] |
|
|
|
|
|
|
|
|
|
[[package]] |
|
|
|
|
name = "windows_aarch64_gnullvm" |
|
|
|
|
version = "0.42.1" |
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
|
|
|
checksum = "8c9864e83243fdec7fc9c5444389dcbbfd258f745e7853198f365e3c4968a608" |
|
|
|
|
|
|
|
|
|
[[package]] |
|
|
|
|
name = "windows_aarch64_msvc" |
|
|
|
|
version = "0.42.1" |
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
|
|
|
checksum = "4c8b1b673ffc16c47a9ff48570a9d85e25d265735c503681332589af6253c6c7" |
|
|
|
|
|
|
|
|
|
[[package]] |
|
|
|
|
name = "windows_i686_gnu" |
|
|
|
|
version = "0.42.1" |
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
|
|
|
checksum = "de3887528ad530ba7bdbb1faa8275ec7a1155a45ffa57c37993960277145d640" |
|
|
|
|
|
|
|
|
|
[[package]] |
|
|
|
|
name = "windows_i686_msvc" |
|
|
|
|
version = "0.42.1" |
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
|
|
|
checksum = "bf4d1122317eddd6ff351aa852118a2418ad4214e6613a50e0191f7004372605" |
|
|
|
|
|
|
|
|
|
[[package]] |
|
|
|
|
name = "windows_x86_64_gnu" |
|
|
|
|
version = "0.42.1" |
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
|
|
|
checksum = "c1040f221285e17ebccbc2591ffdc2d44ee1f9186324dd3e84e99ac68d699c45" |
|
|
|
|
|
|
|
|
|
[[package]] |
|
|
|
|
name = "windows_x86_64_gnullvm" |
|
|
|
|
version = "0.42.1" |
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
|
|
|
checksum = "628bfdf232daa22b0d64fdb62b09fcc36bb01f05a3939e20ab73aaf9470d0463" |
|
|
|
|
|
|
|
|
|
[[package]] |
|
|
|
|
name = "windows_x86_64_msvc" |
|
|
|
|
version = "0.42.1" |
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
|
|
|
checksum = "447660ad36a13288b1db4d4248e857b510e8c3a225c822ba4fb748c0aafecffd" |
|
|
|
|
|
|
|
|
|
[[package]] |
|
|
|
|
name = "yansi" |
|
|
|
|
version = "0.5.1" |
|
|
|
|
|