-
Notifications
You must be signed in to change notification settings - Fork 19
/
Cargo.toml
70 lines (61 loc) · 1.93 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
68
69
70
[workspace]
members = ["packages/*", "contracts/*"]
[workspace.package]
edition = "2021"
version = "0.1.0"
license = "Apache-2.0"
repository = "https://github.com/CosmWasm/mesh-security"
homepage = "https://cosmwasm.com"
documentation = "https://docs.cosmwasm.com"
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",
]
[workspace.dependencies]
mesh-ibc = { path = "./packages/mesh-ibc" }
mesh-apis = { path = "./packages/mesh-apis" }
mesh-consumer = { path = "./contracts/mesh-consumer" }
mesh-slasher = { path = "./contracts/mesh-slasher" }
meta-staking = { path = "./contracts/meta-staking" }
mesh-provider = { path = "./contracts/mesh-provider" }
cosmwasm-schema = "1.1"
cosmwasm-std = { version = "1.1", features = ["ibc3"] }
cosmwasm-storage = "1.1"
cw-storage-plus = "1.0"
cw-utils = "1.0"
cw-controllers = "1.0"
cw2 = "1.0"
schemars = "0.8.11"
serde = { version = "1.0.152", default-features = false, features = ["derive"] }
thiserror = "1.0.38"
# dev deps
anyhow = "1"
cw-multi-test = "0.16"
derivative = "2"
mesh-testing = { path = "./packages/mesh-testing" }
test-case = "2.2.0"
[profile.release.package.mesh-consumer]
codegen-units = 1
incremental = false
[profile.release.package.mesh-lockup]
codegen-units = 1
incremental = false
[profile.release.package.mesh-provider]
codegen-units = 1
incremental = false
[profile.release.package.mesh-slasher]
codegen-units = 1
incremental = false
[profile.release.package.meta-staking]
codegen-units = 1
incremental = false
[profile.release]
codegen-units = 1
debug = false
debug-assertions = false
lto = true
panic = 'abort'
rpath = false
opt-level = 3
overflow-checks = true