@@ -14,17 +14,11 @@ pub fn set_cargo_workspace_members_env() {
14
14
let metadata = cargo_metadata:: MetadataCommand :: new ( )
15
15
. exec ( )
16
16
. expect ( "Failed to obtain cargo metadata" ) ;
17
- let workspace_members = metadata. workspace_members ;
18
17
19
- let workspace_members = workspace_members
18
+ let workspace_members = metadata
19
+ . workspace_packages ( )
20
20
. 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 ( ) )
28
22
. collect :: < Vec < _ > > ( )
29
23
. join ( "," ) ;
30
24
@@ -35,32 +29,28 @@ pub fn set_cargo_workspace_members_env() {
35
29
. expect ( "Failed to set `CARGO_WORKSPACE_MEMBERS` environment variable" ) ;
36
30
}
37
31
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
39
33
/// [`set_cargo_workspace_members_env`] to set the `CARGO_WORKSPACE_MEMBERS` environment variable.
40
34
///
41
35
/// This function should be typically called within build scripts, before the
42
36
/// [`set_cargo_workspace_members_env`] function is called.
43
37
///
44
38
/// # Panics
45
39
///
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.
48
42
pub fn verify_cargo_metadata_format ( ) {
49
43
#[ allow( clippy:: expect_used) ]
50
44
let metadata = cargo_metadata:: MetadataCommand :: new ( )
51
45
. exec ( )
52
46
. expect ( "Failed to obtain cargo metadata" ) ;
53
- let workspace_members = metadata. workspace_members ;
54
47
55
- let package_id_entry_prefix =
56
- format ! ( "{} {}" , env!( "CARGO_PKG_NAME" ) , env!( "CARGO_PKG_VERSION" ) ) ;
57
48
assert ! (
58
- workspace_members
49
+ metadata
50
+ . workspace_packages( )
59
51
. 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`"
64
54
) ;
65
55
}
66
56
0 commit comments