fix publish script

This commit is contained in:
Pat Hickey
2021-02-01 18:16:24 -08:00
parent b59160c3da
commit d83dba47a3

View File

@@ -46,10 +46,9 @@ const CRATES_TO_PUBLISH: &[&str] = &[
"wiggle", "wiggle",
"wiggle-borrow", "wiggle-borrow",
"wasmtime-wiggle-macro", "wasmtime-wiggle-macro",
// wasi-common bits // wasi-common
"winx",
"yanix",
"wasi-common", "wasi-common",
"wasi-cap-std-sync",
// wasmtime // wasmtime
"lightbeam", "lightbeam",
"wasmtime-environ", "wasmtime-environ",
@@ -301,10 +300,7 @@ fn verify(crates: &[Crate]) {
verify_and_vendor(&witx); verify_and_vendor(&witx);
// Vendor wasi-crypto which is also a path dependency // Vendor wasi-crypto which is also a path dependency
let wasi_crypto = crates let wasi_crypto = crates.iter().find(|c| c.name == "wasi-crypto").unwrap();
.iter()
.find(|c| c.name == "wasi-crypto")
.unwrap();
verify_and_vendor(&wasi_crypto); verify_and_vendor(&wasi_crypto);
for krate in crates { for krate in crates {