-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
186 lines (173 loc) · 12.8 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
[workspace]
resolver = "2"
members = [
"node/core",
"node/common",
"node/dev",
"node/testnet",
"node/mainnet",
"runtime/common",
"runtime/dev",
"runtime/testnet",
"runtime/mainnet",
"primitives/core",
"pallets/*",
]
[profile.release]
panic = "unwind"
[workspace.package]
authors = ["BoolNetwork"]
homepage = ""
edition = "2021"
license = "Apache-2.0"
repository = ""
[workspace.dependencies]
# General
substrate-fixed = { git = "https://github.com/encointer/substrate-fixed", default-features = false }
parity-scale-codec = { version = "3.2.2", default-features = false, features = [
"derive",
] }
scale-info = { version = "2.0", default-features = false, features = [
"derive",
] }
evm = { git = "https://github.com/rust-blockchain/evm", rev = "b7b82c7e1fc57b7449d6dfa6826600de37cc1e65", default-features = false }
environmental = { version = "1.1.2", default-features = false }
clap = { version = "4.0.9", features = ["derive"] }
hex = { version = "0.4.3", default-features = false }
rlp = { version = "0.5", default-features = false }
sha3 = { version = "0.10", default-features = false }
num_enum = { version = "0.5.3", default-features = false }
impl-serde = { version = "0.3.1", default-features = false }
blake2-rfc = { version = "0.2.18", default-features = false }
libsecp256k1 = { version = "0.7", default-features = false }
serde = { version = "1.0.101", default-features = false }
jsonrpsee = { version = "0.16.2", default-features = false }
rustc-hex = { version = "2.0.1", default-features = false }
log = { version = "0.4", default-features = false }
impl-trait-for-tuples = "0.2.2"
similar-asserts = "1.1.0"
prettyplease = "0.1.18"
hex-literal = "0.3.4"
derive_more = "0.99"
proc-macro2 = "1.0"
serde_json = "1.0"
futures = "0.3.1"
tokio = "1.28.2"
paste = "1.0.8"
affix = "0.1.2"
quote = "1.0"
case = "1.0"
syn = "1.0"
bp-core = { default-features = false, path = "primitives/core" }
account = { default-features = false, path = "primitives/account" }
# zenlayer Runtime
zenlayer-common-constants = { default-features = false, path = "runtime/common/constants" }
zenlayer-dev-constants = { default-features = false, path = "runtime/dev/constants" }
zenlayer-testnet-constants = { default-features = false, path = "runtime/testnet/constants" }
zenlayer-mainnet-constants = { default-features = false, path = "runtime/mainnet/constants" }
zenlayer-common-runtime = { default-features = false, path = "runtime/common" }
zenlayer-dev-runtime = { path = "runtime/dev" }
zenlayer-testnet-runtime = { path = "runtime/testnet" }
zenlayer-mainnet-runtime = { path = "runtime/mainnet" }
# zenlayer Client
zenlayer-common-node = { path = "node/common" }
zenlayer-dev-node = { path = "node/dev" }
zenlayer-testnet-node = { path = "node/testnet" }
zenlayer-mainnet-node = { path = "node/mainnet" }
# Substrate Client
sc-cli = { git = "https://github.com/boolnetwork/polkadot-sdk", branch = "zenlayer" }
sc-client-api = { git = "https://github.com/boolnetwork/polkadot-sdk", branch = "zenlayer" }
sc-rpc = { git = "https://github.com/boolnetwork/polkadot-sdk", branch = "zenlayer" }
sc-rpc-api = { git = "https://github.com/boolnetwork/polkadot-sdk", branch = "zenlayer" }
sc-transaction-pool = { git = "https://github.com/boolnetwork/polkadot-sdk", branch = "zenlayer" }
sc-transaction-pool-api = { git = "https://github.com/boolnetwork/polkadot-sdk", branch = "zenlayer" }
sc-chain-spec = { git = "https://github.com/boolnetwork/polkadot-sdk", branch = "zenlayer" }
sc-consensus = { git = "https://github.com/boolnetwork/polkadot-sdk", branch = "zenlayer" }
sc-consensus-aura = { git = "https://github.com/boolnetwork/polkadot-sdk", branch = "zenlayer" }
sc-consensus-grandpa = { git = "https://github.com/boolnetwork/polkadot-sdk", branch = "zenlayer" }
sc-consensus-grandpa-rpc = { git = "https://github.com/boolnetwork/polkadot-sdk", branch = "zenlayer" }
sc-consensus-manual-seal = { git = "https://github.com/boolnetwork/polkadot-sdk", branch = "zenlayer" }
sc-network = { git = "https://github.com/boolnetwork/polkadot-sdk", branch = "zenlayer" }
sc-network-sync = { git = "https://github.com/boolnetwork/polkadot-sdk", branch = "zenlayer" }
sc-service = { git = "https://github.com/boolnetwork/polkadot-sdk", branch = "zenlayer" }
sc-executor = { git = "https://github.com/boolnetwork/polkadot-sdk", branch = "zenlayer" }
sc-telemetry = { git = "https://github.com/boolnetwork/polkadot-sdk", branch = "zenlayer" }
sc-basic-authorship = { git = "https://github.com/boolnetwork/polkadot-sdk", branch = "zenlayer" }
sc-offchain = { git = "https://github.com/boolnetwork/polkadot-sdk", branch = "zenlayer" }
substrate-prometheus-endpoint = { git = "https://github.com/boolnetwork/polkadot-sdk", branch = "zenlayer" }
# Substrate Primitive
sp-io = { default-features = false, git = "https://github.com/boolnetwork/polkadot-sdk", branch = "zenlayer" }
sp-api = { default-features = false, git = "https://github.com/boolnetwork/polkadot-sdk", branch = "zenlayer" }
sp-block-builder = { default-features = false, git = "https://github.com/boolnetwork/polkadot-sdk", branch = "zenlayer" }
sp-blockchain = { default-features = false, git = "https://github.com/boolnetwork/polkadot-sdk", branch = "zenlayer" }
sp-consensus = { default-features = false, git = "https://github.com/boolnetwork/polkadot-sdk", branch = "zenlayer" }
sp-consensus-aura = { default-features = false, git = "https://github.com/boolnetwork/polkadot-sdk", branch = "zenlayer" }
sp-consensus-grandpa = { default-features = false, git = "https://github.com/boolnetwork/polkadot-sdk", branch = "zenlayer" }
sp-core = { default-features = false, git = "https://github.com/boolnetwork/polkadot-sdk", branch = "zenlayer" }
sp-inherents = { default-features = false, git = "https://github.com/boolnetwork/polkadot-sdk", branch = "zenlayer" }
sp-offchain = { default-features = false, git = "https://github.com/boolnetwork/polkadot-sdk", branch = "zenlayer" }
sp-runtime = { default-features = false, git = "https://github.com/boolnetwork/polkadot-sdk", branch = "zenlayer" }
sp-runtime-interface = { default-features = false, git = "https://github.com/boolnetwork/polkadot-sdk", branch = "zenlayer" }
sp-session = { default-features = false, git = "https://github.com/boolnetwork/polkadot-sdk", branch = "zenlayer" }
sp-std = { default-features = false, git = "https://github.com/boolnetwork/polkadot-sdk", branch = "zenlayer" }
sp-transaction-pool = { default-features = false, git = "https://github.com/boolnetwork/polkadot-sdk", branch = "zenlayer" }
sp-version = { default-features = false, git = "https://github.com/boolnetwork/polkadot-sdk", branch = "zenlayer" }
sp-staking = { default-features = false, git = "https://github.com/boolnetwork/polkadot-sdk", branch = "zenlayer" }
sp-keystore = { default-features = false, git = "https://github.com/boolnetwork/polkadot-sdk", branch = "zenlayer" }
sp-timestamp = { default-features = false, git = "https://github.com/boolnetwork/polkadot-sdk", branch = "zenlayer" }
sp-rpc = { default-features = false, git = "https://github.com/boolnetwork/polkadot-sdk", branch = "zenlayer" }
sp-weights = { default-features = false, git = "https://github.com/boolnetwork/polkadot-sdk", branch = "zenlayer" }
sp-application-crypto = { default-features = false, git = "https://github.com/boolnetwork/polkadot-sdk", branch = "zenlayer" }
# Substrate FRAME
substrate-frame-rpc-system = { default-features = false, git = "https://github.com/boolnetwork/polkadot-sdk", branch = "zenlayer" }
frame-system = { default-features = false, git = "https://github.com/boolnetwork/polkadot-sdk", branch = "zenlayer" }
frame-support = { default-features = false, git = "https://github.com/boolnetwork/polkadot-sdk", branch = "zenlayer" }
frame-executive = { default-features = false, git = "https://github.com/boolnetwork/polkadot-sdk", branch = "zenlayer" }
frame-system-rpc-runtime-api = { default-features = false, git = "https://github.com/boolnetwork/polkadot-sdk", branch = "zenlayer" }
frame-benchmarking = { default-features = false, git = "https://github.com/boolnetwork/polkadot-sdk", branch = "zenlayer" }
frame-benchmarking-cli = { default-features = false, git = "https://github.com/boolnetwork/polkadot-sdk", branch = "zenlayer" }
frame-system-benchmarking = { default-features = false, git = "https://github.com/boolnetwork/polkadot-sdk", branch = "zenlayer" }
pallet-aura = { default-features = false, git = "https://github.com/boolnetwork/polkadot-sdk", branch = "zenlayer" }
pallet-balances = { default-features = false, git = "https://github.com/boolnetwork/polkadot-sdk", branch = "zenlayer" }
pallet-grandpa = { default-features = false, git = "https://github.com/boolnetwork/polkadot-sdk", branch = "zenlayer" }
pallet-sudo = { default-features = false, git = "https://github.com/boolnetwork/polkadot-sdk", branch = "zenlayer" }
pallet-timestamp = { default-features = false, git = "https://github.com/boolnetwork/polkadot-sdk", branch = "zenlayer" }
pallet-transaction-payment = { default-features = false, git = "https://github.com/boolnetwork/polkadot-sdk", branch = "zenlayer" }
pallet-transaction-payment-rpc = { default-features = false, git = "https://github.com/boolnetwork/polkadot-sdk", branch = "zenlayer" }
pallet-transaction-payment-rpc-runtime-api = { default-features = false, git = "https://github.com/boolnetwork/polkadot-sdk", branch = "zenlayer" }
pallet-session = { default-features = false, git = "https://github.com/boolnetwork/polkadot-sdk", branch = "zenlayer" }
pallet-validator-set = { default-features = false, path = "pallets/validator-set" }
# Substrate Builds
substrate-wasm-builder = { git = "https://github.com/boolnetwork/polkadot-sdk", branch = "zenlayer" }
substrate-build-script-utils = { git = "https://github.com/boolnetwork/polkadot-sdk", branch = "zenlayer" }
# Frontier Client
fc-db = { default-features = false, git = "https://github.com/boolnetwork/frontier", branch = "zenlayer" }
fc-rpc = { default-features = false, git = "https://github.com/boolnetwork/frontier", branch = "zenlayer" }
fc-mapping-sync = { default-features = false, git = "https://github.com/boolnetwork/frontier", branch = "zenlayer" }
fc-rpc-core = { default-features = false, git = "https://github.com/boolnetwork/frontier", branch = "zenlayer" }
fc-rpc-debug = { default-features = false, git = "https://github.com/boolnetwork/frontier", branch = "zenlayer" }
fc-rpc-trace = { default-features = false, git = "https://github.com/boolnetwork/frontier", branch = "zenlayer" }
fc-rpc-txpool = { default-features = false, git = "https://github.com/boolnetwork/frontier", branch = "zenlayer" }
# Frontier Primitive
fp-self-contained = { default-features = false, git = "https://github.com/boolnetwork/frontier", branch = "zenlayer" }
fp-storage = { default-features = false, git = "https://github.com/boolnetwork/frontier", branch = "zenlayer" }
fp-evm = { default-features = false, git = "https://github.com/boolnetwork/frontier", branch = "zenlayer" }
fp-ext = { default-features = false, git = "https://github.com/boolnetwork/frontier", branch = "zenlayer" }
fp-rpc = { default-features = false, git = "https://github.com/boolnetwork/frontier", branch = "zenlayer" }
fp-rpc-debug = { default-features = false, git = "https://github.com/boolnetwork/frontier", branch = "zenlayer" }
fp-rpc-txpool = { default-features = false, git = "https://github.com/boolnetwork/frontier", branch = "zenlayer" }
fp-rpc-evm-tracing-events = { default-features = false, git = "https://github.com/boolnetwork/frontier", branch = "zenlayer" }
fp-account = { default-features = false, git = "https://github.com/boolnetwork/frontier", branch = "zenlayer" }
# Frontier Runtime
evm-tracer = { default-features = false, git = "https://github.com/boolnetwork/frontier", branch = "zenlayer" }
# Frontier FRAME
pallet-evm = { default-features = false, git = "https://github.com/boolnetwork/frontier", branch = "zenlayer" }
pallet-evm-chain-id = { default-features = false, git = "https://github.com/boolnetwork/frontier", branch = "zenlayer" }
pallet-ethereum = { default-features = false, git = "https://github.com/boolnetwork/frontier", branch = "zenlayer" }
pallet-base-fee = { default-features = false, git = "https://github.com/boolnetwork/frontier", branch = "zenlayer" }
pallet-dynamic-fee = { default-features = false, git = "https://github.com/boolnetwork/frontier", branch = "zenlayer" }
pallet-evm-precompile-simple = { default-features = false, git = "https://github.com/boolnetwork/frontier", branch = "zenlayer" }
pallet-evm-precompile-bn128= { default-features = false, git = "https://github.com/boolnetwork/frontier", branch = "zenlayer" }
pallet-evm-precompile-modexp= { default-features = false, git = "https://github.com/boolnetwork/frontier", branch = "zenlayer" }
pallet-evm-precompile-blake2= { default-features = false, git = "https://github.com/boolnetwork/frontier", branch = "zenlayer" }
pallet-evm-precompile-sha3fips= { default-features = false, git = "https://github.com/boolnetwork/frontier", branch = "zenlayer" }