e013517348
* Use serial integer instead of random * [ci skip] Generate TS types * cargo fmt * Return u32
25 lines
729 B
TOML
25 lines
729 B
TOML
[package]
|
|
name = "vesting-contract"
|
|
version = "0.1.0"
|
|
authors = ["Drazen Urch <durch@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",
|
|
]
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
[dependencies]
|
|
mixnet-contract = { path = "../../common/mixnet-contract" }
|
|
config = { path = "../../common/config" }
|
|
|
|
cosmwasm-std = { version = "1.0.0-beta3"}
|
|
cw-storage-plus = { version = "0.10.3", features = ["iterator"] }
|
|
|
|
schemars = "0.8"
|
|
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
|
|
thiserror = { version = "1.0.23" } |