20 lines
575 B
TOML
20 lines
575 B
TOML
[package]
|
|
name = "nym-multisig-contract-common"
|
|
description = "Common code for the Nym multisig CosmWasm smart contract"
|
|
version.workspace = true
|
|
edition = "2021"
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
homepage.workspace = true
|
|
|
|
[dependencies]
|
|
cosmwasm-schema = { workspace = true }
|
|
cosmwasm-std = { workspace = true }
|
|
cw-storage-plus = { workspace = true }
|
|
cw-utils = { workspace = true }
|
|
cw3 = { workspace = true }
|
|
cw4 = { workspace = true }
|
|
schemars = { workspace = true }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
thiserror = { workspace = true }
|