[package] name = "nym-coconut-bandwidth" version = "0.1.0" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [[bin]] name = "schema" required-features = ["schema-gen"] [lib] crate-type = ["cdylib", "rlib"] [dependencies] nym-coconut-bandwidth-contract-common = { path = "../../common/cosmwasm-smart-contracts/coconut-bandwidth-contract" } nym-multisig-contract-common = { path = "../../common/cosmwasm-smart-contracts/multisig-contract" } cosmwasm-std = { workspace = true } cosmwasm-schema = { workspace = true, optional = true } cosmwasm-storage = { workspace = true } cw-storage-plus = { workspace = true } cw-controllers = { workspace = true } serde = { version = "1.0.103", default-features = false, features = ["derive"] } thiserror = { workspace = true } [features] schema-gen = ["nym-coconut-bandwidth-contract-common/schema", "cosmwasm-schema"]