forked from astroport-fi/astroport-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
34 lines (34 loc) · 885 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
[workspace]
resolver = "2"
members = [
"packages/*",
"contracts/factory",
"contracts/pair",
"contracts/pair_stable",
"contracts/pair_astro_xastro",
"contracts/router",
"contracts/token",
"contracts/whitelist",
"templates/*",
"contracts/tokenomics/generator",
"contracts/tokenomics/maker",
"contracts/tokenomics/staking",
"contracts/tokenomics/vesting",
"contracts/tokenomics/xastro_token",
"contracts/periphery/*",
]
exclude = [
"contracts/pair_stable_bluna", # TODO: update this when bluna migrated to cosmwasm 1.0.0
"contracts/tokenomics/generator_proxy_to_mirror", # TODO: update this when mirror migrated to cosmwasm 1.0.0
]
[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