-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
64 lines (57 loc) · 2.21 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
[workspace]
members = [
# "contracts/hub",
"contracts/alliance-lst",
# "contracts/token",
#"contracts/amp-governance/voting_escrow",
# "contracts/amp-compounder/*",
# "contracts/arb-vault",
"packages/*",
# "contracts/amp-governance/restake_gauges",
]
exclude = [
"packages/eris-tests",
"contracts/amp-governance/*",
"contracts/amp-compounder/*",
]
[profile.release.package.eris]
opt-level = 3
debug = false
debug-assertions = false
codegen-units = 1
incremental = false
[profile.release]
rpath = false
lto = true
overflow-checks = true
# [profile.release]
# opt-level = 3
# debug = false
# rpath = false
# lto = true
# debug-assertions = false
# codegen-units = 1
# panic = 'abort'
# incremental = false
[workspace.dependencies]
cw2 = "0.13.2"
cw20 = "0.13.2"
cosmwasm-std = "1.1"
cw-storage-plus = "0.15.1"
cw-asset = "2.4.0"
thiserror = { version = "1.0" }
itertools = "0.10"
eris = { path = "packages/eris" }
eris-chain-adapter = { path = "packages/eris-chain-adapter" }
eris-chain-shared = { path = "packages/eris-chain-shared" }
cosmwasm-schema = "1.1"
astroport = { git = "https://github.com/astroport-fi/astroport-core.git", default-features = false, rev = "3b44a4044b823a145730f66ffaf7ae4205b2cd35" }
cw-multi-test = "0.13.2"
astroport-generator = { git = "https://github.com/astroport-fi/astroport-core.git", default-features = false, rev = "3b44a4044b823a145730f66ffaf7ae4205b2cd35" }
astroport-pair = { git = "https://github.com/astroport-fi/astroport-core.git", default-features = false, rev = "3b44a4044b823a145730f66ffaf7ae4205b2cd35" }
astroport-factory = { git = "https://github.com/astroport-fi/astroport-core.git", default-features = false, rev = "3b44a4044b823a145730f66ffaf7ae4205b2cd35" }
astroport-token = { git = "https://github.com/astroport-fi/astroport-core.git", default-features = false, rev = "3b44a4044b823a145730f66ffaf7ae4205b2cd35" }
astroport-staking = { git = "https://github.com/astroport-fi/astroport-core.git", default-features = false, rev = "3b44a4044b823a145730f66ffaf7ae4205b2cd35" }
astroport-whitelist = { git = "https://github.com/astroport-fi/astroport-core.git", default-features = false, rev = "3b44a4044b823a145730f66ffaf7ae4205b2cd35" }
anyhow = "1"
proptest = "1.0"