diff options
Diffstat (limited to 'Cargo.lock')
-rw-r--r-- | Cargo.lock | 83 |
1 files changed, 83 insertions, 0 deletions
@@ -124,6 +124,40 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
124 | checksum = "328b822bdcba4d4e402be8d9adb6eebf269f969f8eadef977a553ff3c4fbcb58" | 124 | checksum = "328b822bdcba4d4e402be8d9adb6eebf269f969f8eadef977a553ff3c4fbcb58" |
125 | 125 | ||
126 | [[package]] | 126 | [[package]] |
127 | name = "crossbeam-channel" | ||
128 | version = "0.5.2" | ||
129 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
130 | checksum = "e54ea8bc3fb1ee042f5aace6e3c6e025d3874866da222930f70ce62aceba0bfa" | ||
131 | dependencies = [ | ||
132 | "cfg-if", | ||
133 | "crossbeam-utils", | ||
134 | ] | ||
135 | |||
136 | [[package]] | ||
137 | name = "crossbeam-deque" | ||
138 | version = "0.8.1" | ||
139 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
140 | checksum = "6455c0ca19f0d2fbf751b908d5c55c1f5cbc65e03c4225427254b46890bdde1e" | ||
141 | dependencies = [ | ||
142 | "cfg-if", | ||
143 | "crossbeam-epoch", | ||
144 | "crossbeam-utils", | ||
145 | ] | ||
146 | |||
147 | [[package]] | ||
148 | name = "crossbeam-epoch" | ||
149 | version = "0.9.7" | ||
150 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
151 | checksum = "c00d6d2ea26e8b151d99093005cb442fb9a37aeaca582a03ec70946f49ab5ed9" | ||
152 | dependencies = [ | ||
153 | "cfg-if", | ||
154 | "crossbeam-utils", | ||
155 | "lazy_static", | ||
156 | "memoffset", | ||
157 | "scopeguard", | ||
158 | ] | ||
159 | |||
160 | [[package]] | ||
127 | name = "crossbeam-utils" | 161 | name = "crossbeam-utils" |
128 | version = "0.8.5" | 162 | version = "0.8.5" |
129 | source = "registry+https://github.com/rust-lang/crates.io-index" | 163 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -140,6 +174,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
140 | checksum = "56899898ce76aaf4a0f24d914c97ea6ed976d42fec6ad33fcbb0a1103e07b2b0" | 174 | checksum = "56899898ce76aaf4a0f24d914c97ea6ed976d42fec6ad33fcbb0a1103e07b2b0" |
141 | 175 | ||
142 | [[package]] | 176 | [[package]] |
177 | name = "either" | ||
178 | version = "1.6.1" | ||
179 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
180 | checksum = "e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457" | ||
181 | |||
182 | [[package]] | ||
143 | name = "encode_unicode" | 183 | name = "encode_unicode" |
144 | version = "0.3.6" | 184 | version = "0.3.6" |
145 | source = "registry+https://github.com/rust-lang/crates.io-index" | 185 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -323,6 +363,16 @@ dependencies = [ | |||
323 | ] | 363 | ] |
324 | 364 | ||
325 | [[package]] | 365 | [[package]] |
366 | name = "num_cpus" | ||
367 | version = "1.13.1" | ||
368 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
369 | checksum = "19e64526ebdee182341572e50e9ad03965aa510cd94427a4549448f285e957a1" | ||
370 | dependencies = [ | ||
371 | "hermit-abi", | ||
372 | "libc", | ||
373 | ] | ||
374 | |||
375 | [[package]] | ||
326 | name = "once_cell" | 376 | name = "once_cell" |
327 | version = "1.8.0" | 377 | version = "1.8.0" |
328 | source = "registry+https://github.com/rust-lang/crates.io-index" | 378 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -380,6 +430,31 @@ dependencies = [ | |||
380 | ] | 430 | ] |
381 | 431 | ||
382 | [[package]] | 432 | [[package]] |
433 | name = "rayon" | ||
434 | version = "1.5.1" | ||
435 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
436 | checksum = "c06aca804d41dbc8ba42dfd964f0d01334eceb64314b9ecf7c5fad5188a06d90" | ||
437 | dependencies = [ | ||
438 | "autocfg", | ||
439 | "crossbeam-deque", | ||
440 | "either", | ||
441 | "rayon-core", | ||
442 | ] | ||
443 | |||
444 | [[package]] | ||
445 | name = "rayon-core" | ||
446 | version = "1.9.1" | ||
447 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
448 | checksum = "d78120e2c850279833f1dd3582f730c4ab53ed95aeaaaa862a2a5c71b1656d8e" | ||
449 | dependencies = [ | ||
450 | "crossbeam-channel", | ||
451 | "crossbeam-deque", | ||
452 | "crossbeam-utils", | ||
453 | "lazy_static", | ||
454 | "num_cpus", | ||
455 | ] | ||
456 | |||
457 | [[package]] | ||
383 | name = "regex" | 458 | name = "regex" |
384 | version = "1.5.4" | 459 | version = "1.5.4" |
385 | source = "registry+https://github.com/rust-lang/crates.io-index" | 460 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -442,6 +517,12 @@ dependencies = [ | |||
442 | ] | 517 | ] |
443 | 518 | ||
444 | [[package]] | 519 | [[package]] |
520 | name = "scopeguard" | ||
521 | version = "1.1.0" | ||
522 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
523 | checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" | ||
524 | |||
525 | [[package]] | ||
445 | name = "serde" | 526 | name = "serde" |
446 | version = "1.0.130" | 527 | version = "1.0.130" |
447 | source = "registry+https://github.com/rust-lang/crates.io-index" | 528 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -514,6 +595,7 @@ dependencies = [ | |||
514 | "ignore", | 595 | "ignore", |
515 | "insta", | 596 | "insta", |
516 | "lib", | 597 | "lib", |
598 | "rayon", | ||
517 | "rnix", | 599 | "rnix", |
518 | "serde", | 600 | "serde", |
519 | "serde_json", | 601 | "serde_json", |
@@ -672,6 +754,7 @@ name = "vfs" | |||
672 | version = "0.0.0" | 754 | version = "0.0.0" |
673 | dependencies = [ | 755 | dependencies = [ |
674 | "indexmap", | 756 | "indexmap", |
757 | "rayon", | ||
675 | ] | 758 | ] |
676 | 759 | ||
677 | [[package]] | 760 | [[package]] |