summaryrefslogtreecommitdiff
path: root/std/hash/_wasm/Cargo.toml
diff options
context:
space:
mode:
authorLuca Casonato <lucacasonato@yahoo.com>2020-09-22 23:03:11 +0200
committerGitHub <noreply@github.com>2020-09-22 23:03:11 +0200
commitcf0c49191e9be862027f74f39318a3479fce3ba2 (patch)
treec858fbf7c0bc44444d5a0839ef25bada5557521c /std/hash/_wasm/Cargo.toml
parentf601721851bdd64ee5b40bd3d408df063691b425 (diff)
chore(std/hash): update crates (#7631)
Diffstat (limited to 'std/hash/_wasm/Cargo.toml')
-rw-r--r--std/hash/_wasm/Cargo.toml23
1 files changed, 13 insertions, 10 deletions
diff --git a/std/hash/_wasm/Cargo.toml b/std/hash/_wasm/Cargo.toml
index 856a21b73..7a9119552 100644
--- a/std/hash/_wasm/Cargo.toml
+++ b/std/hash/_wasm/Cargo.toml
@@ -10,17 +10,20 @@ repository = "https://github.com/denoland/deno"
crate-type = ["cdylib"]
[dependencies]
-digest = "0.8.1"
-md2 = "0.8"
-md4 = "0.8"
-md-5 = "0.8"
-ripemd160 = "0.8.0"
-ripemd320 = "0.8.0"
-sha-1 = "0.8.2"
-sha2 = "0.8.2"
-sha3 = "0.8.2"
-wasm-bindgen = "0.2.63"
+digest = "0.9.0"
+md2 = "0.9.0"
+md4 = "0.9.0"
+md-5 = "0.9.1"
+ripemd160 = "0.9.1"
+ripemd320 = "0.9.0"
+sha-1 = "0.9.1"
+sha2 = "0.9.1"
+sha3 = "0.9.1"
+wasm-bindgen = "0.2.68"
[profile.release]
lto = true
opt-level = 3
+
+[package.metadata.wasm-pack.profile.release]
+wasm-opt = ["-O", "--enable-mutable-globals"]