56 lines
1.9 KiB
TOML
56 lines
1.9 KiB
TOML
[package]
|
|
name = "nym-mixnet-contract"
|
|
version = "1.4.0"
|
|
description = "Nym mixnet contract"
|
|
edition = { workspace = true }
|
|
authors = { workspace = true }
|
|
license = { workspace = true }
|
|
repository = { workspace = true }
|
|
readme = "README.md"
|
|
|
|
exclude = [
|
|
# Those files are rust-optimizer artifacts. You might want to commit them for convenience but they should not be part of the source code publication.
|
|
"contract.wasm",
|
|
"hash.txt",
|
|
"artifacts",
|
|
]
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[lib]
|
|
name = "mixnet_contract"
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
[dependencies]
|
|
mixnet-contract-common = { path = "../../common/cosmwasm-smart-contracts/mixnet-contract", package = "nym-mixnet-contract-common", version = "0.6.0" }
|
|
vesting-contract-common = { path = "../../common/cosmwasm-smart-contracts/vesting-contract", package = "nym-vesting-contract-common", version = "0.7.0" }
|
|
nym-contracts-common = { path = "../../common/cosmwasm-smart-contracts/contracts-common", version = "0.5.0" }
|
|
|
|
cosmwasm-std = { workspace = true }
|
|
cosmwasm-storage = { workspace = true }
|
|
cosmwasm-derive = { workspace = true }
|
|
cw2 = { workspace = true }
|
|
cw-storage-plus = { workspace = true }
|
|
|
|
bs58 = "0.4.0"
|
|
schemars = "0.8"
|
|
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
|
|
thiserror = { version = "1.0.23" }
|
|
time = { version = "0.3", features = ["macros"] }
|
|
semver = { version = "1.0.16", default-features = false }
|
|
|
|
[dev-dependencies]
|
|
cosmwasm-schema = { workspace = true }
|
|
rand_chacha = "0.2"
|
|
nym-crypto = { path = "../../common/crypto", features = ["asymmetric", "rand"] }
|
|
|
|
[build-dependencies]
|
|
vergen = { version = "=7.4.3", default-features = false, features = ["build", "git", "rustc"] }
|
|
|
|
[features]
|
|
default = []
|
|
contract-testing = ["mixnet-contract-common/contract-testing"]
|
|
|
|
[profile.release]
|
|
overflow-checks = true
|