614b99a36e
* Differentiate staking and ownership * Ownership transfer, tests * Consistent random keys * Improve account tests * Update Cargo.lock * Make everybody happy Co-authored-by: Drazen Urch <durch@users.noreply.guthub.com>
41 lines
1.1 KiB
TOML
41 lines
1.1 KiB
TOML
[package]
|
|
name = "mixnet-contracts"
|
|
version = "0.1.0"
|
|
authors = ["Dave Hrycyszyn <futurechimp@users.noreply.github.com>"]
|
|
edition = "2018"
|
|
|
|
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",
|
|
]
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
[dependencies]
|
|
mixnet-contract = { path = "../../common/mixnet-contract" }
|
|
config = { path = "../../common/config"}
|
|
vesting-contract = { path = "../vesting" }
|
|
|
|
cosmwasm-std = "1.0.0-beta3"
|
|
cosmwasm-storage = "1.0.0-beta3"
|
|
cw-storage-plus = "0.10.3"
|
|
|
|
bs58 = "0.4.0"
|
|
schemars = "0.8"
|
|
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
|
|
thiserror = { version = "1.0.23" }
|
|
|
|
[dev-dependencies]
|
|
cosmwasm-schema = "1.0.0-beta3"
|
|
fixed = "1.1"
|
|
rand_chacha = "0.2"
|
|
rand = "0.7"
|
|
crypto = { path = "../../common/crypto" }
|
|
|
|
[build-dependencies]
|
|
vergen = { version = "5", default-features = false, features = ["build", "git", "rustc"] }
|