|
|
@@ -26,6 +26,54 @@ dependencies = [
|
|
|
"winapi",
|
|
|
]
|
|
|
|
|
|
+[[package]]
|
|
|
+name = "anstream"
|
|
|
+version = "0.5.0"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "b1f58811cfac344940f1a400b6e6231ce35171f614f26439e80f8c1465c5cc0c"
|
|
|
+dependencies = [
|
|
|
+ "anstyle",
|
|
|
+ "anstyle-parse",
|
|
|
+ "anstyle-query",
|
|
|
+ "anstyle-wincon",
|
|
|
+ "colorchoice",
|
|
|
+ "utf8parse",
|
|
|
+]
|
|
|
+
|
|
|
+[[package]]
|
|
|
+name = "anstyle"
|
|
|
+version = "1.0.3"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "b84bf0a05bbb2a83e5eb6fa36bb6e87baa08193c35ff52bbf6b38d8af2890e46"
|
|
|
+
|
|
|
+[[package]]
|
|
|
+name = "anstyle-parse"
|
|
|
+version = "0.2.1"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "938874ff5980b03a87c5524b3ae5b59cf99b1d6bc836848df7bc5ada9643c333"
|
|
|
+dependencies = [
|
|
|
+ "utf8parse",
|
|
|
+]
|
|
|
+
|
|
|
+[[package]]
|
|
|
+name = "anstyle-query"
|
|
|
+version = "1.0.0"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "5ca11d4be1bab0c8bc8734a9aa7bf4ee8316d462a08c6ac5052f888fef5b494b"
|
|
|
+dependencies = [
|
|
|
+ "windows-sys",
|
|
|
+]
|
|
|
+
|
|
|
+[[package]]
|
|
|
+name = "anstyle-wincon"
|
|
|
+version = "2.1.0"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "58f54d10c6dfa51283a066ceab3ec1ab78d13fae00aa49243a45e4571fb79dfd"
|
|
|
+dependencies = [
|
|
|
+ "anstyle",
|
|
|
+ "windows-sys",
|
|
|
+]
|
|
|
+
|
|
|
[[package]]
|
|
|
name = "autocfg"
|
|
|
version = "1.1.0"
|
|
|
@@ -83,12 +131,70 @@ dependencies = [
|
|
|
"windows-targets",
|
|
|
]
|
|
|
|
|
|
+[[package]]
|
|
|
+name = "colorchoice"
|
|
|
+version = "1.0.0"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7"
|
|
|
+
|
|
|
+[[package]]
|
|
|
+name = "content_inspector"
|
|
|
+version = "0.2.4"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "b7bda66e858c683005a53a9a60c69a4aca7eeaa45d124526e389f7aec8e62f38"
|
|
|
+dependencies = [
|
|
|
+ "memchr",
|
|
|
+]
|
|
|
+
|
|
|
[[package]]
|
|
|
name = "core-foundation-sys"
|
|
|
version = "0.8.4"
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa"
|
|
|
|
|
|
+[[package]]
|
|
|
+name = "crossbeam-channel"
|
|
|
+version = "0.5.8"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "a33c2bf77f2df06183c3aa30d1e96c0695a313d4f9c453cc3762a6db39f99200"
|
|
|
+dependencies = [
|
|
|
+ "cfg-if",
|
|
|
+ "crossbeam-utils",
|
|
|
+]
|
|
|
+
|
|
|
+[[package]]
|
|
|
+name = "crossbeam-deque"
|
|
|
+version = "0.8.3"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "ce6fd6f855243022dcecf8702fef0c297d4338e226845fe067f6341ad9fa0cef"
|
|
|
+dependencies = [
|
|
|
+ "cfg-if",
|
|
|
+ "crossbeam-epoch",
|
|
|
+ "crossbeam-utils",
|
|
|
+]
|
|
|
+
|
|
|
+[[package]]
|
|
|
+name = "crossbeam-epoch"
|
|
|
+version = "0.9.15"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "ae211234986c545741a7dc064309f67ee1e5ad243d0e48335adc0484d960bcc7"
|
|
|
+dependencies = [
|
|
|
+ "autocfg",
|
|
|
+ "cfg-if",
|
|
|
+ "crossbeam-utils",
|
|
|
+ "memoffset",
|
|
|
+ "scopeguard",
|
|
|
+]
|
|
|
+
|
|
|
+[[package]]
|
|
|
+name = "crossbeam-utils"
|
|
|
+version = "0.8.16"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "5a22b2d63d4d1dc0b7f1b6b2747dd0088008a9be28b6ddf0b1e7d335e3037294"
|
|
|
+dependencies = [
|
|
|
+ "cfg-if",
|
|
|
+]
|
|
|
+
|
|
|
[[package]]
|
|
|
name = "datetime"
|
|
|
version = "0.5.2"
|
|
|
@@ -96,10 +202,28 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
checksum = "44c3f7a77f3e57fedf80e09136f2d8777ebf621207306f6d96d610af048354bc"
|
|
|
dependencies = [
|
|
|
"libc",
|
|
|
- "redox_syscall",
|
|
|
+ "redox_syscall 0.1.57",
|
|
|
"winapi",
|
|
|
]
|
|
|
|
|
|
+[[package]]
|
|
|
+name = "dunce"
|
|
|
+version = "1.0.4"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "56ce8c6da7551ec6c462cbaf3bfbc75131ebbfa1c944aeaa9dab51ca1c5f0c3b"
|
|
|
+
|
|
|
+[[package]]
|
|
|
+name = "either"
|
|
|
+version = "1.9.0"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07"
|
|
|
+
|
|
|
+[[package]]
|
|
|
+name = "equivalent"
|
|
|
+version = "1.0.1"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
|
|
|
+
|
|
|
[[package]]
|
|
|
name = "errno"
|
|
|
version = "0.3.3"
|
|
|
@@ -143,12 +267,31 @@ dependencies = [
|
|
|
"term_grid",
|
|
|
"terminal_size",
|
|
|
"timeago",
|
|
|
+ "trycmd",
|
|
|
"unicode-width",
|
|
|
"urlencoding",
|
|
|
"uzers",
|
|
|
"zoneinfo_compiled",
|
|
|
]
|
|
|
|
|
|
+[[package]]
|
|
|
+name = "fastrand"
|
|
|
+version = "2.0.0"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "6999dc1837253364c2ebb0704ba97994bd874e8f195d665c50b7548f6ea92764"
|
|
|
+
|
|
|
+[[package]]
|
|
|
+name = "filetime"
|
|
|
+version = "0.2.22"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "d4029edd3e734da6fe05b6cd7bd2960760a616bd2ddd0d59a0124746d6272af0"
|
|
|
+dependencies = [
|
|
|
+ "cfg-if",
|
|
|
+ "libc",
|
|
|
+ "redox_syscall 0.3.5",
|
|
|
+ "windows-sys",
|
|
|
+]
|
|
|
+
|
|
|
[[package]]
|
|
|
name = "form_urlencoded"
|
|
|
version = "1.0.1"
|
|
|
@@ -189,12 +332,34 @@ version = "0.3.1"
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
|
|
|
|
|
|
+[[package]]
|
|
|
+name = "hashbrown"
|
|
|
+version = "0.14.0"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "2c6201b9ff9fd90a5a3bac2e56a830d0caa509576f0e503818ee82c181b3437a"
|
|
|
+
|
|
|
[[package]]
|
|
|
name = "hermit-abi"
|
|
|
version = "0.3.2"
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
checksum = "443144c8cdadd93ebf52ddb4056d257f5b52c04d3c804e657d19eb73fc33668b"
|
|
|
|
|
|
+[[package]]
|
|
|
+name = "humantime"
|
|
|
+version = "2.1.0"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
|
|
|
+
|
|
|
+[[package]]
|
|
|
+name = "humantime-serde"
|
|
|
+version = "1.1.1"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "57a3db5ea5923d99402c94e9feb261dc5ee9b4efa158b0315f788cf549cc200c"
|
|
|
+dependencies = [
|
|
|
+ "humantime",
|
|
|
+ "serde",
|
|
|
+]
|
|
|
+
|
|
|
[[package]]
|
|
|
name = "iana-time-zone"
|
|
|
version = "0.1.57"
|
|
|
@@ -229,6 +394,16 @@ dependencies = [
|
|
|
"unicode-normalization",
|
|
|
]
|
|
|
|
|
|
+[[package]]
|
|
|
+name = "indexmap"
|
|
|
+version = "2.0.0"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "d5477fe2230a79769d8dc68e0eabf5437907c0457a5614a9e8dddb67f65eb65d"
|
|
|
+dependencies = [
|
|
|
+ "equivalent",
|
|
|
+ "hashbrown",
|
|
|
+]
|
|
|
+
|
|
|
[[package]]
|
|
|
name = "io-lifetimes"
|
|
|
version = "1.0.11"
|
|
|
@@ -301,6 +476,12 @@ version = "0.3.8"
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
checksum = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519"
|
|
|
|
|
|
+[[package]]
|
|
|
+name = "linux-raw-sys"
|
|
|
+version = "0.4.7"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "1a9bad9f94746442c783ca431b22403b519cd7fbeed0533fdd6328b2f2212128"
|
|
|
+
|
|
|
[[package]]
|
|
|
name = "locale"
|
|
|
version = "0.2.2"
|
|
|
@@ -322,12 +503,33 @@ version = "0.1.8"
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
checksum = "7ffc5c5338469d4d3ea17d269fa8ea3512ad247247c30bd2df69e68309ed0a08"
|
|
|
|
|
|
+[[package]]
|
|
|
+name = "memchr"
|
|
|
+version = "2.6.3"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "8f232d6ef707e1956a43342693d2a31e72989554d58299d7a88738cc95b0d35c"
|
|
|
+
|
|
|
+[[package]]
|
|
|
+name = "memoffset"
|
|
|
+version = "0.9.0"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "5a634b1c61a95585bd15607c6ab0c4e5b226e695ff2800ba0cdccddf208c406c"
|
|
|
+dependencies = [
|
|
|
+ "autocfg",
|
|
|
+]
|
|
|
+
|
|
|
[[package]]
|
|
|
name = "natord"
|
|
|
version = "1.0.9"
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
checksum = "308d96db8debc727c3fd9744aac51751243420e46edf401010908da7f8d5e57c"
|
|
|
|
|
|
+[[package]]
|
|
|
+name = "normalize-line-endings"
|
|
|
+version = "0.3.0"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "61807f77802ff30975e01f4f071c8ba10c022052f98b3294119f3e615d13e5be"
|
|
|
+
|
|
|
[[package]]
|
|
|
name = "num-traits"
|
|
|
version = "0.2.14"
|
|
|
@@ -382,6 +584,16 @@ dependencies = [
|
|
|
"vcpkg",
|
|
|
]
|
|
|
|
|
|
+[[package]]
|
|
|
+name = "os_pipe"
|
|
|
+version = "1.1.4"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "0ae859aa07428ca9a929b936690f8b12dc5f11dd8c6992a18ca93919f28bc177"
|
|
|
+dependencies = [
|
|
|
+ "libc",
|
|
|
+ "windows-sys",
|
|
|
+]
|
|
|
+
|
|
|
[[package]]
|
|
|
name = "partition-identity"
|
|
|
version = "0.3.0"
|
|
|
@@ -487,12 +699,43 @@ version = "0.6.4"
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
|
|
|
|
+[[package]]
|
|
|
+name = "rayon"
|
|
|
+version = "1.7.0"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "1d2df5196e37bcc87abebc0053e20787d73847bb33134a69841207dd0a47f03b"
|
|
|
+dependencies = [
|
|
|
+ "either",
|
|
|
+ "rayon-core",
|
|
|
+]
|
|
|
+
|
|
|
+[[package]]
|
|
|
+name = "rayon-core"
|
|
|
+version = "1.11.0"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "4b8f95bd6966f5c87776639160a66bd8ab9895d9d4ab01ddba9fc60661aebe8d"
|
|
|
+dependencies = [
|
|
|
+ "crossbeam-channel",
|
|
|
+ "crossbeam-deque",
|
|
|
+ "crossbeam-utils",
|
|
|
+ "num_cpus",
|
|
|
+]
|
|
|
+
|
|
|
[[package]]
|
|
|
name = "redox_syscall"
|
|
|
version = "0.1.57"
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
checksum = "41cc0f7e4d5d4544e8861606a285bb08d3e70712ccc7d2b84d7c0ccfaf4b05ce"
|
|
|
|
|
|
+[[package]]
|
|
|
+name = "redox_syscall"
|
|
|
+version = "0.3.5"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29"
|
|
|
+dependencies = [
|
|
|
+ "bitflags 1.3.2",
|
|
|
+]
|
|
|
+
|
|
|
[[package]]
|
|
|
name = "rustix"
|
|
|
version = "0.37.23"
|
|
|
@@ -503,22 +746,122 @@ dependencies = [
|
|
|
"errno",
|
|
|
"io-lifetimes",
|
|
|
"libc",
|
|
|
- "linux-raw-sys",
|
|
|
+ "linux-raw-sys 0.3.8",
|
|
|
+ "windows-sys",
|
|
|
+]
|
|
|
+
|
|
|
+[[package]]
|
|
|
+name = "rustix"
|
|
|
+version = "0.38.13"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "d7db8590df6dfcd144d22afd1b83b36c21a18d7cbc1dc4bb5295a8712e9eb662"
|
|
|
+dependencies = [
|
|
|
+ "bitflags 2.4.0",
|
|
|
+ "errno",
|
|
|
+ "libc",
|
|
|
+ "linux-raw-sys 0.4.7",
|
|
|
"windows-sys",
|
|
|
]
|
|
|
|
|
|
+[[package]]
|
|
|
+name = "same-file"
|
|
|
+version = "1.0.6"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
|
+dependencies = [
|
|
|
+ "winapi-util",
|
|
|
+]
|
|
|
+
|
|
|
[[package]]
|
|
|
name = "scoped_threadpool"
|
|
|
version = "0.1.9"
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
checksum = "1d51f5df5af43ab3f1360b429fa5e0152ac5ce8c0bd6485cae490332e96846a8"
|
|
|
|
|
|
+[[package]]
|
|
|
+name = "scopeguard"
|
|
|
+version = "1.2.0"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
|
+
|
|
|
+[[package]]
|
|
|
+name = "serde"
|
|
|
+version = "1.0.188"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "cf9e0fcba69a370eed61bcf2b728575f726b50b55cba78064753d708ddc7549e"
|
|
|
+dependencies = [
|
|
|
+ "serde_derive",
|
|
|
+]
|
|
|
+
|
|
|
+[[package]]
|
|
|
+name = "serde_derive"
|
|
|
+version = "1.0.188"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "4eca7ac642d82aa35b60049a6eccb4be6be75e599bd2e9adb5f875a737654af2"
|
|
|
+dependencies = [
|
|
|
+ "proc-macro2",
|
|
|
+ "quote",
|
|
|
+ "syn",
|
|
|
+]
|
|
|
+
|
|
|
+[[package]]
|
|
|
+name = "serde_spanned"
|
|
|
+version = "0.6.3"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "96426c9936fd7a0124915f9185ea1d20aa9445cc9821142f0a73bc9207a2e186"
|
|
|
+dependencies = [
|
|
|
+ "serde",
|
|
|
+]
|
|
|
+
|
|
|
+[[package]]
|
|
|
+name = "shlex"
|
|
|
+version = "1.2.0"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "a7cee0529a6d40f580e7a5e6c495c8fbfe21b7b52795ed4bb5e62cdf92bc6380"
|
|
|
+
|
|
|
+[[package]]
|
|
|
+name = "similar"
|
|
|
+version = "2.2.1"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "420acb44afdae038210c99e69aae24109f32f15500aa708e81d46c9f29d55fcf"
|
|
|
+
|
|
|
[[package]]
|
|
|
name = "siphasher"
|
|
|
version = "0.3.11"
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d"
|
|
|
|
|
|
+[[package]]
|
|
|
+name = "snapbox"
|
|
|
+version = "0.4.12"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "ad90eb3a2e3a8031d636d45bd4832751aefd58a291b553f7305a2bacae21aff3"
|
|
|
+dependencies = [
|
|
|
+ "anstream",
|
|
|
+ "anstyle",
|
|
|
+ "content_inspector",
|
|
|
+ "dunce",
|
|
|
+ "filetime",
|
|
|
+ "libc",
|
|
|
+ "normalize-line-endings",
|
|
|
+ "os_pipe",
|
|
|
+ "similar",
|
|
|
+ "snapbox-macros",
|
|
|
+ "tempfile",
|
|
|
+ "wait-timeout",
|
|
|
+ "walkdir",
|
|
|
+ "windows-sys",
|
|
|
+]
|
|
|
+
|
|
|
+[[package]]
|
|
|
+name = "snapbox-macros"
|
|
|
+version = "0.3.5"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "95f4ffd811b87da98d0e48285134b7847954bd76e843bb794a893b47ca3ee325"
|
|
|
+dependencies = [
|
|
|
+ "anstream",
|
|
|
+]
|
|
|
+
|
|
|
[[package]]
|
|
|
name = "syn"
|
|
|
version = "2.0.29"
|
|
|
@@ -530,6 +873,19 @@ dependencies = [
|
|
|
"unicode-ident",
|
|
|
]
|
|
|
|
|
|
+[[package]]
|
|
|
+name = "tempfile"
|
|
|
+version = "3.8.0"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "cb94d2f3cc536af71caac6b6fcebf65860b347e7ce0cc9ebe8f70d3e521054ef"
|
|
|
+dependencies = [
|
|
|
+ "cfg-if",
|
|
|
+ "fastrand",
|
|
|
+ "redox_syscall 0.3.5",
|
|
|
+ "rustix 0.38.13",
|
|
|
+ "windows-sys",
|
|
|
+]
|
|
|
+
|
|
|
[[package]]
|
|
|
name = "term_grid"
|
|
|
version = "0.1.7"
|
|
|
@@ -545,7 +901,7 @@ version = "0.2.6"
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
checksum = "8e6bf6f19e9f8ed8d4048dc22981458ebcf406d67e94cd422e5ecd73d63b3237"
|
|
|
dependencies = [
|
|
|
- "rustix",
|
|
|
+ "rustix 0.37.23",
|
|
|
"windows-sys",
|
|
|
]
|
|
|
|
|
|
@@ -590,6 +946,44 @@ version = "0.1.0"
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
|
|
|
|
|
|
+[[package]]
|
|
|
+name = "toml_datetime"
|
|
|
+version = "0.6.3"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "7cda73e2f1397b1262d6dfdcef8aafae14d1de7748d66822d3bfeeb6d03e5e4b"
|
|
|
+dependencies = [
|
|
|
+ "serde",
|
|
|
+]
|
|
|
+
|
|
|
+[[package]]
|
|
|
+name = "toml_edit"
|
|
|
+version = "0.19.15"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421"
|
|
|
+dependencies = [
|
|
|
+ "indexmap",
|
|
|
+ "serde",
|
|
|
+ "serde_spanned",
|
|
|
+ "toml_datetime",
|
|
|
+ "winnow",
|
|
|
+]
|
|
|
+
|
|
|
+[[package]]
|
|
|
+name = "trycmd"
|
|
|
+version = "0.14.17"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "bc6a42f89ccf3c6ee115608a68e256c172734d525a4ac36d4a17a6d4a8108149"
|
|
|
+dependencies = [
|
|
|
+ "glob",
|
|
|
+ "humantime",
|
|
|
+ "humantime-serde",
|
|
|
+ "rayon",
|
|
|
+ "serde",
|
|
|
+ "shlex",
|
|
|
+ "snapbox",
|
|
|
+ "toml_edit",
|
|
|
+]
|
|
|
+
|
|
|
[[package]]
|
|
|
name = "unicode-bidi"
|
|
|
version = "0.3.5"
|
|
|
@@ -638,6 +1032,12 @@ version = "2.1.3"
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da"
|
|
|
|
|
|
+[[package]]
|
|
|
+name = "utf8parse"
|
|
|
+version = "0.2.1"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a"
|
|
|
+
|
|
|
[[package]]
|
|
|
name = "uzers"
|
|
|
version = "0.11.3"
|
|
|
@@ -654,6 +1054,25 @@ version = "0.2.12"
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
checksum = "cbdbff6266a24120518560b5dc983096efb98462e51d0d68169895b237be3e5d"
|
|
|
|
|
|
+[[package]]
|
|
|
+name = "wait-timeout"
|
|
|
+version = "0.2.0"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "9f200f5b12eb75f8c1ed65abd4b2db8a6e1b138a20de009dacee265a2498f3f6"
|
|
|
+dependencies = [
|
|
|
+ "libc",
|
|
|
+]
|
|
|
+
|
|
|
+[[package]]
|
|
|
+name = "walkdir"
|
|
|
+version = "2.4.0"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "d71d857dc86794ca4c280d616f7da00d2dbfd8cd788846559a6813e6aa4b54ee"
|
|
|
+dependencies = [
|
|
|
+ "same-file",
|
|
|
+ "winapi-util",
|
|
|
+]
|
|
|
+
|
|
|
[[package]]
|
|
|
name = "wasm-bindgen"
|
|
|
version = "0.2.87"
|
|
|
@@ -724,6 +1143,15 @@ 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"
|
|
|
@@ -805,6 +1233,15 @@ version = "0.48.5"
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
|
|
|
|
|
|
+[[package]]
|
|
|
+name = "winnow"
|
|
|
+version = "0.5.15"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "7c2e3184b9c4e92ad5167ca73039d0c42476302ab603e2fec4487511f38ccefc"
|
|
|
+dependencies = [
|
|
|
+ "memchr",
|
|
|
+]
|
|
|
+
|
|
|
[[package]]
|
|
|
name = "zoneinfo_compiled"
|
|
|
version = "0.5.1"
|