From 43142000a6b9ca4a298be78566fe14853297a403 Mon Sep 17 00:00:00 2001 From: Marshall Bowers Date: Fri, 28 Mar 2025 18:25:10 -0400 Subject: [PATCH] Switch back to upstream `cargo_metadata` (#27706) This PR switches us back to the upstream `cargo_metadata`. We had switched to a fork in #27126, but this shouldn't be necessary after #27117. Release Notes: - N/A --- Cargo.lock | 3 ++- Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 127e87cc7e..9e247753ef 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2442,7 +2442,8 @@ dependencies = [ [[package]] name = "cargo_metadata" version = "0.19.2" -source = "git+https://github.com/zed-industries/cargo_metadata?rev=ce8171bad673923d61a77b6761d0dc4aff63398a#ce8171bad673923d61a77b6761d0dc4aff63398a" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dd5eb614ed4c27c5d706420e4320fbe3216ab31fa1c33cd8246ac36dae4479ba" dependencies = [ "camino", "cargo-platform", diff --git a/Cargo.toml b/Cargo.toml index 12a03a37fb..5535c89196 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -411,7 +411,7 @@ blade-util = { git = "https://github.com/kvark/blade", rev = "b16f5c7bd873c7126f naga = { version = "23.1.0", features = ["wgsl-in"] } blake3 = "1.5.3" bytes = "1.0" -cargo_metadata = { git = "https://github.com/zed-industries/cargo_metadata", rev = "ce8171bad673923d61a77b6761d0dc4aff63398a"} +cargo_metadata = "0.19" cargo_toml = "0.21" chrono = { version = "0.4", features = ["serde"] } circular-buffer = "1.0"