-
Notifications
You must be signed in to change notification settings - Fork 18
/
Cargo.toml
91 lines (77 loc) · 3.09 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
[workspace]
members = [
"cw-orch",
"cw-orch-daemon",
"cw-orch-interchain",
"packages/cw-orch-core",
"packages/cw-orch-mock",
"packages/cw-orch-networks",
"packages/clone-testing",
"packages/cw-orch-osmosis-test-tube",
"packages/cw-orch-neutron-test-tube",
"packages/cw-orch-traits",
"test_contracts/*",
"packages/macros/*",
"packages/interchain/*",
"packages/integrations/*",
]
exclude = [
"test_contracts/compatibility-test", # TODO: add new after cw-orch-core 2.0.0 as it's breaking, it shouldn't be compatible
]
resolver = "2"
[workspace.package]
authors = ["CyberHoward <[email protected]>"]
edition = "2021"
license = "LGPL-3.0"
repository = "https://github.com/AbstractSDK/cw-orchestrator"
[workspace.dependencies]
cw-utils = { version = "2.0.0" }
cosmwasm-std = { version = "2.1" }
cw-storage-plus = { version = "2.0.0" }
cosmos-sdk-proto = { version = "0.24.0", default-features = false }
cw-multi-test = { package = "abstract-cw-multi-test", version = "2.0.2", features = [
"cosmwasm_1_2",
] }
cw20 = { version = "2.0.0" }
cw20-base = { version = "2.0.0" }
osmosis-test-tube = { version = "26.0.0" }
neutron-test-tube = { version = "5.0.0" }
anyhow = "1.0"
serde = { version = "1.0.208", default-features = false, features = ["derive"] }
tokio = { version = "1.39", features = ["full"] }
cw-orch = { path = "./cw-orch", version = "0.27.0" }
cw-orch-daemon = { path = "./cw-orch-daemon", version = "0.28.0" }
cw-orch-core = { path = "packages/cw-orch-core", version = "2.1.3" }
cw-orch-traits = { path = "packages/cw-orch-traits", version = "0.25.0" }
cw-orch-mock = { path = "packages/cw-orch-mock", version = "0.24.2" }
cw-orch-networks = { path = "packages/cw-orch-networks", version = "0.24.3" }
# Macros
cw-orch-contract-derive = { path = "packages/macros/cw-orch-contract-derive", version = "0.21.0" }
cw-orch-fns-derive = { path = "packages/macros/cw-orch-fns-derive", version = "0.23.0" }
# Extensions
cw-orch-osmosis-test-tube = { version = "0.4.0", path = "packages/cw-orch-osmosis-test-tube" }
cw-orch-neutron-test-tube = { version = "0.1.0", path = "packages/cw-orch-neutron-test-tube" }
#Clone Testing
cw-orch-clone-testing = { version = "0.8.0", path = "packages/clone-testing" }
# Interchain
cw-orch-interchain = { path = "cw-orch-interchain", version = "0.8.0" }
cw-orch-interchain-core = { path = "packages/interchain/interchain-core", version = "0.9.0" }
cw-orch-interchain-daemon = { path = "packages/interchain/interchain-daemon", version = "0.9.0" }
cw-orch-interchain-mock = { path = "packages/interchain/interchain-mock", version = "0.9.0" }
cw-orch-starship = { path = "packages/interchain/starship", version = "0.7.0" }
cw-orch-proto = { path = "packages/interchain/proto", version = "0.9.0" }
thiserror = { version = "1.0.63" }
sha2 = { version = "0.10.8" }
serde_json = "1.0.125"
tonic = { version = "0.12.1" }
prost-types = "0.13.1"
prost = "0.13.1"
cosmrs = { version = "0.19.0" }
ibc-proto = { version = "0.47.0" }
# Test deps
speculoos = "0.11.0"
# Logging
log = "0.4.22"
# Interchain
ibc-relayer-types = { version = "0.29.2" }
ibc-chain-registry = { version = "0.29.2" }