forked from astroport-fi/astroport-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
37 lines (34 loc) · 843 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
[workspace]
resolver = "2"
members = [
"packages/*",
"contracts/factory",
"contracts/pair",
"contracts/pair_stable",
"contracts/pair_concentrated",
"contracts/pair_concentrated_inj",
"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/*",
]
[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
[patch.'https://github.com/astroport-fi/astroport-core']
astroport = { path = "packages/astroport" }