From 6581d8b655feb67c45f18ecd8801061533fa236f Mon Sep 17 00:00:00 2001 From: Taiki Endo Date: Sun, 7 Jan 2024 03:22:40 +0900 Subject: [PATCH] Use cfg(target_family = "wasm") in Cargo.toml --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index f8d529e..4e52168 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -29,5 +29,5 @@ fastrand = "2.0.0" futures-lite = "2.0.0" waker-fn = "1.1.0" -[target.'cfg(any(target_arch = "wasm32", target_arch = "wasm64"))'.dev-dependencies] +[target.'cfg(target_family = "wasm")'.dev-dependencies] wasm-bindgen-test = "0.3"