diff options
| author | Laurențiu Nicola <lnicola@dend.ro> | 2023-01-21 09:54:19 +0200 |
|---|---|---|
| committer | Laurențiu Nicola <lnicola@dend.ro> | 2023-01-21 14:05:22 +0200 |
| commit | 1431264646cffebebe636abc7ec5a72dc391736b (patch) | |
| tree | 42194bd8b24f6bb7f738dc316d45ab5b0103c8a7 | |
| parent | c5a182c56b64c97da0984403fa444685fe63032b (diff) | |
| download | rust-1431264646cffebebe636abc7ec5a72dc391736b.tar.gz rust-1431264646cffebebe636abc7ec5a72dc391736b.zip | |
Bump rayon
| -rw-r--r-- | Cargo.lock | 10 | ||||
| -rw-r--r-- | crates/ide-db/Cargo.toml | 2 | ||||
| -rw-r--r-- | crates/rust-analyzer/Cargo.toml | 2 | ||||
| -rw-r--r-- | crates/syntax/Cargo.toml | 2 |
4 files changed, 7 insertions, 9 deletions
diff --git a/Cargo.lock b/Cargo.lock index af13703db5c..50fc54db510 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1371,21 +1371,19 @@ dependencies = [ [[package]] name = "rayon" -version = "1.5.3" +version = "1.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bd99e5772ead8baa5215278c9b15bf92087709e9c1b2d1f97cdb5a183c933a7d" +checksum = "6db3a213adf02b3bcfd2d3846bb41cb22857d131789e01df434fb7e7bc0759b7" dependencies = [ - "autocfg", - "crossbeam-deque", "either", "rayon-core", ] [[package]] name = "rayon-core" -version = "1.9.3" +version = "1.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "258bcdb5ac6dad48491bb2992db6b7cf74878b0384908af124823d118c99683f" +checksum = "cac410af5d00ab6884528b4ab69d1e8e146e8d471201800fa1b4524126de6ad3" dependencies = [ "crossbeam-channel", "crossbeam-deque", diff --git a/crates/ide-db/Cargo.toml b/crates/ide-db/Cargo.toml index bedf5ffd934..9672bb9b7b5 100644 --- a/crates/ide-db/Cargo.toml +++ b/crates/ide-db/Cargo.toml @@ -14,7 +14,7 @@ doctest = false [dependencies] cov-mark = "2.0.0-pre.1" tracing = "0.1.35" -rayon = "1.5.3" +rayon = "1.6.1" fst = { version = "0.4.7", default-features = false } rustc-hash = "1.1.0" once_cell = "1.17.0" diff --git a/crates/rust-analyzer/Cargo.toml b/crates/rust-analyzer/Cargo.toml index c4d055252d3..e3aa880d005 100644 --- a/crates/rust-analyzer/Cargo.toml +++ b/crates/rust-analyzer/Cargo.toml @@ -32,7 +32,7 @@ rustc-hash = "1.1.0" serde = { version = "1.0.137", features = ["derive"] } serde_json = { version = "1.0.81", features = ["preserve_order"] } threadpool = "1.8.1" -rayon = "1.5.3" +rayon = "1.6.1" num_cpus = "1.15.0" mimalloc = { version = "0.1.30", default-features = false, optional = true } lsp-server = { version = "0.7.0", path = "../../lib/lsp-server" } diff --git a/crates/syntax/Cargo.toml b/crates/syntax/Cargo.toml index 26e5acebe0f..1a845a6ee71 100644 --- a/crates/syntax/Cargo.toml +++ b/crates/syntax/Cargo.toml @@ -28,7 +28,7 @@ stdx.workspace = true text-edit.workspace = true [dev-dependencies] -rayon = "1.5.3" +rayon = "1.6.1" expect-test = "1.4.0" proc-macro2 = "1.0.47" quote = "1.0.20" |
