-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
47 lines (42 loc) · 1023 Bytes
/
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
[workspace]
resolver = "2"
members = [
"contracts/hub/*",
"contracts/liquidity/*",
"contracts/forwarding/*",
"contracts/common/*",
"packages/*",
"tests-integration",
]
[profile.release]
opt-level = "z"
debug = false
rpath = false
lto = true
debug-assertions = false
codegen-units = 1
panic = 'abort'
incremental = false
overflow-checks = true
strip = true
[workspace.dependencies]
euclid = { path = "./packages/euclid" }
euclid-ibc = { path = "./packages/euclid_ibc" }
euclid-utils = { path = "./packages/euclid_utils" }
forwarding = { path = "./packages/forwarding" }
cosmwasm-std = "1.5.3"
cosmwasm-schema = "1.5.0"
cw-storage-plus = "1.1.0"
cw-utils = "1.0"
cw2 = "1.1.1"
cw20 = "1.1"
cw20-base = "=1.1.2"
schemars = "0.8.15"
serde = { version = "1.0.208", default-features = false, features = ["derive"] }
thiserror = { version = "1.0.49" }
itertools = "0.10"
mock = { path = "./packages/mock" }
cw-multi-test = { version = "1.2.0", features = [
"cosmwasm_1_2",
"cosmwasm_1_1",
] }