-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
34 lines (28 loc) · 1.06 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[package]
name = "nebula-penalty"
version = "1.0.0"
authors = ["Nebula Protocol <[email protected]>"]
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"]
[features]
# for more explicit tests, cargo test --features=backtraces
backtraces = ["cosmwasm-std/backtraces"]
[dependencies]
cosmwasm-std = { version = "0.16.2", default-features = false}
cosmwasm-storage = { version = "0.16.2" }
schemars = "0.8.1"
nebula-protocol = { version = "1.0.0", path = "../../packages/nebula_protocol" }
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
snafu = { version = "0.6.3" }
cluster-math = { path = "../../libraries/cluster-math" }
thiserror = { version = "1.0.30" }
cw2 = { version = "0.9.1" }
[dev-dependencies]
cosmwasm-schema = { version = "0.16.0" }