-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
102 lines (94 loc) · 4.55 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
[workspace]
members = [
"packages/*",
"contracts/*",
"unit-tests/",
"local-interchaintest",
]
default-members = ["contracts/*"]
resolver = "2"
[workspace.package]
edition = "2021"
license = "Apache-2.0"
version = "0.1.0"
repository = "https://github.com/timewave-computer/covenants"
# rust-version = "1.71.0"
[profile.release]
codegen-units = 1
debug = false
debug-assertions = false
incremental = false
lto = true
opt-level = 3
overflow-checks = true # very important, do not turn these off.
panic = 'abort'
rpath = false
[workspace.dependencies]
valence-clock = { path = "contracts/clock" }
valence-clock-tester = { path = "contracts/clock-tester" }
valence-ibc-forwarder = { path = "contracts/ibc-forwarder" }
valence-remote-chain-splitter = { path = "contracts/remote-chain-splitter" }
valence-native-splitter = { path = "contracts/native-splitter" }
valence-swap-holder = { path = "contracts/swap-holder" }
valence-covenant-swap = { path = "contracts/swap-covenant" }
valence-interchain-router = { path = "contracts/interchain-router" }
valence-two-party-pol-holder = { path = "contracts/two-party-pol-holder" }
valence-covenant-two-party-pol = { path = "contracts/two-party-pol-covenant" }
valence-astroport-liquid-pooler = { path = "contracts/astroport-liquid-pooler" }
valence-native-router = { path = "contracts/native-router" }
valence-osmo-liquid-pooler = { path = "contracts/osmo-liquid-pooler" }
valence-outpost-osmo-liquid-pooler = { path = "contracts/outpost-osmo-liquid-pooler" }
valence-single-party-pol-holder = { path = "contracts/single-party-pol-holder" }
valence-covenant-single-party-pol = { path = "contracts/single-party-pol-covenant" }
valence-stride-liquid-staker = { path = "contracts/stride-liquid-staker" }
valence-astroport-tf-liquid-pooler = { path = "contracts/astroport-tf-liquid-pooler" }
# packages
polytone = "1.0.0"
clock-derive = { path = "packages/clock-derive" }
cw-fifo = { path = "packages/cw-fifo" }
covenant-macros = { path = "packages/covenant-macros" }
covenant-utils = { path = "packages/covenant-utils" }
# the sha2 version here is the same as the one used by
# cosmwasm-std. when bumping cosmwasm-std, this should also be
# updated. to find cosmwasm_std's sha function:
# ```cargo tree --package cosmwasm-std```
sha2 = "0.10.8"
neutron-sdk = { git = "https://github.com/neutron-org/neutron-sdk", tag = "v0.8.0" }
cosmos-sdk-proto = { version = "0.14.0", default-features = false }
protobuf = { version = "3.2.0", features = ["with-bytes"] }
serde-json-wasm = { version = "0.4.1" }
base64 = "0.13.0"
prost = "0.11"
prost-types = "0.11"
bech32 = "0.9.0"
cosmwasm-schema = "1.5.0"
cosmwasm-std = { version = "1.5.4", features = [
"ibc3",
"cosmwasm_1_1",
"cosmwasm_1_2",
] }
cw-storage-plus = "1.2.0"
cw-utils = "1.0.3"
getrandom = { version = "0.2", features = ["js"] }
cw2 = "1.0.1"
serde = { version = "1.0.145", default-features = false, features = ["derive"] }
thiserror = "1.0.31"
schemars = "0.8.10"
cw20 = { version = "0.15.1" }
cw20-base = { version = "0.15.1" }
proc-macro2 = "1"
quote = "1"
syn = "1"
astroport = { git = "https://github.com/astroport-fi/astroport-core.git", rev = "700f66d" }
# dev-dependencies
cw-multi-test = { git = "https://github.com/Art3miX/cw-multi-test", branch = "main", features = ["cosmwasm_1_2"] }
anyhow = { version = "1.0.51" }
cw1-whitelist = "0.15"
astroport-token = { git = "https://github.com/astroport-fi/astroport-core.git", rev = "700f66d" }
astroport-whitelist = { git = "https://github.com/astroport-fi/astroport-core.git", rev = "700f66d" }
astroport-factory = { git = "https://github.com/astroport-fi/astroport-core.git", rev = "700f66d" }
astroport-native-coin-registry = { git = "https://github.com/astroport-fi/astroport-core.git", rev = "700f66d" }
astroport-pair-stable = { git = "https://github.com/astroport-fi/astroport-core.git", rev = "700f66d" }
astroport-pair-concentrated = { git = "https://github.com/astroport-fi/astroport-core.git", rev = "700f66d" }
astroport-pair = { git = "https://github.com/astroport-fi/astroport-core.git", rev = "700f66d" }
unit-tests = { path = "unit-tests" }