Skip to content

Commit 8823db6

Browse files
committed
Bump more deps
1 parent 4fa3f1e commit 8823db6

File tree

13 files changed

+58
-48
lines changed

13 files changed

+58
-48
lines changed

Cargo.lock

Lines changed: 44 additions & 29 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,5 +97,7 @@ text-size = "1.1.0"
9797
serde = { version = "1.0.160", features = ["derive"] }
9898
serde_json = "1.0.96"
9999
triomphe = { version = "0.1.8", default-features = false, features = ["std"] }
100+
# can't upgrade due to dashmap depending on 0.12.3 currently
101+
hashbrown = { version = "0.12.3", features = ["inline-more"], default-features = false }
100102

101103
rustc_lexer = { version = "0.1.0", package = "ra-ap-rustc_lexer" }

crates/flycheck/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ rust-version.workspace = true
1212
doctest = false
1313

1414
[dependencies]
15-
crossbeam-channel = "0.5.5"
15+
crossbeam-channel = "0.5.8"
1616
tracing = "0.1.37"
1717
cargo_metadata = "0.15.4"
1818
rustc-hash = "1.1.0"

crates/hir-def/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,14 @@ dashmap = { version = "=5.4.0", features = ["raw-api"] }
2121
drop_bomb = "0.1.5"
2222
either = "1.7.0"
2323
fst = { version = "0.4.7", default-features = false }
24-
hashbrown = { version = "0.12.1", default-features = false }
2524
indexmap = "1.9.1"
2625
itertools = "0.10.5"
2726
la-arena.workspace = true
2827
once_cell = "1.17.0"
2928
rustc-hash = "1.1.0"
30-
smallvec.workspace = true
3129
tracing = "0.1.35"
30+
smallvec.workspace = true
31+
hashbrown.workspace = true
3232
triomphe.workspace = true
3333

3434
rustc_abi = { version = "0.0.20221221", package = "hkalbasi-rustc-ap-rustc_abi", default-features = false }

crates/hir-expand/Cargo.toml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,7 @@ either = "1.7.0"
1818
rustc-hash = "1.1.0"
1919
la-arena.workspace = true
2020
itertools = "0.10.5"
21-
hashbrown = { version = "0.12.1", features = [
22-
"inline-more",
23-
], default-features = false }
21+
hashbrown.workspace = true
2422
smallvec.workspace = true
2523
triomphe.workspace = true
2624

crates/hir/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ arrayvec = "0.7.2"
1818
itertools = "0.10.5"
1919
smallvec.workspace = true
2020
triomphe.workspace = true
21-
once_cell = "1.17.0"
21+
once_cell = "1.17.1"
2222

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

crates/intern/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ doctest = false
1515
[dependencies]
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"] }
18-
hashbrown = { version = "0.12.1", default-features = false }
18+
hashbrown.workspace = true
1919
once_cell = "1.17.0"
2020
rustc-hash = "1.1.0"
2121
triomphe.workspace = true

crates/proc-macro-api/Cargo.toml

Lines changed: 1 addition & 1 deletion
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.30.2", default-features = false, features = [
15+
object = { version = "0.31.0", default-features = false, features = [
1616
"std",
1717
"read_core",
1818
"elf",

crates/proc-macro-srv/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@ rust-version.workspace = true
1212
doctest = false
1313

1414
[dependencies]
15-
object = { version = "0.30.2", default-features = false, features = [
15+
object = { version = "0.31.0", default-features = false, features = [
1616
"std",
1717
"read_core",
1818
"elf",
1919
"macho",
2020
"pe",
2121
] }
22-
libloading = "0.7.3"
22+
libloading = "0.8.0"
2323
memmap2 = "0.5.4"
2424

2525
stdx.workspace = true

crates/profile/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ countme = { version = "3.0.1", features = ["enable"] }
2020
jemalloc-ctl = { version = "0.5.0", package = "tikv-jemalloc-ctl", optional = true }
2121

2222
[target.'cfg(target_os = "linux")'.dependencies]
23-
perf-event = "=0.4.7"
23+
perf-event = "=0.4.8"
2424

2525
[target.'cfg(windows)'.dependencies]
2626
winapi = { version = "0.3.9", features = ["processthreadsapi", "psapi"] }

0 commit comments

Comments
 (0)