26 lines
700 B
TOML
26 lines
700 B
TOML
[package]
|
|
name = "nym-ecash-contract-common"
|
|
description = "Common crate for Nym's ecash/zknym cosmwasm contract"
|
|
version.workspace = true
|
|
edition = "2021"
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
homepage.workspace = true
|
|
documentation.workspace = true
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
bs58.workspace = true
|
|
cosmwasm-std = { workspace = true }
|
|
cosmwasm-schema = { workspace = true }
|
|
cw2 = { workspace = true, optional = true }
|
|
nym-multisig-contract-common = { workspace = true }
|
|
thiserror.workspace = true
|
|
cw-utils = { workspace = true }
|
|
cw-controllers = { workspace = true }
|
|
|
|
|
|
[features]
|
|
schema = ["cw2"]
|