forked from moondance-labs/tanssi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
212 lines (193 loc) · 17.7 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
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
[workspace]
members = [
"client/*",
"container-chains/pallets/*",
"container-chains/primitives/*",
"container-chains/templates/frontier/*",
"container-chains/templates/simple/*",
"node",
"pallets/*",
"pallets/collator-assignment/rpc/runtime-api",
"pallets/registrar/rpc/runtime-api",
"primitives/*",
"runtime/dancebox",
"test-sproof-builder",
]
resolver = "2"
[workspace.package]
authors = [ "Moondance Labs" ]
repository = "https://github.com/moondance-labs/tanssi"
[workspace.dependencies]
# Members
pallet-author-noting = { path = "pallets/author-noting", default-features = false }
pallet-authority-assignment = { path = "pallets/authority-assignment", default-features = false }
pallet-authority-mapping = { path = "pallets/authority-mapping", default-features = false }
pallet-collator-assignment = { path = "pallets/collator-assignment", default-features = false }
pallet-collator-assignment-runtime-api = { path = "pallets/collator-assignment/rpc/runtime-api", default-features = false }
pallet-configuration = { path = "pallets/configuration", default-features = false }
pallet-initializer = { path = "pallets/initializer", default-features = false }
pallet-registrar = { path = "pallets/registrar", default-features = false }
pallet-registrar-runtime-api = { path = "pallets/registrar/rpc/runtime-api", default-features = false }
ccp-authorities-noting-inherent = { path = "container-chains/primitives/authorities-noting-inherent", default-features = false }
container-chain-template-runtime = { path = "container-chain-template/runtime", default-features = false }
pallet-cc-authorities-noting = { path = "container-chains/pallets/authorities-noting", default-features = false }
dancebox-runtime = { path = "runtime/dancebox", default-features = false }
tc-consensus = { path = "client/consensus" }
tc-orchestrator-chain-interface = { path = "client/orchestrator-chain-interface" }
test-relay-sproof-builder = { path = "test-sproof-builder" }
tp-author-noting-inherent = { path = "primitives/author-noting-inherent", default-features = false }
tp-chain-state-snapshot = { path = "primitives/chain-state-snapshot", default-features = false }
tp-collator-assignment = { path = "primitives/collator-assignment", default-features = false }
tp-consensus = { path = "primitives/consensus", default-features = false }
tp-container-chain-genesis-data = { path = "primitives/container-chain-genesis-data", default-features = false }
tp-core = { path = "primitives/core", default-features = false }
tp-traits = { path = "primitives/traits", default-features = false }
# Nimbus (wasm)
nimbus-consensus = { git = "https://github.com/moondance-labs/nimbus", branch = "tanssi-polkadot-v0.9.40" }
nimbus-primitives = { git = "https://github.com/moondance-labs/nimbus", branch = "tanssi-polkadot-v0.9.40", default-features = false }
pallet-author-inherent = { git = "https://github.com/moondance-labs/nimbus", branch = "tanssi-polkadot-v0.9.40", default-features = false }
# Substrate (wasm)
frame-benchmarking = { git = "https://github.com/moondance-labs/substrate", branch = "tanssi-polkadot-v0.9.40", default-features = false }
frame-executive = { git = "https://github.com/moondance-labs/substrate", branch = "tanssi-polkadot-v0.9.40", default-features = false }
frame-support = { git = "https://github.com/moondance-labs/substrate.git", branch = "tanssi-polkadot-v0.9.40", version = "4.0.0-dev", default-features = false }
frame-system = { git = "https://github.com/moondance-labs/substrate.git", branch = "tanssi-polkadot-v0.9.40", version = "4.0.0-dev", default-features = false }
frame-system-benchmarking = { git = "https://github.com/moondance-labs/substrate", branch = "tanssi-polkadot-v0.9.40", default-features = false }
frame-system-rpc-runtime-api = { git = "https://github.com/moondance-labs/substrate", branch = "tanssi-polkadot-v0.9.40", default-features = false }
frame-try-runtime = { git = "https://github.com/moondance-labs/substrate", branch = "tanssi-polkadot-v0.9.40", default-features = false }
pallet-aura = { git = "https://github.com/moondance-labs/substrate", branch = "tanssi-polkadot-v0.9.40", default-features = false }
pallet-authorship = { git = "https://github.com/moondance-labs/substrate", branch = "tanssi-polkadot-v0.9.40", default-features = false }
pallet-balances = { git = "https://github.com/moondance-labs/substrate", branch = "tanssi-polkadot-v0.9.40", default-features = false }
pallet-root-testing = { git = "https://github.com/moondance-labs/substrate", branch = "tanssi-polkadot-v0.9.40", default-features = false }
pallet-session = { git = "https://github.com/moondance-labs/substrate", branch = "tanssi-polkadot-v0.9.40", default-features = false }
pallet-sudo = { git = "https://github.com/moondance-labs/substrate", branch = "tanssi-polkadot-v0.9.40", default-features = false }
pallet-timestamp = { git = "https://github.com/moondance-labs/substrate", branch = "tanssi-polkadot-v0.9.40", default-features = false }
pallet-transaction-payment = { git = "https://github.com/moondance-labs/substrate", branch = "tanssi-polkadot-v0.9.40", default-features = false }
pallet-utility = { git = "https://github.com/moondance-labs/substrate", branch = "tanssi-polkadot-v0.9.40", default-features = false }
parity-scale-codec = { version = "3.0.0", default-features = false, features = [ "derive", "max-encoded-len" ] }
scale-info = { version = "2.1.1", default-features = false }
sp-api = { git = "https://github.com/moondance-labs/substrate", branch = "tanssi-polkadot-v0.9.40", default-features = false }
sp-application-crypto = { git = "https://github.com/moondance-labs/substrate", branch = "tanssi-polkadot-v0.9.40", default-features = false }
sp-block-builder = { git = "https://github.com/moondance-labs/substrate", branch = "tanssi-polkadot-v0.9.40", default-features = false }
sp-consensus = { git = "https://github.com/moondance-labs/substrate", branch = "tanssi-polkadot-v0.9.40", default-features = false }
sp-consensus-aura = { git = "https://github.com/moondance-labs/substrate", branch = "tanssi-polkadot-v0.9.40", default-features = false }
sp-consensus-slots = { git = "https://github.com/moondance-labs/substrate", branch = "tanssi-polkadot-v0.9.40", default-features = false }
sp-core = { git = "https://github.com/moondance-labs/substrate.git", branch = "tanssi-polkadot-v0.9.40", version = "7.0.0", default-features = false }
sp-inherents = { git = "https://github.com/moondance-labs/substrate", branch = "tanssi-polkadot-v0.9.40", default-features = false }
sp-io = { git = "https://github.com/moondance-labs/substrate.git", branch = "tanssi-polkadot-v0.9.40", version = "7.0.0", default-features = false }
sp-offchain = { git = "https://github.com/moondance-labs/substrate", branch = "tanssi-polkadot-v0.9.40", default-features = false }
sp-runtime = { git = "https://github.com/moondance-labs/substrate.git", branch = "tanssi-polkadot-v0.9.40", version = "7.0.0", default-features = false }
sp-session = { git = "https://github.com/moondance-labs/substrate", branch = "tanssi-polkadot-v0.9.40", default-features = false }
sp-state-machine = { git = "https://github.com/moondance-labs/substrate", branch = "tanssi-polkadot-v0.9.40", default-features = false }
sp-std = { git = "https://github.com/moondance-labs/substrate", branch = "tanssi-polkadot-v0.9.40", default-features = false }
sp-transaction-pool = { git = "https://github.com/moondance-labs/substrate", branch = "tanssi-polkadot-v0.9.40", default-features = false }
sp-trie = { git = "https://github.com/moondance-labs/substrate", branch = "tanssi-polkadot-v0.9.40", default-features = false }
sp-version = { git = "https://github.com/moondance-labs/substrate", branch = "tanssi-polkadot-v0.9.40", default-features = false }
# Substrate (client)
frame-benchmarking-cli = { git = "https://github.com/moondance-labs/substrate", branch = "tanssi-polkadot-v0.9.40" }
pallet-transaction-payment-rpc = { git = "https://github.com/moondance-labs/substrate", branch = "tanssi-polkadot-v0.9.40", default-features = false }
pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/moondance-labs/substrate", branch = "tanssi-polkadot-v0.9.40", default-features = false }
sc-basic-authorship = { git = "https://github.com/moondance-labs/substrate", branch = "tanssi-polkadot-v0.9.40" }
sc-chain-spec = { git = "https://github.com/moondance-labs/substrate", branch = "tanssi-polkadot-v0.9.40" }
sc-cli = { git = "https://github.com/moondance-labs/substrate", branch = "tanssi-polkadot-v0.9.40" }
sc-client-api = { git = "https://github.com/moondance-labs/substrate", branch = "tanssi-polkadot-v0.9.40" }
sc-consensus = { git = "https://github.com/moondance-labs/substrate", branch = "tanssi-polkadot-v0.9.40" }
sc-consensus-aura = { git = "https://github.com/moondance-labs/substrate", branch = "tanssi-polkadot-v0.9.40" }
sc-consensus-manual-seal = { git = "https://github.com/moondance-labs/substrate", branch = "tanssi-polkadot-v0.9.40" }
sc-consensus-slots = { git = "https://github.com/moondance-labs/substrate", branch = "tanssi-polkadot-v0.9.40" }
sc-executor = { git = "https://github.com/moondance-labs/substrate", branch = "tanssi-polkadot-v0.9.40" }
sc-network = { git = "https://github.com/moondance-labs/substrate", branch = "tanssi-polkadot-v0.9.40" }
sc-network-common = { git = "https://github.com/moondance-labs/substrate", branch = "tanssi-polkadot-v0.9.40" }
sc-network-sync = { git = "https://github.com/moondance-labs/substrate", branch = "tanssi-polkadot-v0.9.40" }
sc-rpc = { git = "https://github.com/moondance-labs/substrate", branch = "tanssi-polkadot-v0.9.40" }
sc-service = { git = "https://github.com/moondance-labs/substrate", branch = "tanssi-polkadot-v0.9.40" }
sc-sysinfo = { git = "https://github.com/moondance-labs/substrate", branch = "tanssi-polkadot-v0.9.40" }
sc-telemetry = { git = "https://github.com/moondance-labs/substrate", branch = "tanssi-polkadot-v0.9.40" }
sc-tracing = { git = "https://github.com/moondance-labs/substrate", branch = "tanssi-polkadot-v0.9.40" }
sc-transaction-pool = { git = "https://github.com/moondance-labs/substrate", branch = "tanssi-polkadot-v0.9.40" }
sc-transaction-pool-api = { git = "https://github.com/moondance-labs/substrate", branch = "tanssi-polkadot-v0.9.40" }
sp-blockchain = { git = "https://github.com/moondance-labs/substrate", branch = "tanssi-polkadot-v0.9.40" }
sp-externalities = { git = "https://github.com/moondance-labs/substrate", branch = "tanssi-polkadot-v0.9.40" }
sp-keystore = { git = "https://github.com/moondance-labs/substrate", branch = "tanssi-polkadot-v0.9.40" }
sp-storage = { git = "https://github.com/moondance-labs/substrate", branch = "tanssi-polkadot-v0.9.40" }
sp-timestamp = { git = "https://github.com/moondance-labs/substrate", branch = "tanssi-polkadot-v0.9.40" }
substrate-build-script-utils = { git = "https://github.com/moondance-labs/substrate", branch = "tanssi-polkadot-v0.9.40" }
substrate-frame-rpc-system = { git = "https://github.com/moondance-labs/substrate", branch = "tanssi-polkadot-v0.9.40" }
substrate-prometheus-endpoint = { git = "https://github.com/moondance-labs/substrate", branch = "tanssi-polkadot-v0.9.40" }
substrate-wasm-builder = { git = "https://github.com/moondance-labs/substrate", branch = "tanssi-polkadot-v0.9.40" }
try-runtime-cli = { git = "https://github.com/moondance-labs/substrate", branch = "tanssi-polkadot-v0.9.40" }
# Polkadot (wasm)
polkadot-parachain = { git = "https://github.com/moondance-labs/polkadot", branch = "tanssi-polkadot-v0.9.40", default-features = false }
polkadot-runtime-common = { git = "https://github.com/moondance-labs/polkadot", branch = "tanssi-polkadot-v0.9.40", default-features = false }
# Polkadot (client)
polkadot-cli = { git = "https://github.com/moondance-labs/polkadot", branch = "tanssi-polkadot-v0.9.40" }
polkadot-overseer = { git = "https://github.com/moondance-labs/polkadot", branch = "tanssi-polkadot-v0.9.40" }
polkadot-primitives = { git = "https://github.com/moondance-labs/polkadot", branch = "tanssi-polkadot-v0.9.40" }
polkadot-service = { git = "https://github.com/moondance-labs/polkadot", branch = "tanssi-polkadot-v0.9.40" }
# Cumulus (wasm)
cumulus-pallet-aura-ext = { git = "https://github.com/moondance-labs/cumulus", branch = "tanssi-polkadot-v0.9.40", default-features = false }
cumulus-pallet-parachain-system = { git = "https://github.com/moondance-labs/cumulus", branch = "tanssi-polkadot-v0.9.40", default-features = false }
cumulus-pallet-session-benchmarking = { git = "https://github.com/moondance-labs/cumulus", branch = "tanssi-polkadot-v0.9.40", default-features = false }
cumulus-primitives-core = { git = "https://github.com/moondance-labs/cumulus", branch = "tanssi-polkadot-v0.9.40", default-features = false }
cumulus-primitives-timestamp = { git = "https://github.com/moondance-labs/cumulus", branch = "tanssi-polkadot-v0.9.40", default-features = false }
cumulus-primitives-utility = { git = "https://github.com/moondance-labs/cumulus", branch = "tanssi-polkadot-v0.9.40", default-features = false }
pallet-collator-selection = { git = "https://github.com/moondance-labs/cumulus", branch = "tanssi-polkadot-v0.9.40", default-features = false }
parachain-info = { git = "https://github.com/moondance-labs/cumulus", branch = "tanssi-polkadot-v0.9.40", default-features = false }
# Cumulus (client)
cumulus-client-cli = { git = "https://github.com/moondance-labs/cumulus", branch = "tanssi-polkadot-v0.9.40", default-features = false }
cumulus-client-collator = { git = "https://github.com/moondance-labs/cumulus", branch = "tanssi-polkadot-v0.9.40", default-features = false }
cumulus-client-consensus-aura = { git = "https://github.com/moondance-labs/cumulus", branch = "tanssi-polkadot-v0.9.40", default-features = false }
cumulus-client-consensus-common = { git = "https://github.com/moondance-labs/cumulus", branch = "tanssi-polkadot-v0.9.40", default-features = false }
cumulus-client-network = { git = "https://github.com/moondance-labs/cumulus", branch = "tanssi-polkadot-v0.9.40", default-features = false }
cumulus-client-service = { git = "https://github.com/moondance-labs/cumulus", branch = "tanssi-polkadot-v0.9.40", default-features = false }
cumulus-primitives-parachain-inherent = { git = "https://github.com/moondance-labs/cumulus", branch = "tanssi-polkadot-v0.9.40", default-features = false }
cumulus-relay-chain-interface = { git = "https://github.com/moondance-labs/cumulus", branch = "tanssi-polkadot-v0.9.40", default-features = false }
# Frontier (wasm)
fp-account = { git = "https://github.com/moondance-labs/frontier", branch = "tanssi-polkadot-v0.9.40", default-features = false }
fp-evm = { git = "https://github.com/moondance-labs/frontier", branch = "tanssi-polkadot-v0.9.40", default-features = false }
fp-rpc = { git = "https://github.com/moondance-labs/frontier", branch = "tanssi-polkadot-v0.9.40", default-features = false }
fp-self-contained = { git = "https://github.com/moondance-labs/frontier", branch = "tanssi-polkadot-v0.9.40", default-features = false }
pallet-base-fee = { git = "https://github.com/moondance-labs/frontier", branch = "tanssi-polkadot-v0.9.40", default-features = false }
pallet-dynamic-fee = { git = "https://github.com/moondance-labs/frontier", branch = "tanssi-polkadot-v0.9.40", default-features = false }
pallet-ethereum = { git = "https://github.com/moondance-labs/frontier", branch = "tanssi-polkadot-v0.9.40", default-features = false }
pallet-evm = { git = "https://github.com/moondance-labs/frontier", branch = "tanssi-polkadot-v0.9.40", default-features = false }
pallet-evm-chain-id = { git = "https://github.com/moondance-labs/frontier", branch = "tanssi-polkadot-v0.9.40", default-features = false }
pallet-evm-precompile-modexp = { git = "https://github.com/moondance-labs/frontier", branch = "tanssi-polkadot-v0.9.40", default-features = false }
pallet-evm-precompile-sha3fips = { git = "https://github.com/moondance-labs/frontier", branch = "tanssi-polkadot-v0.9.40", default-features = false }
pallet-evm-precompile-simple = { git = "https://github.com/moondance-labs/frontier", branch = "tanssi-polkadot-v0.9.40", default-features = false }
pallet-hotfix-sufficients = { git = "https://github.com/moondance-labs/frontier", branch = "tanssi-polkadot-v0.9.40", default-features = false }
# Frontier (client)
fc-cli = { git = "https://github.com/moondance-labs/frontier", branch = "tanssi-polkadot-v0.9.40", default-features = false }
fc-consensus = { git = "https://github.com/moondance-labs/frontier", branch = "tanssi-polkadot-v0.9.40", default-features = false }
fc-db = { git = "https://github.com/moondance-labs/frontier", branch = "tanssi-polkadot-v0.9.40", default-features = false }
fc-mapping-sync = { git = "https://github.com/moondance-labs/frontier", branch = "tanssi-polkadot-v0.9.40", default-features = false }
fc-rpc = { git = "https://github.com/moondance-labs/frontier", branch = "tanssi-polkadot-v0.9.40", features = [
"rpc-binary-search-estimate",
] }
fc-rpc-core = { git = "https://github.com/moondance-labs/frontier", branch = "tanssi-polkadot-v0.9.40", default-features = false }
fc-storage = { git = "https://github.com/moondance-labs/frontier", branch = "tanssi-polkadot-v0.9.40", default-features = false }
# General (wasm)
hex-literal = { version = "0.3.4" }
log = { version = "0.4.17", default-features = false }
serde = { version = "1.0.152", default-features = false }
smallvec = "1.10.0"
# General (client)
async-io = "1.3"
async-trait = "0.1"
clap = { version = "4.1.6", features = [ "derive" ] }
exit-future = { version = "0.2.0" }
flume = "0.10.9"
futures = { version = "0.3.1" }
hex = { version = "0.4.3", default-features = false }
jsonrpsee = { version = "0.16.2", features = [ "server" ] }
serde_json = { version = "1.0.96", default-features = false }
thiserror = { version = "1.0.40" }
tokio = { version = "1.26.0", default-features = false }
tracing = { version = "0.1.37" }
url = "2.2.2"
[profile.production]
codegen-units = 1
inherits = "release"
lto = true
[profile.release]
opt-level = 3
panic = "unwind"