diff options
Diffstat (limited to 'Cargo.lock')
-rw-r--r-- | Cargo.lock | 65 |
1 files changed, 64 insertions, 1 deletions
@@ -105,6 +105,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
105 | checksum = "328b822bdcba4d4e402be8d9adb6eebf269f969f8eadef977a553ff3c4fbcb58" | 105 | checksum = "328b822bdcba4d4e402be8d9adb6eebf269f969f8eadef977a553ff3c4fbcb58" |
106 | 106 | ||
107 | [[package]] | 107 | [[package]] |
108 | name = "crossbeam-utils" | ||
109 | version = "0.8.5" | ||
110 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
111 | checksum = "d82cfc11ce7f2c3faef78d8a684447b40d503d9681acebed6cb728d45940c4db" | ||
112 | dependencies = [ | ||
113 | "cfg-if", | ||
114 | "lazy_static", | ||
115 | ] | ||
116 | |||
117 | [[package]] | ||
108 | name = "fnv" | 118 | name = "fnv" |
109 | version = "1.0.7" | 119 | version = "1.0.7" |
110 | source = "registry+https://github.com/rust-lang/crates.io-index" | 120 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -160,6 +170,24 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
160 | checksum = "cb56e1aa765b4b4f3aadfab769793b7087bb03a4ea4920644a6d238e2df5b9ed" | 170 | checksum = "cb56e1aa765b4b4f3aadfab769793b7087bb03a4ea4920644a6d238e2df5b9ed" |
161 | 171 | ||
162 | [[package]] | 172 | [[package]] |
173 | name = "ignore" | ||
174 | version = "0.4.18" | ||
175 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
176 | checksum = "713f1b139373f96a2e0ce3ac931cd01ee973c3c5dd7c40c0c2efe96ad2b6751d" | ||
177 | dependencies = [ | ||
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]] | ||
163 | name = "indexmap" | 191 | name = "indexmap" |
164 | version = "1.7.0" | 192 | version = "1.7.0" |
165 | source = "registry+https://github.com/rust-lang/crates.io-index" | 193 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -243,6 +271,12 @@ dependencies = [ | |||
243 | ] | 271 | ] |
244 | 272 | ||
245 | [[package]] | 273 | [[package]] |
274 | name = "once_cell" | ||
275 | version = "1.8.0" | ||
276 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
277 | checksum = "692fcb63b64b1758029e0a96ee63e049ce8c5948587f2f7208df04625e5f6b56" | ||
278 | |||
279 | [[package]] | ||
246 | name = "os_str_bytes" | 280 | name = "os_str_bytes" |
247 | version = "3.1.0" | 281 | version = "3.1.0" |
248 | source = "registry+https://github.com/rust-lang/crates.io-index" | 282 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -344,6 +378,15 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
344 | checksum = "71d301d4193d031abdd79ff7e3dd721168a9572ef3fe51a1517aba235bd8f86e" | 378 | checksum = "71d301d4193d031abdd79ff7e3dd721168a9572ef3fe51a1517aba235bd8f86e" |
345 | 379 | ||
346 | [[package]] | 380 | [[package]] |
381 | name = "same-file" | ||
382 | version = "1.0.6" | ||
383 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
384 | checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" | ||
385 | dependencies = [ | ||
386 | "winapi-util", | ||
387 | ] | ||
388 | |||
389 | [[package]] | ||
347 | name = "serde" | 390 | name = "serde" |
348 | version = "1.0.130" | 391 | version = "1.0.130" |
349 | source = "registry+https://github.com/rust-lang/crates.io-index" | 392 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -392,7 +435,7 @@ version = "0.3.5" | |||
392 | dependencies = [ | 435 | dependencies = [ |
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]] |
510 | name = "thread_local" | ||
511 | version = "1.1.3" | ||
512 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
513 | checksum = "8018d24e04c95ac8790716a5987d0fec4f8b27249ffa0f7d33f1369bdfb88cbd" | ||
514 | dependencies = [ | ||
515 | "once_cell", | ||
516 | ] | ||
517 | |||
518 | [[package]] | ||
467 | name = "unicode-segmentation" | 519 | name = "unicode-segmentation" |
468 | version = "1.8.0" | 520 | version = "1.8.0" |
469 | source = "registry+https://github.com/rust-lang/crates.io-index" | 521 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -501,6 +553,17 @@ dependencies = [ | |||
501 | ] | 553 | ] |
502 | 554 | ||
503 | [[package]] | 555 | [[package]] |
556 | name = "walkdir" | ||
557 | version = "2.3.2" | ||
558 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
559 | checksum = "808cf2735cd4b6866113f648b791c6adc5714537bc222d9347bb203386ffda56" | ||
560 | dependencies = [ | ||
561 | "same-file", | ||
562 | "winapi", | ||
563 | "winapi-util", | ||
564 | ] | ||
565 | |||
566 | [[package]] | ||
504 | name = "winapi" | 567 | name = "winapi" |
505 | version = "0.3.9" | 568 | version = "0.3.9" |
506 | source = "registry+https://github.com/rust-lang/crates.io-index" | 569 | source = "registry+https://github.com/rust-lang/crates.io-index" |