28 lines
659 B
TOML
28 lines
659 B
TOML
[package]
|
|
name = "nym-pool-contract-common"
|
|
description = "Common library for the Nym Pool contract"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
homepage.workspace = true
|
|
documentation.workspace = true
|
|
rust-version.workspace = true
|
|
readme.workspace = true
|
|
|
|
[dependencies]
|
|
thiserror = { workspace = true }
|
|
serde = { workspace = true }
|
|
schemars = { workspace = true }
|
|
|
|
cosmwasm-std = { workspace = true }
|
|
cosmwasm-schema = { workspace = true }
|
|
cw-controllers = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
time = { workspace = true, features = ["macros"] }
|
|
|
|
[features]
|
|
schema = []
|