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