Skip to content

Commit

Permalink
fix(wasm): pin wasm-bindgen version to 0.2.81
Browse files Browse the repository at this point in the history
  • Loading branch information
oplik0 authored Aug 10, 2022
1 parent 30686b7 commit 38c9773
Show file tree
Hide file tree
Showing 3 changed files with 219 additions and 219 deletions.
2 changes: 1 addition & 1 deletion cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@ if (import.meta.main) {
}
break;
default:
console.log(`usage: hash <password>, verify <password>, <hash>`)
console.log(`usage: hash <password>, verify <password>, <hash>`);
}
}
6 changes: 3 additions & 3 deletions lib/_wasm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "scrypt-wasm"
version = "0.1.1"
version = "0.1.2"
authors = ["oplik0"]
edition = "2021"

Expand All @@ -11,11 +11,11 @@ crate-type = ["cdylib", "rlib"]
cfg-if = "1.0"
getrandom = { version = "0.2", features = ["js"] }
scrypt = "^0.10.0"
wasm-bindgen = "0.2"
wasm-bindgen = "=0.2.81"
wee_alloc = { version = "0.4.5", optional = true }

[dev-dependencies]
wasm-bindgen-test = "0.3.13"
wasm-bindgen-test = "=0.3.31"

[profile.release]
# Tell `rustc` to optimize for small code size.
Expand Down
Loading

0 comments on commit 38c9773

Please sign in to comment.