Skip to content

Commit be035e8

Browse files
committed
Auto merge of rust-lang#118817 - lnicola:sync-from-ra, r=lnicola
Subtree update of `rust-analyzer` r? `@ghost`
2 parents a254cc5 + 71d98c5 commit be035e8

File tree

263 files changed

+9743
-6213
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

263 files changed

+9743
-6213
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 15 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ debug = 0
4242

4343
# ungrammar = { path = "../ungrammar" }
4444

45-
# salsa = { path = "../salsa" }
45+
# rust-analyzer-salsa = { path = "../salsa" }
4646

4747
[workspace.dependencies]
4848
# local crates
@@ -95,30 +95,34 @@ bitflags = "2.4.1"
9595
cargo_metadata = "0.18.1"
9696
dissimilar = "1.0.7"
9797
either = "1.9.0"
98+
hashbrown = { version = "0.14", features = [
99+
"inline-more",
100+
], default-features = false }
98101
indexmap = "2.1.0"
99102
itertools = "0.12.0"
100103
libc = "0.2.150"
104+
nohash-hasher = "0.2.0"
105+
rayon = "1.8.0"
106+
rust-analyzer-salsa = "0.17.0-pre.4"
107+
rustc-hash = "1.1.0"
108+
serde = { version = "1.0.192", features = ["derive"] }
109+
serde_json = "1.0.108"
101110
smallvec = { version = "1.10.0", features = [
102111
"const_new",
103112
"union",
104113
"const_generics",
105114
] }
115+
smol_str = "0.2.0"
116+
text-size = "1.1.1"
106117
tracing = "0.1.40"
107118
tracing-tree = "0.3.0"
108119
tracing-subscriber = { version = "0.3.18", default-features = false, features = [
109120
"registry",
110121
"fmt",
111122
"tracing-log",
112123
] }
113-
smol_str = "0.2.0"
114-
nohash-hasher = "0.2.0"
115-
text-size = "1.1.1"
116-
rayon = "1.8.0"
117-
serde = { version = "1.0.192", features = ["derive"] }
118-
serde_json = "1.0.108"
119124
triomphe = { version = "0.1.10", default-features = false, features = ["std"] }
120-
# can't upgrade due to dashmap depending on 0.12.3 currently
121-
hashbrown = { version = "0.12.3", features = [
122-
"inline-more",
123-
], default-features = false }
124125
xshell = "0.2.5"
126+
127+
# We need to freeze the version of the crate, as the raw-api feature is considered unstable
128+
dashmap = { version = "=5.5.3", features = ["raw-api"] }

0 commit comments

Comments
 (0)