forked from White-Whale-Defi-Platform/white-whale-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
60 lines (54 loc) · 1.82 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
[workspace]
members = [
"packages/*",
"contracts/liquidity_hub/pool-network/terraswap_factory",
"contracts/liquidity_hub/pool-network/terraswap_pair",
"contracts/liquidity_hub/pool-network/terraswap_router",
"contracts/liquidity_hub/pool-network/terraswap_token",
"contracts/liquidity_hub/fee_collector",
"contracts/liquidity_hub/fee_distributor",
"contracts/liquidity_hub/whale_lair",
"contracts/liquidity_hub/vault-network/*",
]
[workspace.package]
edition = "2021"
homepage = "https://whitewhale.money"
documentation = "https://docs.whitewhale.money/white-whale"
license = "MIT"
repository = "https://github.com/White-Whale-Defi-Platform/migaloo-core"
publish = false
[workspace.dependencies]
cosmwasm-schema = "1.1.4"
cosmwasm-std = { version = "1.1.4", features = ["iterator", "stargate", "cosmwasm_1_1"] }
cw2 = "0.15.1"
cw20 = "0.15.1"
cw20-base = { version = "0.15.1", features = ["library"] }
cw-storage-plus = "0.15.1"
cw-utils = "1.0.1"
protobuf = { version = "3.1.0", features = ["with-bytes"] }
schemars = "0.8.3"
semver = "1.0.12"
serde = { version = "1.0.137", default-features = false, features = ["derive"] }
thiserror = "1.0.21"
osmosis-std-derive = "0.13.2"
prost = {version = "0.11.0", default-features = false, features = ["prost-derive"]}
prost-types = {version = "0.11.1", default-features = false}
white-whale = { path = "./packages/white-whale" }
white-whale-testing = { path = "./packages/white-whale-testing" }
cw-multi-test = { version = "0.16.2" }
uint = "0.9.4"
integer-sqrt = "0.1.5"
# contracts
whale-lair = { path = "./contracts/liquidity_hub/whale_lair" }
[workspace.metadata.dylint]
libraries = [{ git = "https://github.com/0xFable/cw-lint" }]
[profile.release]
rpath = false
lto = true
overflow-checks = true
opt-level = 3
debug = false
debug-assertions = false
codegen-units = 1
panic = 'abort'
incremental = false