-
Notifications
You must be signed in to change notification settings - Fork 26
/
Cargo.toml
67 lines (64 loc) · 2.48 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
65
66
67
[workspace]
resolver = "2"
members = [
"contracts/entry-point",
"contracts/adapters/hyperlane",
"contracts/adapters/ibc/*",
"contracts/adapters/swap/*",
"contracts/placeholder",
"packages/*",
]
[workspace.package]
version = "0.3.0"
authors = ["Skip"]
edition = "2021"
rust-version = "1.71.0"
license = "TBD"
homepage = "https://skip.money/"
repository = "https://github.com/skip-mev/skip-go-cosmwasm-contracts"
documentation = "https://github.com/skip-mev/skip-go-cosmwasm-contracts#readme"
keywords = ["cosmwasm"]
[workspace.dependencies]
astroport = "2.9"
astrovault = "0.1.8"
dexter = "1.4.0"
dexter-vault = "1.1.0"
dexter-stable-pool = "1.1.1"
dexter-weighted-pool = "1.1.1"
dexter-lp-token = "1.0.0"
dexter-router = "1.1.0"
cosmwasm-schema = "1.5.4"
cosmwasm-std = { version = "1.5.4", features = ["stargate"] }
cosmos-sdk-proto = { version = "0.19", default-features = false }
cw2 = "1.1"
cw20 = "1.1"
cw-storage-plus = "1"
cw-utils = "1.0.3"
cw-multi-test = "0.20.0"
hpl-interface = { git = "https://github.com/many-things/cw-hyperlane.git", branch = "main", features = ["library"] }
ibc-proto = { version = "0.32.1", default-features = false }
lido-satellite = { git = "https://github.com/hadronlabs-org/lido-satellite", branch = "main", features = ["library"] }
drop-factory = { git = "https://github.com/hadronlabs-org/drop-contracts.git", branch = "feat/audit-fixes", features = ["library"] }
drop-staking-base = { git = "https://github.com/hadronlabs-org/drop-contracts.git", branch = "feat/audit-fixes", features = ["library"] }
mockall = "0.12.1"
neutron-proto = { version = "0.1.1", default-features = false, features = ["cosmwasm"] }
neutron-sdk = "0.10.0"
osmosis-std = "0.15.3"
prost = "0.11"
pryzm-std = "0.1.7"
serde = { version = "1.0.194", default-features = false, features = ["derive"] }
serde-cw-value = "0.7.0"
serde-json-wasm = "1.0.1"
skip = { version = "0.3.0", path = "./packages/skip" }
test-case = "3.3.1"
thiserror = "1"
white-whale-std = "1.1.1"
[profile.release]
codegen-units = 1
debug = false
debug-assertions = false
incremental = false
lto = true
opt-level = 3
overflow-checks = true
rpath = false