From 393541b00200fc712e92dab5ac1bbaf2086bd115 Mon Sep 17 00:00:00 2001 From: Juniper Tyree <50025784+juntyr@users.noreply.github.com> Date: Fri, 9 Aug 2024 11:32:46 +0300 Subject: [PATCH] Fix some CI test failures --- .github/workflows/ci.yml | 2 ++ crates/numcodecs-wasm-guest/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 53327146..82589da4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -55,6 +55,8 @@ jobs: if: ${{ matrix.rust != '1.64' }} run: | cargo hack check --all \ + --exclude numcodecs-python \ + --exclude numcodecs-zstd \ --feature-powerset --keep-going \ --target wasm32-wasi diff --git a/crates/numcodecs-wasm-guest/Cargo.toml b/crates/numcodecs-wasm-guest/Cargo.toml index f2ec0e1d..c8481d0a 100644 --- a/crates/numcodecs-wasm-guest/Cargo.toml +++ b/crates/numcodecs-wasm-guest/Cargo.toml @@ -18,7 +18,7 @@ wit-bindgen = { workspace = true, features = ["macros", "realloc"] } [target.'cfg(target_arch = "wasm32")'.dependencies] format_serde_error = { workspace = true, features = ["serde_json"] } -ndarray = { workspace = true } +ndarray = { workspace = true, features = ["std"] } serde = { workspace = true } serde_json = { workspace = true, features = ["std"] } thiserror = { workspace = true }