From 04564c36608dcc5806e1390c347460e905573cbc Mon Sep 17 00:00:00 2001 From: ethan-000 Date: Wed, 1 Feb 2023 16:27:42 +0000 Subject: [PATCH] explicit versions for dependencies --- Cargo.toml | 4 ++-- crates/wasm/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 9b40ce42794..81a6361b7b4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -43,5 +43,5 @@ smol_str = "0.1.17" thiserror = "1.0.21" toml = "0.5.8" url = "2.2.0" -wasm-bindgen = { version = "*", features = ["serde-serialize"] } -wasm-bindgen-test = "*" +wasm-bindgen = { version = "0.2.83", features = ["serde-serialize"] } +wasm-bindgen-test = "0.3.33" diff --git a/crates/wasm/Cargo.toml b/crates/wasm/Cargo.toml index f4a76bf8fc9..98e166f5ac2 100644 --- a/crates/wasm/Cargo.toml +++ b/crates/wasm/Cargo.toml @@ -16,7 +16,7 @@ acvm.workspace = true noirc_driver.workspace = true wasm-bindgen.workspace = true -console_error_panic_hook = "*" +console_error_panic_hook = "0.1.7" getrandom = { version = "0.2.4", features = ["js"] } gloo-utils = { version = "0.1", features = ["serde"] } js-sys = "0.3.55"