mirror of
https://github.com/vacp2p/zerokit.git
synced 2026-01-09 21:58:06 -05:00
46 lines
1.3 KiB
TOML
46 lines
1.3 KiB
TOML
[package]
|
|
name = "rln-wasm"
|
|
version = "0.2.0"
|
|
edition = "2021"
|
|
license = "MIT or Apache2"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "rlib"]
|
|
required-features = ["stateless"]
|
|
|
|
[dependencies]
|
|
rln = { path = "../rln", version = "0.8.0", default-features = false }
|
|
zerokit_utils = { path = "../utils", version = "0.6.0" }
|
|
|
|
num-bigint = { version = "0.4.6", default-features = false }
|
|
js-sys = "0.3.77"
|
|
wasm-bindgen = "0.2.100"
|
|
serde-wasm-bindgen = "0.6.5"
|
|
wasm-bindgen-rayon = { version = "1.2.0", optional = true }
|
|
|
|
# The `console_error_panic_xhook` crate provides better debugging of panics by
|
|
# logging them with `console.error`. This is great for development, but requires
|
|
# all the `std::fmt` and `std::panicking` infrastructure, so isn't great for
|
|
# code size when deploying.
|
|
console_error_panic_hook = { version = "0.1.7", optional = true }
|
|
|
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
|
getrandom = { version = "0.2.16", features = ["js"] }
|
|
|
|
[dev-dependencies]
|
|
serde_json = "1.0"
|
|
wasm-bindgen-test = "0.3.50"
|
|
wasm-bindgen-futures = "0.4.50"
|
|
|
|
[dev-dependencies.web-sys]
|
|
version = "0.3.77"
|
|
features = ["Window", "Navigator"]
|
|
|
|
[features]
|
|
default = ["console_error_panic_hook"]
|
|
stateless = ["rln/stateless"]
|
|
arkzkey = ["rln/arkzkey"]
|
|
multithread = ["wasm-bindgen-rayon"]
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true |