Skip to content

Commit 77e9841

Browse files
xtask: Order Package::published in publishing order
1 parent a0f7e7f commit 77e9841

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

xtask/src/cargo.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,12 @@ impl Package {
2929
}
3030
}
3131

32-
/// All published packages.
32+
/// All published packages, in the order that publishing should occur.
3333
pub fn published() -> Vec<Package> {
3434
vec![
35-
Self::Uefi,
36-
Self::UefiMacros,
3735
Self::UefiRaw,
36+
Self::UefiMacros,
37+
Self::Uefi,
3838
Self::UefiServices,
3939
]
4040
}

0 commit comments

Comments
 (0)