forked from ComposableFi/composable-ibc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
79 lines (71 loc) · 3.74 KB
/
Cargo.toml
File metadata and controls
79 lines (71 loc) · 3.74 KB
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
[workspace]
resolver = "2"
members = [
# core ibc implementation
"ibc/derive",
"ibc/modules",
"ibc/proto",
"ibc/proto-compiler",
# ibc contracts for different blockchain runtimes
"contracts/pallet-ibc/ping",
"contracts/pallet-ibc/primitives",
"contracts/pallet-ibc/rpc",
"contracts/pallet-ibc/runtime-api",
"contracts/pallet-ibc",
"contracts/pallet-ibc/simple-iavl",
# algorithms
"algorithms/beefy/verifier",
"algorithms/beefy/prover",
"algorithms/beefy/primitives",
"algorithms/grandpa/verifier",
"algorithms/grandpa/prover",
"algorithms/grandpa/primitives",
# ibc light clients
"light-clients/common",
"light-clients/ics07-tendermint",
"light-clients/ics10-grandpa",
"light-clients/ics11-beefy",
"light-clients/ics13-near",
# hyperspace
"hyperspace",
"hyperspace/core",
"hyperspace/primitives",
"hyperspace/parachain",
"hyperspace/cosmos",
"hyperspace/testsuite",
"hyperspace/metrics",
# utilities
"utils/subxt/codegen",
"utils/subxt/generated",
"utils/parachain-node",
"utils/parachain-node/runtime",
"utils/simnode"
]
[patch."https://github.com/paritytech/jsonrpsee"]
jsonrpsee = { version = "0.15.1" }
[patch.crates-io]
sc-executor = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30" }
sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30" }
sp-arithmetic = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30" }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30" }
sp-version = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30" }
sp-core-hashing = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30" }
sp-debug-derive = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30" }
sp-externalities = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30" }
sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30" }
sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30" }
sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30" }
sp-panic-handler = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30" }
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30" }
sp-runtime-interface = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30" }
sp-runtime-interface-proc-macro = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30" }
sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30" }
sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30" }
sp-storage = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30" }
sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30" }
sp-trie = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30" }
sp-wasm-interface = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30" }
[workspace.dependencies]
tendermint = { git = "https://github.com/composableFi/tendermint-rs", rev = "2c513dcaf2385d5b5f55e129a5ed11cc8d8ad5d0", default-features = false }
tendermint-proto = { git = "https://github.com/composableFi/tendermint-rs", rev = "2c513dcaf2385d5b5f55e129a5ed11cc8d8ad5d0", default-features = false }
tendermint-light-client-verifier = { git = "https://github.com/composableFi/tendermint-rs", rev = "2c513dcaf2385d5b5f55e129a5ed11cc8d8ad5d0", default-features = false }