mirror of
https://github.com/denoland/std.git
synced 2024-11-22 04:59:05 +00:00
bcfc7e003e
* docs(fs): polish documentation (#4526) * Try this. * bad name * Revert "bad name" This reverts commit677f1649e3
. Revert "Try this." This reverts commit7d0f73c1e8
. * try this --------- Co-authored-by: David Sherret <dsherret@gmail.com>
35 lines
722 B
TOML
35 lines
722 B
TOML
# Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
|
|
|
[package]
|
|
edition = "2021"
|
|
name = "deno_std_wasm_crypto"
|
|
repository = "https://github.com/denoland/deno_std"
|
|
authors = ["the Deno authors"]
|
|
license = "MIT"
|
|
publish = false
|
|
version = "0.0.0"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib"]
|
|
|
|
[profile.release]
|
|
lto = true
|
|
opt-level = 3
|
|
|
|
[dependencies]
|
|
blake2 = "0.10.6"
|
|
blake3 = { version = "1.5.1", features = ["traits-preview"] }
|
|
derive_more = "0.99.17"
|
|
digest = { version = "0.10.7", features = ["core-api", "std"] }
|
|
generic-array = "1.0.0"
|
|
js-sys = "0.3.69"
|
|
md4 = "0.10.2"
|
|
md-5 = "0.10.6"
|
|
ripemd = "0.1.3"
|
|
sha1 = "0.10.6"
|
|
sha2 = "0.10.8"
|
|
sha3 = "0.10.8"
|
|
tiger = "0.2.1"
|
|
typenum = "1.17.0"
|
|
wasm-bindgen = "=0.2.92"
|