forked from astroport-fi/astroport-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
43 lines (40 loc) · 1007 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
[workspace]
resolver = "2"
members = [
"packages/*",
"contracts/factory",
"contracts/pair",
"contracts/pair_stable",
"contracts/pair_concentrated",
"contracts/pair_astro_converter",
"contracts/pair_transmuter",
# "contracts/pair_concentrated_inj", TODO: rewrite OB liquidity deployment
"contracts/pair_xastro",
"contracts/pair_xyk_sale_tax",
"contracts/router",
"contracts/whitelist",
"contracts/tokenomics/*",
"contracts/periphery/*"
]
[workspace.dependencies]
cosmwasm-std = "1.5"
cw-storage-plus = "1.2"
cw2 = "1"
thiserror = "1.0"
itertools = "0.12"
cosmwasm-schema = "1.5"
cw-utils = "1"
astroport = { path = "./packages/astroport", version = "5.7.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
[patch.'https://github.com/astroport-fi/astroport-core']
astroport = { path = "packages/astroport" }