-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathCargo.toml
157 lines (148 loc) · 11 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
[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/ics07-tendermint-cw",
"light-clients/ics08-wasm",
"light-clients/ics10-grandpa",
# "light-clients/ics10-grandpa-cw",
# "light-clients/ics11-beefy",
# "light-clients/ics13-near",
"light-clients/icsxx-ethereum",
"light-clients/icsxx-ethereum-cw",
# hyperspace
"hyperspace",
"hyperspace/core",
"hyperspace/primitives",
# "hyperspace/parachain",
# "hyperspace/cosmos",
"hyperspace/testsuite",
# "hyperspace/metrics",
"hyperspace/ethereum",
# utilities
"utils/subxt/codegen",
"utils/subxt/generated",
"utils/parachain-node",
"utils/parachain-node/runtime",
"utils/compress",
# "utils/simnode"
"hyperspace/ethereum/evm-indexer"
]
[patch."https://github.com/paritytech/jsonrpsee"]
jsonrpsee = { version = "0.16.2" }
[patch."https://github.com/paritytech/substrate"]
sc-executor = { git = "https://github.com/paritytech//substrate.git", branch = "polkadot-v0.9.39" }
sc-executor-common = { git = "https://github.com/paritytech//substrate.git", branch = "polkadot-v0.9.39" }
sc-executor-wasmtime = { git = "https://github.com/paritytech//substrate.git", branch = "polkadot-v0.9.39" }
sp-api = { git = "https://github.com/paritytech//substrate.git", branch = "polkadot-v0.9.39" }
sp-api-proc-macro = { git = "https://github.com/paritytech//substrate.git", branch = "polkadot-v0.9.39" }
sp-application-crypto = { git = "https://github.com/paritytech//substrate.git", branch = "polkadot-v0.9.39" }
sp-arithmetic = { git = "https://github.com/paritytech//substrate.git", branch = "polkadot-v0.9.39" }
sp-core = { git = "https://github.com/paritytech//substrate.git", branch = "polkadot-v0.9.39" }
sp-core-hashing = { git = "https://github.com/paritytech//substrate.git", branch = "polkadot-v0.9.39" }
sp-consensus-slots = { git = "https://github.com/paritytech//substrate.git", branch = "polkadot-v0.9.39" }
sp-consensus-aura = { git = "https://github.com/paritytech//substrate.git", branch = "polkadot-v0.9.39" }
sp-debug-derive = { git = "https://github.com/paritytech//substrate.git", branch = "polkadot-v0.9.39" }
sp-externalities = { git = "https://github.com/paritytech//substrate.git", branch = "polkadot-v0.9.39" }
sp-io = { git = "https://github.com/paritytech//substrate.git", branch = "polkadot-v0.9.39" }
sp-keyring = { git = "https://github.com/paritytech//substrate.git", branch = "polkadot-v0.9.39" }
sp-keystore = { git = "https://github.com/paritytech//substrate.git", branch = "polkadot-v0.9.39" }
sp-panic-handler = { git = "https://github.com/paritytech//substrate.git", branch = "polkadot-v0.9.39" }
sp-runtime = { git = "https://github.com/paritytech//substrate.git", branch = "polkadot-v0.9.39" }
sp-runtime-interface = { git = "https://github.com/paritytech//substrate.git", branch = "polkadot-v0.9.39" }
sp-runtime-interface-proc-macro = { git = "https://github.com/paritytech//substrate.git", branch = "polkadot-v0.9.39" }
sp-state-machine = { git = "https://github.com/paritytech//substrate.git", branch = "polkadot-v0.9.39" }
sp-std = { git = "https://github.com/paritytech//substrate.git", branch = "polkadot-v0.9.39" }
sp-storage = { git = "https://github.com/paritytech//substrate.git", branch = "polkadot-v0.9.39" }
sp-tracing = { git = "https://github.com/paritytech//substrate.git", branch = "polkadot-v0.9.39" }
sp-trie = { git = "https://github.com/paritytech//substrate.git", branch = "polkadot-v0.9.39" }
sp-timestamp = { git = "https://github.com/paritytech//substrate.git", branch = "polkadot-v0.9.39" }
sp-version = { git = "https://github.com/paritytech//substrate.git", branch = "polkadot-v0.9.39" }
sp-version-proc-macro = { git = "https://github.com/paritytech//substrate.git", branch = "polkadot-v0.9.39" }
sp-wasm-interface = { git = "https://github.com/paritytech//substrate.git", branch = "polkadot-v0.9.39" }
sp-weights = { git = "https://github.com/paritytech//substrate.git", branch = "polkadot-v0.9.39" }
pallet-timestamp = { git = "https://github.com/paritytech//substrate.git", branch = "polkadot-v0.9.39" }
pallet-aura = { git = "https://github.com/paritytech//substrate.git", branch = "polkadot-v0.9.39" }
frame-system = { git = "https://github.com/paritytech//substrate.git", branch = "polkadot-v0.9.39" }
beefy-gadget = { git = "https://github.com/paritytech//substrate.git", branch = "polkadot-v0.9.39" }
beefy-gadget-rpc = { git = "https://github.com/paritytech//substrate.git", branch = "polkadot-v0.9.39" }
binary-merkle-tree = { git = "https://github.com/paritytech//substrate.git", branch = "polkadot-v0.9.39" }
fork-tree = { git = "https://github.com/paritytech//substrate.git", branch = "polkadot-v0.9.39" }
frame-benchmarking = { git = "https://github.com/paritytech//substrate.git", branch = "polkadot-v0.9.39" }
frame-support = { git = "https://github.com/paritytech//substrate.git", branch = "polkadot-v0.9.39" }
frame-support-procedural = { git = "https://github.com/paritytech//substrate.git", branch = "polkadot-v0.9.39" }
frame-support-procedural-tools = { git = "https://github.com/paritytech//substrate.git", branch = "polkadot-v0.9.39" }
frame-support-procedural-tools-derive = { git = "https://github.com/paritytech//substrate.git", branch = "polkadot-v0.9.39" }
mmr-gadget = { git = "https://github.com/paritytech//substrate.git", branch = "polkadot-v0.9.39" }
mmr-rpc = { git = "https://github.com/paritytech//substrate.git", branch = "polkadot-v0.9.39" }
pallet-assets = { git = "https://github.com/paritytech//substrate.git", branch = "polkadot-v0.9.39" }
pallet-authorship = { git = "https://github.com/paritytech//substrate.git", branch = "polkadot-v0.9.39" }
pallet-balances = { git = "https://github.com/paritytech//substrate.git", branch = "polkadot-v0.9.39" }
pallet-beefy = { git = "https://github.com/paritytech//substrate.git", branch = "polkadot-v0.9.39" }
pallet-beefy-mmr = { git = "https://github.com/paritytech//substrate.git", branch = "polkadot-v0.9.39" }
pallet-membership = { git = "https://github.com/paritytech//substrate.git", branch = "polkadot-v0.9.39" }
pallet-mmr = { git = "https://github.com/paritytech//substrate.git", branch = "polkadot-v0.9.39" }
pallet-session = { git = "https://github.com/paritytech//substrate.git", branch = "polkadot-v0.9.39" }
pallet-transaction-payment = { git = "https://github.com/paritytech//substrate.git", branch = "polkadot-v0.9.39" }
pallet-transaction-payment-rpc = { git = "https://github.com/paritytech//substrate.git", branch = "polkadot-v0.9.39" }
pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech//substrate.git", branch = "polkadot-v0.9.39" }
sc-block-builder = { git = "https://github.com/paritytech//substrate.git", branch = "polkadot-v0.9.39" }
sc-chain-spec = { git = "https://github.com/paritytech//substrate.git", branch = "polkadot-v0.9.39" }
sc-chain-spec-derive = { git = "https://github.com/paritytech//substrate.git", branch = "polkadot-v0.9.39" }
sc-client-api = { git = "https://github.com/paritytech//substrate.git", branch = "polkadot-v0.9.39" }
sc-consensus = { git = "https://github.com/paritytech//substrate.git", branch = "polkadot-v0.9.39" }
sc-finality-grandpa = { git = "https://github.com/paritytech//substrate.git", branch = "polkadot-v0.9.39" }
sc-finality-grandpa-rpc = { git = "https://github.com/paritytech//substrate.git", branch = "polkadot-v0.9.39" }
sc-keystore = { git = "https://github.com/paritytech//substrate.git", branch = "polkadot-v0.9.39" }
sc-network = { git = "https://github.com/paritytech//substrate.git", branch = "polkadot-v0.9.39" }
sc-network-common = { git = "https://github.com/paritytech//substrate.git", branch = "polkadot-v0.9.39" }
sc-network-gossip = { git = "https://github.com/paritytech//substrate.git", branch = "polkadot-v0.9.39" }
sc-offchain = { git = "https://github.com/paritytech//substrate.git", branch = "polkadot-v0.9.39" }
sc-peerset = { git = "https://github.com/paritytech//substrate.git", branch = "polkadot-v0.9.39" }
sc-rpc = { git = "https://github.com/paritytech//substrate.git", branch = "polkadot-v0.9.39" }
sc-rpc-api = { git = "https://github.com/paritytech//substrate.git", branch = "polkadot-v0.9.39" }
sc-rpc-server = { git = "https://github.com/paritytech//substrate.git", branch = "polkadot-v0.9.39" }
sc-telemetry = { git = "https://github.com/paritytech//substrate.git", branch = "polkadot-v0.9.39" }
sc-tracing = { git = "https://github.com/paritytech//substrate.git", branch = "polkadot-v0.9.39" }
sc-tracing-proc-macro = { git = "https://github.com/paritytech//substrate.git", branch = "polkadot-v0.9.39" }
sc-transaction-pool-api = { git = "https://github.com/paritytech//substrate.git", branch = "polkadot-v0.9.39" }
sc-utils = { git = "https://github.com/paritytech//substrate.git", branch = "polkadot-v0.9.39" }
sp-authority-discovery = { git = "https://github.com/paritytech//substrate.git", branch = "polkadot-v0.9.39" }
sp-beefy = { git = "https://github.com/paritytech//substrate.git", branch = "polkadot-v0.9.39" }
sp-block-builder = { git = "https://github.com/paritytech//substrate.git", branch = "polkadot-v0.9.39" }
sp-blockchain = { git = "https://github.com/paritytech//substrate.git", branch = "polkadot-v0.9.39" }
sp-consensus = { git = "https://github.com/paritytech//substrate.git", branch = "polkadot-v0.9.39" }
sp-core-hashing-proc-macro = { git = "https://github.com/paritytech//substrate.git", branch = "polkadot-v0.9.39" }
sp-database = { git = "https://github.com/paritytech//substrate.git", branch = "polkadot-v0.9.39" }
sp-finality-grandpa = { git = "https://github.com/paritytech//substrate.git", branch = "polkadot-v0.9.39" }
sp-inherents = { git = "https://github.com/paritytech//substrate.git", branch = "polkadot-v0.9.39" }
sp-maybe-compressed-blob = { git = "https://github.com/paritytech//substrate.git", branch = "polkadot-v0.9.39" }
sp-mmr-primitives = { git = "https://github.com/paritytech//substrate.git", branch = "polkadot-v0.9.39" }
sp-offchain = { git = "https://github.com/paritytech//substrate.git", branch = "polkadot-v0.9.39" }
sp-rpc = { git = "https://github.com/paritytech//substrate.git", branch = "polkadot-v0.9.39" }
sp-session = { git = "https://github.com/paritytech//substrate.git", branch = "polkadot-v0.9.39" }
sp-staking = { git = "https://github.com/paritytech//substrate.git", branch = "polkadot-v0.9.39" }
substrate-prometheus-endpoint = { git = "https://github.com/paritytech//substrate.git", branch = "polkadot-v0.9.39" }
[profile.release]
overflow-checks = true