From d83dba47a3f4aeb8ff575a9e81ef29c871729b26 Mon Sep 17 00:00:00 2001 From: Pat Hickey Date: Mon, 1 Feb 2021 18:16:24 -0800 Subject: [PATCH] fix publish script --- scripts/publish.rs | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/scripts/publish.rs b/scripts/publish.rs index 75a8d652cd..eaf0e02ed8 100644 --- a/scripts/publish.rs +++ b/scripts/publish.rs @@ -46,10 +46,9 @@ const CRATES_TO_PUBLISH: &[&str] = &[ "wiggle", "wiggle-borrow", "wasmtime-wiggle-macro", - // wasi-common bits - "winx", - "yanix", + // wasi-common "wasi-common", + "wasi-cap-std-sync", // wasmtime "lightbeam", "wasmtime-environ", @@ -301,10 +300,7 @@ fn verify(crates: &[Crate]) { verify_and_vendor(&witx); // Vendor wasi-crypto which is also a path dependency - let wasi_crypto = crates - .iter() - .find(|c| c.name == "wasi-crypto") - .unwrap(); + let wasi_crypto = crates.iter().find(|c| c.name == "wasi-crypto").unwrap(); verify_and_vendor(&wasi_crypto); for krate in crates {