diff options
| author | Caleb Zulawski <caleb.zulawski@gmail.com> | 2024-03-03 10:29:32 -0500 |
|---|---|---|
| committer | Caleb Zulawski <caleb.zulawski@gmail.com> | 2024-03-03 10:29:32 -0500 |
| commit | 2f062b8f5eb40d566b2e88ab960b176687167faa (patch) | |
| tree | 89b74fb553c93b1895ea16344631d1eda8653e07 | |
| parent | bcedde54568f6bfb0f150ff8fe5d26f427b129d3 (diff) | |
| download | rust-2f062b8f5eb40d566b2e88ab960b176687167faa.tar.gz rust-2f062b8f5eb40d566b2e88ab960b176687167faa.zip | |
Fix wasm tests
| -rw-r--r-- | crates/std_float/Cargo.toml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/crates/std_float/Cargo.toml b/crates/std_float/Cargo.toml index 8842b226104..0896094ee63 100644 --- a/crates/std_float/Cargo.toml +++ b/crates/std_float/Cargo.toml @@ -11,6 +11,10 @@ core_simd = { path = "../core_simd", default-features = false } [dev-dependencies.test_helpers] path = "../test_helpers" +[target.'cfg(target_arch = "wasm32")'.dev-dependencies] +wasm-bindgen = "0.2" +wasm-bindgen-test = "0.3" + [features] default = ["as_crate"] as_crate = [] |
