mirror of
https://github.com/pezkuwichain/pezkuwi-wasm.git
synced 2026-04-21 23:48:00 +00:00
51 lines
1.6 KiB
TOML
51 lines
1.6 KiB
TOML
# name & version is only used internally, doesn't need to be adjusted. In the case of
|
|
# name keep it consistent at "wasm" since the scripts (for re-use purposes) expect that
|
|
|
|
[package]
|
|
authors = ["Jaco Greeff <jacogr@gmail.com>"]
|
|
description = "WASM bindings to Rust crypto libraries."
|
|
edition = "2018"
|
|
license = "Apache-2.0"
|
|
name = "wasm"
|
|
publish = false
|
|
repository = "https://github.com/pezkuwichain/pezkuwi-wasm/"
|
|
resolver = "2"
|
|
version = "0.0.0"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib"]
|
|
|
|
[dependencies]
|
|
blake2-rfc = "0.2.18"
|
|
byteorder = "1.3.1"
|
|
curve25519-dalek = { version = "2.1.0", default-features = false }
|
|
ed25519-dalek = { version = "1.0.0-pre.4", features = [] }
|
|
getrandom = { version="0.2.3", features = ["js"] }
|
|
hmac = "0.7.0"
|
|
secp256k1 = { version = "0.21.2", default-features = false, features = ["recovery", "global-context"] }
|
|
merlin = { version = "2.0", default-features = false }
|
|
pbkdf2 = { version = "0.3.0", default-features = false }
|
|
rand = { version="0.7.3", default-features = false, features = ["wasm-bindgen"] }
|
|
schnorrkel = { version = "0.9.1", features = ["preaudit_deprecated", "u64_backend"] }
|
|
scrypt = { version = "0.2", default-features = false }
|
|
sha2 = "0.8.1"
|
|
tiny-bip39 = { version = "0.7", default-features = false }
|
|
tiny-keccak = { version = "2.0.1", features = ["keccak"] }
|
|
twox-hash = "1.5.0"
|
|
wasm-bindgen = "=0.2.90"
|
|
wee_alloc = "0.4.3"
|
|
|
|
[dev-dependencies]
|
|
hex-literal = "0.2.0"
|
|
rand = { version = "0.7.3", features = ["wasm-bindgen"] }
|
|
|
|
[profile.release]
|
|
codegen-units = 1
|
|
debug = false
|
|
debug-assertions = false
|
|
incremental = false
|
|
lto = true
|
|
opt-level = "z"
|
|
panic = "abort"
|
|
rpath = false
|