We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a85284c commit 4231cceCopy full SHA for 4231cce
Cargo.toml
@@ -20,6 +20,7 @@ rand_chacha = "0.3"
20
recrypt = { version = "0.14", features = ["wasm"], default-features = false }
21
serde = "1"
22
serde_derive = "1"
23
+# Must be kept in-sync with build.js and GitHub workflows
24
wasm-bindgen = { version = "=0.2.104" }
25
26
[profile.dev]
build.js
@@ -33,6 +33,7 @@ shell.exec("yarn");
33
shell.exec("cargo clean");
34
shell.exec("cargo update");
35
shell.exec("cargo install wasm-pack");
36
+shell.exec("cargo install wasm-bindgen-cli@0.2.104"); // version must be kept in-sync with Cargo.toml
37
shell.exec("yarn run compile");
38
shell.exec("yarn test");
39
shell.exec("PATH=~/.cargo/bin:$PATH yarn run pack");
0 commit comments