aboutsummaryrefslogtreecommitdiff
path: root/Cargo.lock
diff options
context:
space:
mode:
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock65
1 files changed, 64 insertions, 1 deletions
diff --git a/Cargo.lock b/Cargo.lock
index dd9bdc4..0cde4c2 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -105,6 +105,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
105checksum = "328b822bdcba4d4e402be8d9adb6eebf269f969f8eadef977a553ff3c4fbcb58" 105checksum = "328b822bdcba4d4e402be8d9adb6eebf269f969f8eadef977a553ff3c4fbcb58"
106 106
107[[package]] 107[[package]]
108name = "crossbeam-utils"
109version = "0.8.5"
110source = "registry+https://github.com/rust-lang/crates.io-index"
111checksum = "d82cfc11ce7f2c3faef78d8a684447b40d503d9681acebed6cb728d45940c4db"
112dependencies = [
113 "cfg-if",
114 "lazy_static",
115]
116
117[[package]]
108name = "fnv" 118name = "fnv"
109version = "1.0.7" 119version = "1.0.7"
110source = "registry+https://github.com/rust-lang/crates.io-index" 120source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -160,6 +170,24 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
160checksum = "cb56e1aa765b4b4f3aadfab769793b7087bb03a4ea4920644a6d238e2df5b9ed" 170checksum = "cb56e1aa765b4b4f3aadfab769793b7087bb03a4ea4920644a6d238e2df5b9ed"
161 171
162[[package]] 172[[package]]
173name = "ignore"
174version = "0.4.18"
175source = "registry+https://github.com/rust-lang/crates.io-index"
176checksum = "713f1b139373f96a2e0ce3ac931cd01ee973c3c5dd7c40c0c2efe96ad2b6751d"
177dependencies = [
178 "crossbeam-utils",
179 "globset",
180 "lazy_static",
181 "log",
182 "memchr",
183 "regex",
184 "same-file",
185 "thread_local",
186 "walkdir",
187 "winapi-util",
188]
189
190[[package]]
163name = "indexmap" 191name = "indexmap"
164version = "1.7.0" 192version = "1.7.0"
165source = "registry+https://github.com/rust-lang/crates.io-index" 193source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -243,6 +271,12 @@ dependencies = [
243] 271]
244 272
245[[package]] 273[[package]]
274name = "once_cell"
275version = "1.8.0"
276source = "registry+https://github.com/rust-lang/crates.io-index"
277checksum = "692fcb63b64b1758029e0a96ee63e049ce8c5948587f2f7208df04625e5f6b56"
278
279[[package]]
246name = "os_str_bytes" 280name = "os_str_bytes"
247version = "3.1.0" 281version = "3.1.0"
248source = "registry+https://github.com/rust-lang/crates.io-index" 282source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -344,6 +378,15 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
344checksum = "71d301d4193d031abdd79ff7e3dd721168a9572ef3fe51a1517aba235bd8f86e" 378checksum = "71d301d4193d031abdd79ff7e3dd721168a9572ef3fe51a1517aba235bd8f86e"
345 379
346[[package]] 380[[package]]
381name = "same-file"
382version = "1.0.6"
383source = "registry+https://github.com/rust-lang/crates.io-index"
384checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
385dependencies = [
386 "winapi-util",
387]
388
389[[package]]
347name = "serde" 390name = "serde"
348version = "1.0.130" 391version = "1.0.130"
349source = "registry+https://github.com/rust-lang/crates.io-index" 392source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -392,7 +435,7 @@ version = "0.3.5"
392dependencies = [ 435dependencies = [
393 "ariadne", 436 "ariadne",
394 "clap", 437 "clap",
395 "globset", 438 "ignore",
396 "lib", 439 "lib",
397 "rnix", 440 "rnix",
398 "serde", 441 "serde",
@@ -464,6 +507,15 @@ dependencies = [
464] 507]
465 508
466[[package]] 509[[package]]
510name = "thread_local"
511version = "1.1.3"
512source = "registry+https://github.com/rust-lang/crates.io-index"
513checksum = "8018d24e04c95ac8790716a5987d0fec4f8b27249ffa0f7d33f1369bdfb88cbd"
514dependencies = [
515 "once_cell",
516]
517
518[[package]]
467name = "unicode-segmentation" 519name = "unicode-segmentation"
468version = "1.8.0" 520version = "1.8.0"
469source = "registry+https://github.com/rust-lang/crates.io-index" 521source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -501,6 +553,17 @@ dependencies = [
501] 553]
502 554
503[[package]] 555[[package]]
556name = "walkdir"
557version = "2.3.2"
558source = "registry+https://github.com/rust-lang/crates.io-index"
559checksum = "808cf2735cd4b6866113f648b791c6adc5714537bc222d9347bb203386ffda56"
560dependencies = [
561 "same-file",
562 "winapi",
563 "winapi-util",
564]
565
566[[package]]
504name = "winapi" 567name = "winapi"
505version = "0.3.9" 568version = "0.3.9"
506source = "registry+https://github.com/rust-lang/crates.io-index" 569source = "registry+https://github.com/rust-lang/crates.io-index"