33 lines
832 B
TOML
33 lines
832 B
TOML
[package]
|
|
name = "extension-storage"
|
|
version = "1.3.0-rc.0"
|
|
edition = "2021"
|
|
license = "Apache-2.0"
|
|
repository = "https://github.com/nymtech/nym"
|
|
|
|
# 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 }
|
|
js-sys = { workspace = true }
|
|
serde-wasm-bindgen = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
wasm-bindgen = { workspace = true }
|
|
wasm-bindgen-futures = { workspace = true }
|
|
zeroize = { 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"]
|