33992542b1
* updated contracts to cosmwasm2.2 and fixed build issues * removed old coconut contract code + additional dkg fixes * replace deprecated to_binary and from_binary functions * mixnet contract tests compiling some are failing due to incorrect addresses * made other contract tests compile * fixed remaining tests * allow usage of manually dispatching contract replies * nym-api test fixes * removed old toolchain from contracts CI * linter fixes * regenerated contract schema * fixed easy_addr * further license fixes * post rebase fixes + update to 2.2.2 * change ci runner * minor CI adjustments * change wallet CI to use node 20 * more CI changes... * run cosmwasm-check against release contracts * test ci changes * wip...
47 lines
1.4 KiB
TOML
47 lines
1.4 KiB
TOML
[package]
|
|
name = "nym-ecash"
|
|
version = "0.1.0"
|
|
edition = { workspace = true }
|
|
authors = { workspace = true }
|
|
license = { workspace = true }
|
|
repository = { workspace = true }
|
|
|
|
[[bin]]
|
|
name = "schema"
|
|
required-features = ["schema-gen"]
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
[dependencies]
|
|
bs58.workspace = true
|
|
schemars = { workspace = true }
|
|
cosmwasm-std = { workspace = true }
|
|
cosmwasm-schema = { workspace = true }
|
|
serde = { workspace = true }
|
|
sylvia = { workspace = true }
|
|
cw-storage-plus = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
cw-controllers = { workspace = true }
|
|
|
|
cw2 = { workspace = true }
|
|
cw3 = { workspace = true }
|
|
cw4 = { workspace = true }
|
|
cw-utils = { workspace = true }
|
|
semver = { workspace = true, default-features = false }
|
|
|
|
nym-ecash-contract-common = { path = "../../common/cosmwasm-smart-contracts/ecash-contract" }
|
|
nym-contracts-common = { path = "../../common/cosmwasm-smart-contracts/contracts-common" }
|
|
nym-multisig-contract-common = { path = "../../common/cosmwasm-smart-contracts/multisig-contract" }
|
|
nym-network-defaults = { path = "../../common/network-defaults", default-features = false }
|
|
|
|
[dev-dependencies]
|
|
anyhow = { workspace = true }
|
|
sylvia = { workspace = true, features = ["mt"] }
|
|
nym-crypto = { path = "../../common/crypto", features = ["rand", "asymmetric"] }
|
|
rand_chacha = "0.3"
|
|
cw-multi-test = { workspace = true }
|
|
|
|
[features]
|
|
schema-gen = ["nym-ecash-contract-common/schema"]
|