diff --git a/Cargo.lock b/Cargo.lock index a4d940f903..09adbfee16 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -968,6 +968,7 @@ dependencies = [ "starknet-crypto", "starknet-types-core", "thiserror-no-std", + "wasm-bindgen", "wasm-bindgen-test", "zip", ] diff --git a/vm/Cargo.toml b/vm/Cargo.toml index b5ee76dc53..6311f1b562 100644 --- a/vm/Cargo.toml +++ b/vm/Cargo.toml @@ -78,6 +78,10 @@ arbitrary = { workspace = true, features = ["derive"], optional = true } # Used to derive clap traits for CLIs clap = { version = "4.3.10", features = ["derive"], optional = true} +# Pin wasm-bindgen version to fix ensure-no_std CI workflow +# It's not used directly +wasm-bindgen = { version = "= 0.2.92" } + [dev-dependencies] assert_matches = "1.5.0" rstest = { version = "0.17.0", default-features = false }