diff options
| author | skdltmxn <supershop@naver.com> | 2020-06-17 06:12:50 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-06-16 17:12:50 -0400 |
| commit | b3c72d1e4554b5fd58cbf3ba2fbf56275446447b (patch) | |
| tree | 613f42672a715b8fa9422a86af09abec66e4fcef /std/hash/_wasm/Cargo.toml | |
| parent | b8872cd303584b28c0d6250184e4a1205bf2ad9b (diff) | |
feat(std/hash): reimplement all hashes in WASM (#6292)
Diffstat (limited to 'std/hash/_wasm/Cargo.toml')
| -rw-r--r-- | std/hash/_wasm/Cargo.toml | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/std/hash/_wasm/Cargo.toml b/std/hash/_wasm/Cargo.toml new file mode 100644 index 000000000..d18df157b --- /dev/null +++ b/std/hash/_wasm/Cargo.toml @@ -0,0 +1,26 @@ +[package] +name = "deno-hash" +version = "0.1.0" +authors = ["the Deno authors"] +edition = "2018" +license = "MIT" +repository = "https://github.com/denoland/deno" + +[lib] +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" + +[profile.release] +lto = true +opt-level = "z" |
