-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
111 lines (100 loc) · 6.28 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
[workspace]
members = [
"vendor/evm-tracing",
"vendor/primitives/debug",
"vendor/primitives/evm-tracing-events",
"vendor/primitives/txpool",
"vendor/rpc/debug",
"vendor/rpc/trace",
"vendor/rpc/txpool",
"vendor/rpc-core/debug",
"vendor/rpc-core/trace",
"vendor/rpc-core/txpool",
"vendor/rpc-core/types",
"vendor/runtime/evm-tracer",
"vendor/runtime/ext",
"vendor/treasury",
]
[workspace.dependencies]
# General deps
# (wasm)
parity-scale-codec = { version = "3.6.12", default-features = false, features = ["derive"] }
scale-info = { version = "2.11.6", default-features = false, features = ["derive"] }
log = { version = "0.4.22", default-features = false }
environmental = { version = "1.1.4", default-features = false }
sha3 = { version = "0.10.8", default-features = false }
hex = { version = "0.4.3", default-features = false }
# (native)
futures = { version = "0.3.31" }
serde = { version = "1.0.151", default-features = false, features = ["derive", "alloc"] }
serde_json = { version = "1.0.121", default-features = false }
tokio = { version = "1.43.0", features = ["macros", "sync"] }
jsonrpsee = { version = "0.24.7", features = ["server"] }
hex-literal = "0.4.1"
rlp = { version = "0.6", default-features = false }
tracing = "0.1.41"
impl-trait-for-tuples = "0.2.3"
docify = { version = "0.2.9" }
# Substrate
# (wasm)
sp-core = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412", default-features = false }
sp-io = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412", default-features = false }
sp-runtime = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412", default-features = false }
sp-std = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412", default-features = false }
sp-api = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412", default-features = false }
sp-block-builder = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412", default-features = false }
sp-runtime-interface = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412", default-features = false }
sp-transaction-pool = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412", default-features = false }
sp-externalities = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412", default-features = false }
# (native)
sp-blockchain = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412", default-features = false }
sc-client-api = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412" }
sc-network = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412" }
sc-transaction-pool = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412" }
sc-transaction-pool-api = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412" }
sc-utils = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412" }
substrate-prometheus-endpoint = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412" }
substrate-frame-rpc-system = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412" }
# Substrate pallets
# (wasm)
pallet-balances = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412", default-features = false }
pallet-utility = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412", default-features = false }
frame-support = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412", default-features = false }
frame-system = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412", default-features = false }
frame-benchmarking = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412", default-features = false }
# EVM & Ethereum
# (wasm)
# To make it compatible with frontier
evm = { git = "https://github.com/rust-ethereum/evm", branch = "v0.x", default-features = false }
evm-gasometer = { git = "https://github.com/rust-ethereum/evm", branch = "v0.x", default-features = false }
evm-runtime = { git = "https://github.com/rust-ethereum/evm", branch = "v0.x", default-features = false }
ethereum-types = { version = "0.15", default-features = false }
ethereum = { git = "https://github.com/rust-ethereum/ethereum", rev = "3be0d8fd4c2ad1ba216b69ef65b9382612efc8ba", default-features = false }
# Frontier
# (wasm)
fp-rpc = { git = "https://github.com/polkadot-evm/frontier", branch = "stable2412", default-features = false }
pallet-evm = { git = "https://github.com/polkadot-evm/frontier", branch = "stable2412", default-features = false, features = ["forbid-evm-reentrancy"] }
fp-evm = { git = "https://github.com/polkadot-evm/frontier", branch = "stable2412", default-features = false }
# (native)
fc-consensus = { git = "https://github.com/polkadot-evm/frontier", branch = "stable2412" }
fc-db = { git = "https://github.com/polkadot-evm/frontier", branch = "stable2412" }
fc-api = { git = "https://github.com/polkadot-evm/frontier", branch = "stable2412" }
fc-rpc = { git = "https://github.com/polkadot-evm/frontier", branch = "stable2412", features = ["rpc-binary-search-estimate", "txpool"] }
fc-rpc-core = { git = "https://github.com/polkadot-evm/frontier", branch = "stable2412" }
fc-storage = { git = "https://github.com/polkadot-evm/frontier", branch = "stable2412" }
## Moonbeam tracing
## (wasm)
moonbeam-evm-tracer = { path = "./vendor/runtime/evm-tracer", default-features = false }
moonbeam-rpc-primitives-debug = { path = "./vendor/primitives/debug", default-features = false }
moonbeam-rpc-primitives-txpool = { path = "./vendor/primitives/txpool", default-features = false }
evm-tracing-events = { path = "./vendor/primitives/evm-tracing-events", default-features = false }
moonbeam-primitives-ext = { path = "./vendor/runtime/ext", default-features = false }
## (native)
moonbeam-rpc-debug = { path = "./vendor/rpc/debug" }
moonbeam-rpc-trace = { path = "./vendor/rpc/trace" }
moonbeam-rpc-txpool = { path = "./vendor/rpc/txpool" }
moonbeam-client-evm-tracing = { path = "./vendor/evm-tracing" }
moonbeam-rpc-core-types = { path = "./vendor/rpc-core/types" }
moonbeam-rpc-core-txpool = { path = "./vendor/rpc-core/txpool" }
moonbeam-rpc-core-trace = { path = "./vendor/rpc-core/trace" }
moonbeam-rpc-core-debug = { path = "./vendor/rpc-core/debug" }