-
Notifications
You must be signed in to change notification settings - Fork 8
/
Cargo.toml
67 lines (57 loc) · 1.75 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
[workspace]
members = [
"packages/*",
"contracts/provider/*",
"contracts/consumer/*",
]
resolver = "2"
[workspace.package]
edition = "2021"
version = "0.10.0-alpha.1"
license = "MIT"
repository = "https://github.com/osmosis-labs/mesh-security"
[workspace.dependencies]
mesh-apis = { path = "./packages/apis" }
mesh-bindings = { path = "./packages/bindings" }
mesh-burn = { path = "./packages/burn" }
mesh-price-feed = { path = "./packages/price-feed" }
mesh-sync = { path = "./packages/sync" }
mesh-vault = { path = "./contracts/provider/vault" }
mesh-external-staking = { path = "./contracts/provider/external-staking" }
mesh-native-staking = { path = "./contracts/provider/native-staking" }
mesh-native-staking-proxy = { path = "./contracts/provider/native-staking-proxy" }
mesh-converter = { path = "./contracts/consumer/converter" }
mesh-simple-price-feed = { path = "./contracts/consumer/simple-price-feed" }
mesh-virtual-staking = { path = "./contracts/consumer/virtual-staking" }
sylvia = "0.10.1"
cosmwasm-schema = "1.5.4"
cosmwasm-std = { version = "1.5.4", features = ["ibc3", "cosmwasm_1_3"] }
cw-storage-plus = "1.2.0"
cw-utils = "1.0.3"
cw2 = "1.1.2"
osmosis-std = "0.20.1"
prost = { version = "0.11.0", default-features = false, features = ["prost-derive"] }
schemars = "0.8.17"
serde = { version = "1.0.199", default-features = false, features = ["derive"] }
thiserror = "1.0.59"
semver = "1.0.22"
itertools = "0.12.1"
obi = "0.0.2"
cw-band = "0.1.1"
# dev deps
anyhow = "1"
cw-multi-test = "0.20"
derivative = "2"
test-case = "3.3.1"
[profile.release]
codegen-units = 1
debug = false
debug-assertions = false
lto = true
panic = 'abort'
rpath = false
opt-level = 3
overflow-checks = true
[profile.release.package.mesh-vault]
codegen-units = 1
incremental = false