Skip to content
This repository was archived by the owner on May 28, 2025. It is now read-only.

Commit e5c6507

Browse files
committed
Disconnect library crate dependencies from workspace dependencies
1 parent 0953e85 commit e5c6507

File tree

4 files changed

+18
-18
lines changed

4 files changed

+18
-18
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ smallvec = { version = "1.10.0", features = [
9494
smol_str = "0.2.0"
9595
nohash-hasher = "0.2.0"
9696
text-size = "1.1.0"
97-
serde = { version = "1.0.160", features = ["derive"] }
97+
serde = { version = "1.0.156", features = ["derive"] }
9898
serde_json = "1.0.96"
9999
triomphe = { version = "0.1.8", default-features = false, features = ["std"] }
100100
# can't upgrade due to dashmap depending on 0.12.3 currently

lib/line-index/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ repository = "https://github.com/rust-lang/rust-analyzer/tree/master/lib/line-in
77
edition = "2021"
88

99
[dependencies]
10-
text-size.workspace = true
11-
nohash-hasher.workspace = true
10+
text-size = "1.1.0"
11+
nohash-hasher = "0.2.0"

lib/lsp-server/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
[package]
22
name = "lsp-server"
3-
version = "0.7.1"
3+
version = "0.7.2"
44
description = "Generic LSP server scaffold."
55
license = "MIT OR Apache-2.0"
66
repository = "https://github.com/rust-lang/rust-analyzer/tree/master/lib/lsp-server"
77
edition = "2021"
88

99
[dependencies]
1010
log = "0.4.17"
11-
serde_json.workspace = true
12-
serde.workspace = true
11+
serde_json = "1.0.96"
12+
serde = "1.0.156"
1313
crossbeam-channel = "0.5.6"
1414

1515
[dev-dependencies]

0 commit comments

Comments
 (0)