generated from apollodao/apollo-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
58 lines (53 loc) · 1.88 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
[workspace]
members = [
"contracts/locked-astroport-vault",
"test-helpers"
]
resolver = "2"
[workspace.package]
version = "0.5.0"
edition = "2021"
license = "BUSL-1.1"
[profile.release]
opt-level = 3
debug = false
rpath = false
lto = true
debug-assertions = false
codegen-units = 1
panic = 'abort'
incremental = false
overflow-checks = true
[workspace.dependencies]
apollo-cw-asset = "0.1.2"
apollo-utils = "0.1.1"
cosmwasm-schema = "1.1.0"
cosmwasm-std = "1.5.5"
cw-dex-astroport = { version = "0.2.0" }
cw-ownable = "0.5.1"
cw-storage-plus = "1.1.0"
cw-utils = "1.0.1"
cw-vault-standard = { version = "0.4.1", features = ["lockup", "force-unlock"] }
cw2 = "1.1.0"
cw20 = "1.1.0"
osmosis-std = "0.14"
thiserror = "1.0.43"
cw-dex-router = { version = "0.5.0", features = ["library", "astroport"] }
strum = { version = "0.25.0", features = ["derive"] }
liquidity-helper = "0.4.0"
cw-item-set = { version = "0.7.1", default-features = false, features = ["iterator"] }
cw-address-like = "1.0.4"
optional_struct = "0.3.1"
serde = "1.0.171"
schemars = "0.8.12"
semver = "1.0.21"
astroport_v5 = { package = "astroport", version = "5.3.0" }
# Repo packages
locked-astroport-vault = { version = "0.5.0", path = "./contracts/locked-astroport-vault" }
locked-astroport-vault-test-helpers = { path = "./test-helpers" }
# Dev dependencies
cw-it = { version = "0.4.0", features = ["astroport"] }
cw-vault-standard-test-helpers = { version = "0.5.0", features = ["lockup", "force-unlock"] }
proptest = "1.2.0"
test-case = "3.1.0"
astroport-liquidity-helper = "0.4.0"