about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--Cargo.lock4
-rw-r--r--Cargo.toml1
-rw-r--r--crates/flycheck/Cargo.toml2
-rw-r--r--crates/proc-macro-test/Cargo.toml2
-rw-r--r--crates/project-model/Cargo.toml6
5 files changed, 8 insertions, 7 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 79bef79be23..0febbc59960 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -120,9 +120,9 @@ dependencies = [
 
 [[package]]
 name = "cargo_metadata"
-version = "0.15.4"
+version = "0.18.1"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "eee4243f1f26fc7a42710e7439c149e2b10b05472f88090acce52632f231a73a"
+checksum = "2d886547e41f740c616ae73108f6eb70afe6d940c7bc697cb30f13daec073037"
 dependencies = [
  "camino",
  "cargo-platform",
diff --git a/Cargo.toml b/Cargo.toml
index d47ec746894..2c9740af68f 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -91,6 +91,7 @@ lsp-server = { version = "0.7.4" }
 
 # non-local crates
 anyhow = "1.0.75"
+cargo_metadata = "0.18.1"
 dissimilar = "1.0.7"
 either = "1.9.0"
 indexmap = "2.1.0"
diff --git a/crates/flycheck/Cargo.toml b/crates/flycheck/Cargo.toml
index 12e0b14cc5a..4322d2d966a 100644
--- a/crates/flycheck/Cargo.toml
+++ b/crates/flycheck/Cargo.toml
@@ -12,9 +12,9 @@ rust-version.workspace = true
 doctest = false
 
 [dependencies]
+cargo_metadata.workspace = true
 crossbeam-channel = "0.5.8"
 tracing.workspace = true
-cargo_metadata = "0.15.4"
 rustc-hash = "1.1.0"
 serde_json.workspace = true
 serde.workspace = true
diff --git a/crates/proc-macro-test/Cargo.toml b/crates/proc-macro-test/Cargo.toml
index 77b4afd7d7e..12d7c07d3ed 100644
--- a/crates/proc-macro-test/Cargo.toml
+++ b/crates/proc-macro-test/Cargo.toml
@@ -12,7 +12,7 @@ rust-version.workspace = true
 doctest = false
 
 [build-dependencies]
-cargo_metadata = "0.15.0"
+cargo_metadata.workspace = true
 
 proc-macro-test-impl = { path = "imp", version = "0.0.0" }
 
diff --git a/crates/project-model/Cargo.toml b/crates/project-model/Cargo.toml
index d35e5f59926..3e48de6456b 100644
--- a/crates/project-model/Cargo.toml
+++ b/crates/project-model/Cargo.toml
@@ -12,13 +12,13 @@ rust-version.workspace = true
 doctest = false
 
 [dependencies]
-tracing.workspace = true
+anyhow.workspace = true
+cargo_metadata.workspace = true
 rustc-hash = "1.1.0"
-cargo_metadata = "0.15.0"
 semver = "1.0.14"
-anyhow.workspace = true
 serde_json.workspace = true
 serde.workspace = true
+tracing.workspace = true
 triomphe.workspace = true
 la-arena.workspace = true
 itertools.workspace = true