Files
nym/nym-browser-extension/storage/Cargo.toml
Tommy Verrall 3e8451f292 updated browser extension piece
- keep all the internal-dev wasm pieces as future examples
- everything previously was going to be removed
- shows functioning wasm interaction with the js
2025-06-11 17:15:20 +02:00

37 lines
1.0 KiB
TOML

[package]
name = "extension-storage"
version = "1.4.0-rc.0"
edition = "2024"
license = "Apache-2.0"
repository = "https://github.com/nymtech/nym"
description = "WebAssembly-based secure storage for browser extension mnemonics"
authors = ["Nym Technologies SA <contact@nymtech.net>"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
crate-type = ["cdylib", "rlib"]
[dependencies]
bip39 = { workspace = true }
zeroize = { workspace = true }
js-sys = { workspace = true }
wasm-bindgen = { workspace = true }
wasm-bindgen-futures = { workspace = true }
serde-wasm-bindgen = { workspace = true }
thiserror = { workspace = true }
console_error_panic_hook = { workspace = true, optional = true }
wasm-utils = { path = "../../common/wasm/utils" }
wasm-storage = { path = "../../common/wasm/storage" }
#[package.metadata.wasm-pack.profile.release]
#wasm-opt = false
[features]
default = ["console_error_panic_hook"]