-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathCargo.toml
43 lines (39 loc) · 1.2 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
35
36
37
38
39
40
41
42
43
[package]
name = "staking"
version = { workspace = true }
rust-version = { workspace = true }
authors = { workspace = true }
edition = { workspace = true }
license = { workspace = true }
homepage = { workspace = true }
repository = { workspace = true }
documentation = { workspace = true }
keywords = { workspace = true }
[lib]
crate-type = ["cdylib", "rlib"]
[features]
# for more explicit tests, cargo test --features=backtraces
backtraces = ["cosmwasm-std/backtraces"]
# use library feature to disable all instantiate/execute/query exports
library = []
[dependencies]
bech32.workspace = true
cw2.workspace = true
cosmwasm-schema.workspace = true
cosmwasm-std = { workspace = true, features = ["stargate"]}
cw-controllers.workspace = true
cw-storage-plus.workspace = true
cw-utils.workspace = true
enum-repr = "0.2.6"
milky_way = { path = "../../packages/milky_way" }
osmosis-std.workspace = true
prost = { version = "0.12.3", default-features = false, features = ["prost-derive"] }
prost-derive = "0.12.3"
schemars.workspace = true
serde.workspace = true
serde_json = "1.0"
sha2 = "0.10.8"
thiserror.workspace = true
semver.workspace = true
[dev-dependencies]
cw-multi-test = "0.17.0"