38 lines
946 B
TOML
38 lines
946 B
TOML
[package]
|
|
name = "zknym-lib"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
homepage.workspace = true
|
|
documentation.workspace = true
|
|
publish = false
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
[dependencies]
|
|
async-trait.workspace = true
|
|
js-sys.workspace = true
|
|
wasm-bindgen.workspace = true
|
|
serde = { workspace = true, features = ["derive"] }
|
|
thiserror.workspace = true
|
|
tsify = { workspace = true, features = ["js"] }
|
|
uuid = { workspace = true, features = ["serde"] }
|
|
wasmtimer = { workspace = true }
|
|
zeroize.workspace = true
|
|
|
|
nym-bin-common = { workspace = true }
|
|
nym-compact-ecash = { workspace = true }
|
|
nym-http-api-client = { workspace = true }
|
|
nym-wasm-utils = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
|
|
|
|
[package.metadata.wasm-pack.profile.release]
|
|
wasm-opt = false
|