Skip to content

Commit 1afa032

Browse files
committed
Auto merge of rust-lang#13996 - lnicola:bump-deps, r=lnicola
minor: Bump deps
2 parents 9a6294d + a9b96e1 commit 1afa032

File tree

13 files changed

+195
-213
lines changed

13 files changed

+195
-213
lines changed

Cargo.lock

+177-195
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/cfg/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ oorandom = "11.1.3"
2323
# We depend on both individually instead of using `features = ["derive"]` to microoptimize the
2424
# build graph: if the feature was enabled, syn would be built early on in the graph if `smolstr`
2525
# supports `arbitrary`. This way, we avoid feature unification.
26-
arbitrary = "1.1.7"
27-
derive_arbitrary = "1.1.6"
26+
arbitrary = "1.2.2"
27+
derive_arbitrary = "1.2.2"
2828

2929
# local deps
3030
mbe.workspace = true

crates/hir-def/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ hashbrown = { version = "0.12.1", default-features = false }
2525
indexmap = "1.9.1"
2626
itertools = "0.10.5"
2727
la-arena = { version = "0.3.0", path = "../../lib/la-arena" }
28-
once_cell = "1.15.0"
28+
once_cell = "1.17.0"
2929
rustc-hash = "1.1.0"
3030
smallvec = "1.10.0"
3131
tracing = "0.1.35"

crates/hir-ty/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ chalk-ir = "0.88.0"
2626
chalk-recursive = { version = "0.88.0", default-features = false }
2727
chalk-derive = "0.88.0"
2828
la-arena = { version = "0.3.0", path = "../../lib/la-arena" }
29-
once_cell = "1.15.0"
29+
once_cell = "1.17.0"
3030
typed-arena = "2.0.1"
3131
rustc_index = { version = "0.0.20221221", package = "hkalbasi-rustc-ap-rustc_index", default-features = false }
3232

crates/hir/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ either = "1.7.0"
1717
arrayvec = "0.7.2"
1818
itertools = "0.10.5"
1919
smallvec = "1.10.0"
20-
once_cell = "1.15.0"
20+
once_cell = "1.17.0"
2121

2222
# local deps
2323
base-db.workspace = true

crates/ide-completion/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ doctest = false
1515
cov-mark = "2.0.0-pre.1"
1616
itertools = "0.10.5"
1717

18-
once_cell = "1.15.0"
18+
once_cell = "1.17.0"
1919
smallvec = "1.10.0"
2020

2121

crates/ide-db/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ doctest = false
1414
[dependencies]
1515
cov-mark = "2.0.0-pre.1"
1616
tracing = "0.1.35"
17-
rayon = "1.5.3"
17+
rayon = "1.6.1"
1818
fst = { version = "0.4.7", default-features = false }
1919
rustc-hash = "1.1.0"
20-
once_cell = "1.15.0"
20+
once_cell = "1.17.0"
2121
either = "1.7.0"
2222
itertools = "0.10.5"
2323
arrayvec = "0.7.2"
@@ -31,7 +31,7 @@ parser.workspace = true
3131
profile.workspace = true
3232
stdx.workspace = true
3333
syntax.workspace = true
34-
text-edit .workspace = true
34+
text-edit.workspace = true
3535
# ide should depend only on the top-level `hir` package. if you need
3636
# something from some `hir-xxx` subpackage, reexport the API via `hir`.
3737
hir.workspace = true

crates/intern/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@ doctest = false
1616
# We need to freeze the version of the crate, as the raw-api feature is considered unstable
1717
dashmap = { version = "=5.4.0", features = ["raw-api"] }
1818
hashbrown = { version = "0.12.1", default-features = false }
19-
once_cell = "1.15.0"
19+
once_cell = "1.17.0"
2020
rustc-hash = "1.1.0"

crates/proc-macro-api/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ rust-version.workspace = true
1212
doctest = false
1313

1414
[dependencies]
15-
object = { version = "0.29.0", default-features = false, features = [
15+
object = { version = "0.30.2", default-features = false, features = [
1616
"std",
1717
"read_core",
1818
"elf",
@@ -23,7 +23,7 @@ serde = { version = "1.0.137", features = ["derive"] }
2323
serde_json = { version = "1.0.81", features = ["unbounded_depth"] }
2424
tracing = "0.1.37"
2525
memmap2 = "0.5.4"
26-
snap = "1.0.5"
26+
snap = "1.1.0"
2727

2828
# local deps
2929
paths.workspace = true

crates/proc-macro-srv/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ rust-version.workspace = true
1212
doctest = false
1313

1414
[dependencies]
15-
object = { version = "0.29.0", default-features = false, features = [
15+
object = { version = "0.30.2", default-features = false, features = [
1616
"std",
1717
"read_core",
1818
"elf",

crates/profile/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ rust-version.workspace = true
1212
doctest = false
1313

1414
[dependencies]
15-
once_cell = "1.15.0"
15+
once_cell = "1.17.0"
1616
cfg-if = "1.0.0"
1717
libc = "0.2.135"
1818
la-arena = { version = "0.3.0", path = "../../lib/la-arena" }

crates/rust-analyzer/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ rustc-hash = "1.1.0"
3232
serde = { version = "1.0.137", features = ["derive"] }
3333
serde_json = { version = "1.0.81", features = ["preserve_order"] }
3434
threadpool = "1.8.1"
35-
rayon = "1.5.3"
36-
num_cpus = "1.13.1"
35+
rayon = "1.6.1"
36+
num_cpus = "1.15.0"
3737
mimalloc = { version = "0.1.30", default-features = false, optional = true }
3838
lsp-server = { version = "0.7.0", path = "../../lib/lsp-server" }
3939
tracing = "0.1.35"

crates/syntax/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ itertools = "0.10.5"
1818
rowan = "0.15.10"
1919
rustc_lexer = { version = "725.0.0", package = "rustc-ap-rustc_lexer" }
2020
rustc-hash = "1.1.0"
21-
once_cell = "1.15.0"
21+
once_cell = "1.17.0"
2222
indexmap = "1.9.1"
2323
smol_str = "0.1.23"
2424

@@ -28,7 +28,7 @@ stdx.workspace = true
2828
text-edit.workspace = true
2929

3030
[dev-dependencies]
31-
rayon = "1.5.3"
31+
rayon = "1.6.1"
3232
expect-test = "1.4.0"
3333
proc-macro2 = "1.0.47"
3434
quote = "1.0.20"

0 commit comments

Comments
 (0)