From a4d3ca87aa0cbe52b728ab88d59d2cee9b1aa21e Mon Sep 17 00:00:00 2001 From: Trevor Gross Date: Wed, 6 Nov 2024 20:13:34 -0600 Subject: [PATCH] Remove the `wasm32-wasi` target Since [1], the `wasm32-wasi` target is no longer supported (replaced by `wasm32-wasip1` and `wasm32-wasip2`). This has made it into the latest nightly, so remove it from our testing. [1]: https://github.com/rust-lang/rust/pull/132562 --- Cargo.toml | 1 - ci/build.sh | 1 - 2 files changed, 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 40e8391110c13..b967efa1c2d19 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -108,7 +108,6 @@ targets = [ "thumbv7neon-unknown-linux-gnueabihf", "wasm32-unknown-emscripten", "wasm32-unknown-unknown", - "wasm32-wasi", "x86_64-apple-darwin", "x86_64-apple-ios", "x86_64-fortanix-unknown-sgx", diff --git a/ci/build.sh b/ci/build.sh index d7d7b9f1bb7d3..d8e9dadbc14f2 100644 --- a/ci/build.sh +++ b/ci/build.sh @@ -136,7 +136,6 @@ armv5te-unknown-linux-gnueabi \ armv5te-unknown-linux-musleabi \ i686-pc-windows-gnu \ riscv64gc-unknown-linux-gnu \ -wasm32-wasi \ x86_64-fortanix-unknown-sgx \ x86_64-unknown-fuchsia \ x86_64-pc-solaris \