Skip to content

Commit 325b11d

Browse files
prasunna09SanchithHegdelsampras
authored
build(router_env): obtain workspace member package names from cargo_metadata more deterministically (#4227)
Co-authored-by: Sanchith Hegde <[email protected]> Co-authored-by: Sampras Lopes <[email protected]>
1 parent a3152fb commit 325b11d

File tree

3 files changed

+15
-25
lines changed

3 files changed

+15
-25
lines changed

Cargo.lock

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/router_env/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ readme = "README.md"
88
license.workspace = true
99

1010
[dependencies]
11-
cargo_metadata = "0.15.4"
11+
cargo_metadata = "0.18.1"
1212
config = { version = "0.13.3", features = ["toml"] }
1313
error-stack = "0.3.1"
1414
gethostname = "0.4.3"
@@ -34,7 +34,7 @@ vergen = { version = "8.2.1", optional = true, features = ["cargo", "git", "git2
3434
tokio = { version = "1.36.0", features = ["macros", "rt-multi-thread"] }
3535

3636
[build-dependencies]
37-
cargo_metadata = "0.15.4"
37+
cargo_metadata = "0.18.1"
3838
vergen = { version = "8.2.1", features = ["cargo", "git", "git2", "rustc"], optional = true }
3939

4040
[features]

crates/router_env/src/cargo_workspace.rs

+10-20
Original file line numberDiff line numberDiff line change
@@ -14,17 +14,11 @@ pub fn set_cargo_workspace_members_env() {
1414
let metadata = cargo_metadata::MetadataCommand::new()
1515
.exec()
1616
.expect("Failed to obtain cargo metadata");
17-
let workspace_members = metadata.workspace_members;
1817

19-
let workspace_members = workspace_members
18+
let workspace_members = metadata
19+
.workspace_packages()
2020
.iter()
21-
.map(|package_id| {
22-
package_id
23-
.repr
24-
.split_once(' ')
25-
.expect("Unknown cargo metadata package ID format")
26-
.0
27-
})
21+
.map(|package| package.name.as_str())
2822
.collect::<Vec<_>>()
2923
.join(",");
3024

@@ -35,32 +29,28 @@ pub fn set_cargo_workspace_members_env() {
3529
.expect("Failed to set `CARGO_WORKSPACE_MEMBERS` environment variable");
3630
}
3731

38-
/// Verify that the cargo metadata workspace members format matches that expected by
32+
/// Verify that the cargo metadata workspace packages format matches that expected by
3933
/// [`set_cargo_workspace_members_env`] to set the `CARGO_WORKSPACE_MEMBERS` environment variable.
4034
///
4135
/// This function should be typically called within build scripts, before the
4236
/// [`set_cargo_workspace_members_env`] function is called.
4337
///
4438
/// # Panics
4539
///
46-
/// Panics if running the `cargo metadata` command fails, or if the workspace members package ID
47-
/// format cannot be determined.
40+
/// Panics if running the `cargo metadata` command fails, or if the workspace member package names
41+
/// cannot be determined.
4842
pub fn verify_cargo_metadata_format() {
4943
#[allow(clippy::expect_used)]
5044
let metadata = cargo_metadata::MetadataCommand::new()
5145
.exec()
5246
.expect("Failed to obtain cargo metadata");
53-
let workspace_members = metadata.workspace_members;
5447

55-
let package_id_entry_prefix =
56-
format!("{} {}", env!("CARGO_PKG_NAME"), env!("CARGO_PKG_VERSION"));
5748
assert!(
58-
workspace_members
49+
metadata
50+
.workspace_packages()
5951
.iter()
60-
.any(|package_id| package_id.repr.starts_with(&package_id_entry_prefix)),
61-
"Unknown workspace members package ID format. \
62-
Please run `cargo metadata --format-version=1 | jq '.workspace_members'` and update this \
63-
build script to match the updated package ID format."
52+
.any(|package| package.name == env!("CARGO_PKG_NAME")),
53+
"Unable to determine workspace member package names from `cargo metadata`"
6454
);
6555
}
6656

0 commit comments

Comments
 (0)