[package] name = "rln-wasm" version = "0.0.7" edition = "2021" license = "MIT or Apache2" [lib] crate-type = ["cdylib", "rlib"] [features] default = ["console_error_panic_hook"] [dependencies] rln = { path = "../rln", default-features = false, features = ["wasm"] } num-bigint = { version = "0.4", default-features = false, features = ["rand", "serde"] } wasmer = { version = "2.3", default-features = false, features = ["js", "std"] } web-sys = {version = "0.3", features=["console"]} getrandom = { version = "0.2.7", default-features = false, features = ["js"] } wasm-bindgen = "0.2.63" serde-wasm-bindgen = "0.4" js-sys = "0.3.59" serde_json = "1.0.85" # The `console_error_panic_hook` 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 } [dev-dependencies] wasm-bindgen-test = "0.3.13" wasm-bindgen-futures = "0.4.33"