-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
45 lines (40 loc) · 1.16 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
[workspace]
members = ["contracts/*", "packages/*"]
resolver = "2"
[workspace.package]
version = "0.4.0"
edition = "2021"
license = "MPL-2.0"
homepage = "https://apollo.farm"
repository = "https://github.com/apollodao/liquidity-helpers"
keywords = ["cosmwasm", "liquidity", "provision", "osmosis", "astroport"]
rust-version = "1.64.0"
[workspace.dependencies]
cosmwasm-std = "1.5.3"
cosmwasm-schema = "1.4.0"
cw2 = "1.1.0"
cw20 = "1.1.0"
cw-storage-plus = "1.1.0"
thiserror = "1.0.45"
apollo-cw-asset = "0.1.2"
cw-dex-astroport = "0.2.0"
cw-dex-osmosis = "0.2.0"
apollo-utils = "0.1.1"
cw-bigint = "0.4.3"
liquidity-helper = { version = "0.4.0", path = "./packages/liquidity-helper" }
semver = "1.0.20"
# Dev dependencies
cw-it = "0.4.0"
test-case = "3.2.1"
proptest = "1.4.0"
[profile.release]
codegen-units = 1
debug = false
debug-assertions = false
incremental = false
lto = true
opt-level = 3
overflow-checks = true
rpath = false
[build]
rustflags = ["-C", "target-feature=-sign-ext"]