forked from selendra/selendra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
244 lines (226 loc) · 17.1 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
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
[workspace]
members = [
"runtime",
"node",
"pallets/aleph",
"pallets/aleph/aleph-runtime-api",
"pallets/committee-management",
"pallets/elections",
"pallets/custom-signatures",
"pallets/dynamic-evm-base-fee",
"crate/finality-aleph",
"crate/chain-bootstrapper",
"crate/runtime-interfaces",
]
exclude = [
"crate/finalizer",
"crate/fork-off",
"crate/selendra-client"
]
resolver = "2"
[workspace.package]
authors = ["Selendra"]
edition = "2021"
repository = "https://github.com/selendra/selendra"
[profile.release]
panic = "unwind"
[profile.production]
inherits = "release"
lto = true
codegen-units = 1
[workspace.dependencies]
aleph-bft-crypto = { version = "0.9" }
aleph-bft-mock = { version = "0.14" }
aleph-bft-rmc = { version = "0.13" }
aleph-bft-types = { version = "0.13" }
async-trait = "0.1.80"
assert_matches = "1.3.0"
bn = { package = "substrate-bn", version = "0.6", default-features = false }
clap = { version = "4.4.12", features = ["derive", "deprecated"] }
derive_more = "0.99"
environmental = { version = "1.1.4", default-features = false }
ethereum = { version = "0.15.0", default-features = false }
ethereum-types = { version = "0.14.1", default-features = false }
evm = { version = "0.41.1", default-features = false }
futures = "0.3.30"
hash-db = { version = "0.16.0", default-features = false }
hex = { version = "0.4.3", default-features = false, features = ["alloc"] }
hex-literal = "0.4.1"
impl-serde = { version = "0.4.0", default-features = false }
impl-trait-for-tuples = "0.2.1"
jsonrpsee = "0.16.3"
kvdb-rocksdb = "0.19.0"
libsecp256k1 = { version = "0.7.1", default-features = false }
log = { version = "0.4.20", default-features = false }
num_enum = { version = "0.7.0", default-features = false }
num-traits = { version = "0.2", default-features = false }
parity-db = "0.4.12"
parking_lot = "0.12.1"
rand = { version = "0.8.5", default-features = false }
rand_pcg = { version = "0.3.1", default-features = false }
rlp = { version = "0.5.2", default-features = false }
parity-scale-codec = { version = "3.6.4", default-features = false, features = ["derive"] }
scale-info = { version = "2.10.0", default-features = false, features = ["derive"] }
serde = { version = "1.0.203", default-features = false, features = ["derive", "alloc"] }
serde_json = "1.0.117"
similar-asserts = "1.5.0"
sqlx = { version = "0.7.3", default-features = false, features = ["macros"] }
thiserror = "1.0.61"
tokio = "1.35.1"
anyhow = "1.0.86"
codec = { package = 'parity-scale-codec', version = "3.0.0", features = ['derive'] }
contract-transcode = "3.2.0"
ink_metadata = { version = "4.3.0" }
subxt = { version = "0.30.1", features = ["substrate-compat"] }
array-bytes = { version = "6" }
bytes = { version = "1.6" }
env_logger = { version = "0.10" }
futures-timer = { version = "3.0" }
ink = { version = "5.0.0-rc", default-features = false }
ip_network = { version = "0.4" }
libp2p = { version = "0.51" }
lru = { version = "0.10" }
paste = { version = "1.0" }
smallvec = { version = "1", default-features = false }
static_assertions = { version = "1.1" }
tiny-bip39 = { version = "1.0" }
ethers = { version = "2.0.9", default_features = false }
# Substrate Client
sc-basic-authorship = { git = "https://github.com/selendra/polkadot-sdk", branch = "selendra-1.6.0" }
sc-block-builder = { git = "https://github.com/selendra/polkadot-sdk", branch = "selendra-1.6.0" }
sc-chain-spec = { git = "https://github.com/selendra/polkadot-sdk", branch = "selendra-1.6.0" }
sc-cli = { git = "https://github.com/selendra/polkadot-sdk", branch = "selendra-1.6.0", default-features = false }
sc-client-api = { git = "https://github.com/selendra/polkadot-sdk", branch = "selendra-1.6.0" }
sc-client-db = { git = "https://github.com/selendra/polkadot-sdk", branch = "selendra-1.6.0", default-features = false }
sc-consensus = { git = "https://github.com/selendra/polkadot-sdk", branch = "selendra-1.6.0" }
sc-consensus-aura = { git = "https://github.com/selendra/polkadot-sdk", branch = "selendra-1.6.0" }
sc-consensus-slots = { git = "https://github.com/selendra/polkadot-sdk", branch = "selendra-1.6.0" }
sc-consensus-manual-seal = { git = "https://github.com/selendra/polkadot-sdk", branch = "selendra-1.6.0" }
sc-executor = { git = "https://github.com/selendra/polkadot-sdk", branch = "selendra-1.6.0" }
sc-keystore = { git = "https://github.com/selendra/polkadot-sdk", branch = "selendra-1.6.0" }
sc-network = { git = "https://github.com/selendra/polkadot-sdk", branch = "selendra-1.6.0" }
sc-network-common = { git = "https://github.com/selendra/polkadot-sdk", branch = "selendra-1.6.0" }
sc-network-light = { git = "https://github.com/selendra/polkadot-sdk", branch = "selendra-1.6.0" }
sc-network-sync = { git = "https://github.com/selendra/polkadot-sdk", branch = "selendra-1.6.0" }
sc-network-transactions = { git = "https://github.com/selendra/polkadot-sdk", branch = "selendra-1.6.0" }
sc-offchain = { git = "https://github.com/selendra/polkadot-sdk", branch = "selendra-1.6.0" }
sc-rpc = { git = "https://github.com/selendra/polkadot-sdk", branch = "selendra-1.6.0" }
sc-rpc-api = { git = "https://github.com/selendra/polkadot-sdk", branch = "selendra-1.6.0" }
sc-service = { git = "https://github.com/selendra/polkadot-sdk", branch = "selendra-1.6.0", default-features = false }
sc-telemetry = { git = "https://github.com/selendra/polkadot-sdk", branch = "selendra-1.6.0" }
sc-transaction-pool = { git = "https://github.com/selendra/polkadot-sdk", branch = "selendra-1.6.0" }
sc-transaction-pool-api = { git = "https://github.com/selendra/polkadot-sdk", branch = "selendra-1.6.0" }
sc-utils = { git = "https://github.com/selendra/polkadot-sdk", branch = "selendra-1.6.0" }
# Substrate Primitive
sp-api = { git = "https://github.com/selendra/polkadot-sdk", branch = "selendra-1.6.0", default-features = false }
sp-application-crypto = { git = "https://github.com/selendra/polkadot-sdk", branch = "selendra-1.6.0", default-features = false }
sp-arithmetic = { git = "https://github.com/selendra/polkadot-sdk", branch = "selendra-1.6.0", default-features = false }
sp-block-builder = { git = "https://github.com/selendra/polkadot-sdk", branch = "selendra-1.6.0", default-features = false }
sp-blockchain = { git = "https://github.com/selendra/polkadot-sdk", branch = "selendra-1.6.0" }
sp-consensus = { git = "https://github.com/selendra/polkadot-sdk", branch = "selendra-1.6.0" }
sp-consensus-aura = { git = "https://github.com/selendra/polkadot-sdk", branch = "selendra-1.6.0", default-features = false }
sp-consensus-slots = { git = "https://github.com/selendra/polkadot-sdk", branch = "selendra-1.6.0", default-features = false }
sp-core = { git = "https://github.com/selendra/polkadot-sdk", branch = "selendra-1.6.0", default-features = false }
sp-core-hashing = { git = "https://github.com/selendra/polkadot-sdk", branch = "selendra-1.6.0", default-features = false }
sp-core-hashing-proc-macro = { git = "https://github.com/selendra/polkadot-sdk", branch = "selendra-1.6.0", default-features = false }
sp-database = { git = "https://github.com/selendra/polkadot-sdk", branch = "selendra-1.6.0" }
sp-externalities = { git = "https://github.com/selendra/polkadot-sdk", branch = "selendra-1.6.0", default-features = false }
sp-genesis-builder = { git = "https://github.com/selendra/polkadot-sdk", branch = "selendra-1.6.0", default-features = false }
sp-inherents = { git = "https://github.com/selendra/polkadot-sdk", branch = "selendra-1.6.0", default-features = false }
sp-io = { git = "https://github.com/selendra/polkadot-sdk", branch = "selendra-1.6.0", default-features = false }
sp-keyring = { git = "https://github.com/selendra/polkadot-sdk", branch = "selendra-1.6.0" }
sp-keystore = { git = "https://github.com/selendra/polkadot-sdk", branch = "selendra-1.6.0" }
sp-offchain = { git = "https://github.com/selendra/polkadot-sdk", branch = "selendra-1.6.0", default-features = false }
sp-runtime = { git = "https://github.com/selendra/polkadot-sdk", branch = "selendra-1.6.0", default-features = false }
sp-runtime-interface = { git = "https://github.com/selendra/polkadot-sdk", branch = "selendra-1.6.0", default-features = false }
sp-session = { git = "https://github.com/selendra/polkadot-sdk", branch = "selendra-1.6.0", default-features = false }
sp-staking = { git = "https://github.com/selendra/polkadot-sdk", branch = "selendra-1.6.0", default-features = false }
sp-state-machine = { git = "https://github.com/selendra/polkadot-sdk", branch = "selendra-1.6.0", default-features = false }
sp-std = { git = "https://github.com/selendra/polkadot-sdk", branch = "selendra-1.6.0", default-features = false }
sp-storage = { git = "https://github.com/selendra/polkadot-sdk", branch = "selendra-1.6.0", default-features = false }
sp-timestamp = { git = "https://github.com/selendra/polkadot-sdk", branch = "selendra-1.6.0", default-features = false }
sp-transaction-pool = { git = "https://github.com/selendra/polkadot-sdk", branch = "selendra-1.6.0", default-features = false }
sp-trie = { git = "https://github.com/selendra/polkadot-sdk", branch = "selendra-1.6.0", default-features = false }
sp-version = { git = "https://github.com/selendra/polkadot-sdk", branch = "selendra-1.6.0", default-features = false }
sp-weights = { git = "https://github.com/selendra/polkadot-sdk", branch = "selendra-1.6.0", default-features = false }
# Substrate FRAME
frame-benchmarking = { git = "https://github.com/selendra/polkadot-sdk", branch = "selendra-1.6.0", default-features = false }
frame-election-provider-support = { git = "https://github.com/selendra/polkadot-sdk", branch = "selendra-1.6.0", default-features = false }
frame-executive = { git = "https://github.com/selendra/polkadot-sdk", branch = "selendra-1.6.0", default-features = false }
frame-support = { git = "https://github.com/selendra/polkadot-sdk", branch = "selendra-1.6.0", default-features = false }
frame-system = { git = "https://github.com/selendra/polkadot-sdk", branch = "selendra-1.6.0", default-features = false }
frame-system-benchmarking = { git = "https://github.com/selendra/polkadot-sdk", branch = "selendra-1.6.0", default-features = false }
frame-system-rpc-runtime-api = { git = "https://github.com/selendra/polkadot-sdk", branch = "selendra-1.6.0", default-features = false }
# Substrate Pallet
pallet-aura = { git = "https://github.com/selendra/polkadot-sdk", branch = "selendra-1.6.0", default-features = false }
pallet-authorship = { git = "https://github.com/selendra/polkadot-sdk", branch = "selendra-1.6.0", default-features = false }
pallet-balances = { git = "https://github.com/selendra/polkadot-sdk", branch = "selendra-1.6.0", default-features = false }
pallet-identity = { git = "https://github.com/selendra/polkadot-sdk", branch = "selendra-1.6.0", default-features = false }
pallet-indices = { git = "https://github.com/selendra/polkadot-sdk", branch = "selendra-1.6.0", default-features = false }
pallet-multisig = { git = "https://github.com/selendra/polkadot-sdk", branch = "selendra-1.6.0", default-features = false }
pallet-session = { git = "https://github.com/selendra/polkadot-sdk", branch = "selendra-1.6.0", default-features = false }
pallet-proxy = { git = "https://github.com/selendra/polkadot-sdk", branch = "selendra-1.6.0", default-features = false }
pallet-recovery = { git = "https://github.com/selendra/polkadot-sdk", branch = "selendra-1.6.0", default-features = false }
pallet-staking = { git = "https://github.com/selendra/polkadot-sdk", branch = "selendra-1.6.0", default-features = false }
pallet-staking-runtime-api = { git = "https://github.com/selendra/polkadot-sdk", branch = "selendra-1.6.0", default-features = false }
pallet-sudo = { git = "https://github.com/selendra/polkadot-sdk", branch = "selendra-1.6.0", default-features = false }
pallet-timestamp = { git = "https://github.com/selendra/polkadot-sdk", branch = "selendra-1.6.0", default-features = false }
pallet-transaction-payment = { git = "https://github.com/selendra/polkadot-sdk", branch = "selendra-1.6.0", default-features = false }
pallet-transaction-payment-rpc = { git = "https://github.com/selendra/polkadot-sdk", branch = "selendra-1.6.0" }
pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/selendra/polkadot-sdk", branch = "selendra-1.6.0", default-features = false }
pallet-utility = { git = "https://github.com/selendra/polkadot-sdk", branch = "selendra-1.6.0", default-features = false }
# Substrate Utility
frame-benchmarking-cli = { git = "https://github.com/selendra/polkadot-sdk", branch = "selendra-1.6.0" }
prometheus-endpoint = { package = "substrate-prometheus-endpoint", git = "https://github.com/selendra/polkadot-sdk", branch = "selendra-1.6.0" }
substrate-build-script-utils = { git = "https://github.com/selendra/polkadot-sdk", branch = "selendra-1.6.0" }
substrate-frame-rpc-system = { git = "https://github.com/selendra/polkadot-sdk", branch = "selendra-1.6.0" }
substrate-test-client = { git = "https://github.com/selendra/polkadot-sdk", branch = "selendra-1.6.0" }
substrate-test-runtime = { git = "https://github.com/selendra/polkadot-sdk", branch = "selendra-1.6.0" }
substrate-test-runtime-client = { git = "https://github.com/selendra/polkadot-sdk", branch = "selendra-1.6.0" }
substrate-wasm-builder = { git = "https://github.com/selendra/polkadot-sdk", branch = "selendra-1.6.0" }
# Frontier Client
fc-api = { git = "https://github.com/selendra/frontier", branch = "selendra-1.6.0" }
fc-cli = { git = "https://github.com/selendra/frontier", branch = "selendra-1.6.0", default-features = false }
fc-consensus = { git = "https://github.com/selendra/frontier", branch = "selendra-1.6.0" }
fc-db = { git = "https://github.com/selendra/frontier", branch = "selendra-1.6.0", default-features = false }
fc-mapping-sync = { git = "https://github.com/selendra/frontier", branch = "selendra-1.6.0", default-features = false }
fc-rpc = { git = "https://github.com/selendra/frontier", branch = "selendra-1.6.0", default-features = false }
fc-rpc-core = { git = "https://github.com/selendra/frontier", branch = "selendra-1.6.0" }
fc-storage = { git = "https://github.com/selendra/frontier", branch = "selendra-1.6.0" }
# Frontier Primitive
fp-account = { git = "https://github.com/selendra/frontier", branch = "selendra-1.6.0", default-features = false }
fp-consensus = { git = "https://github.com/selendra/frontier", branch = "selendra-1.6.0", default-features = false }
fp-dynamic-fee = { git = "https://github.com/selendra/frontier", branch = "selendra-1.6.0", default-features = false }
fp-ethereum = { git = "https://github.com/selendra/frontier", branch = "selendra-1.6.0", default-features = false }
fp-evm = { git = "https://github.com/selendra/frontier", branch = "selendra-1.6.0", default-features = false }
fp-rpc = { git = "https://github.com/selendra/frontier", branch = "selendra-1.6.0", default-features = false }
fp-self-contained = { git = "https://github.com/selendra/frontier", branch = "selendra-1.6.0", default-features = false }
fp-storage = { git = "https://github.com/selendra/frontier", branch = "selendra-1.6.0", default-features = false }
# Frontier FRAME
pallet-base-fee = { git = "https://github.com/selendra/frontier", branch = "selendra-1.6.0", default-features = false }
pallet-dynamic-fee = { git = "https://github.com/selendra/frontier", branch = "selendra-1.6.0", default-features = false }
pallet-ethereum = { git = "https://github.com/selendra/frontier", branch = "selendra-1.6.0", default-features = false }
pallet-evm = { git = "https://github.com/selendra/frontier", branch = "selendra-1.6.0", default-features = false }
pallet-evm-chain-id = { git = "https://github.com/selendra/frontier", branch = "selendra-1.6.0", default-features = false }
pallet-evm-precompile-modexp = { git = "https://github.com/selendra/frontier", branch = "selendra-1.6.0", default-features = false }
pallet-evm-precompile-sha3fips = { git = "https://github.com/selendra/frontier", branch = "selendra-1.6.0", default-features = false }
pallet-evm-precompile-simple = { git = "https://github.com/selendra/frontier", branch = "selendra-1.6.0", default-features = false }
pallet-evm-test-vector-support = { git = "https://github.com/selendra/frontier", branch = "selendra-1.6.0" }
pallet-hotfix-sufficients = { git = "https://github.com/selendra/frontier", branch = "selendra-1.6.0", default-features = false }
pallet-custom-signatures = { path = "pallets/custom-signatures", default-features = false }
pallet-dynamic-evm-base-fee = { path = "pallets/dynamic-evm-base-fee", default-features = false }
halo2_proofs = { git = "https://github.com/Cardinal-Cryptography/pse-halo2", branch = "aleph", default-features = false }
# Pallet
pallet-aleph = { path = "pallets/aleph", default-features = false }
pallet-aleph-runtime-api = { path = "pallets/aleph/aleph-runtime-api", default-features = false }
pallet-committee-management = { path = "pallets/committee-management", default-features = false }
pallet-elections = { path = "pallets/elections", default-features = false }
# crate
finality-aleph = { path = "crate/finality-aleph" }
rate-limiter = { path = "crate/rate-limiter" }
network-clique = { path = "crate/clique" }
client-runtime-api = { path = "crate/client-runtime-api", default-features = false }
selendra-runtime-interfaces = { path = "crate/runtime-interfaces", default-features = false }
# Selendra
selendra-runtime = { path = "runtime"}
selendra-primitives = { path = "primitives", default-features = false}