forked from flashbots/rbuilder
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
60 lines (54 loc) · 2.72 KB
/
Copy pathCargo.toml
File metadata and controls
60 lines (54 loc) · 2.72 KB
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
[workspace]
members = [
"crates/rbuilder",
"crates/rbuilder/src/test_utils"
]
resolver = "2"
# Like release, but with full debug symbols. Useful for e.g. `perf`.
[profile.debug-fast]
inherits = "release"
debug = true
[profile.maxperf]
inherits = "release"
lto = "fat"
codegen-units = 1
incremental = false
[workspace.package]
version = "0.1.0"
edition = "2021"
[workspace.dependencies]
reth = { git = "https://github.com/paradigmxyz/reth", tag = "v0.2.0-beta.6" }
reth-db = { git = "https://github.com/paradigmxyz/reth", tag = "v0.2.0-beta.6" }
reth-interfaces = { git = "https://github.com/paradigmxyz/reth", tag = "v0.2.0-beta.6" }
reth-libmdbx = { git = "https://github.com/paradigmxyz/reth", tag = "v0.2.0-beta.6" }
reth-payload-builder = { git = "https://github.com/paradigmxyz/reth", tag = "v0.2.0-beta.6" }
reth-node-api = { git = "https://github.com/paradigmxyz/reth", tag = "v0.2.0-beta.6" }
reth-trie = { git = "https://github.com/paradigmxyz/reth", tag = "v0.2.0-beta.6" }
reth-trie-parallel = { git = "https://github.com/paradigmxyz/reth", tag = "v0.2.0-beta.6" }
reth-basic-payload-builder = { git = "https://github.com/paradigmxyz/reth", tag = "v0.2.0-beta.6" }
reth-node-core = { git = "https://github.com/paradigmxyz/reth", tag = "v0.2.0-beta.6" }
reth-primitives = { git = "https://github.com/paradigmxyz/reth", tag = "v0.2.0-beta.6" }
reth-provider = { git = "https://github.com/paradigmxyz/reth", tag = "v0.2.0-beta.6" }
# version is copied from reth "v0.2.0-beta.6" dependencies
revm = { version = "8.0.0", features = [
"std",
"secp256k1",
"optional_balance_check",
], default-features = false }
revm-primitives = { version = "3.1.0", features = [
"std",
], default-features = false }
revm-inspectors = { git = "https://github.com/paradigmxyz/evm-inspectors", rev = "dc614ee" }
alloy-primitives = "0.7.2"
alloy-rlp = "0.3.4"
alloy-chains = { version = "0.1.15", feature = ["serde", "rlp", "arbitrary"] }
alloy-provider = { git = "https://github.com/alloy-rs/alloy", version = "0.1" }
alloy-rpc-types = { git = "https://github.com/alloy-rs/alloy", version = "0.1" }
alloy-json-rpc = { git = "https://github.com/alloy-rs/alloy", version = "0.1" }
alloy-transport-http = { git = "https://github.com/alloy-rs/alloy", version = "0.1" }
alloy-network = { git = "https://github.com/alloy-rs/alloy", version = "0.1" }
alloy-transport = { git = "https://github.com/alloy-rs/alloy", version = "0.1" }
alloy-node-bindings = { git = "https://github.com/alloy-rs/alloy", version = "0.1" }
alloy-consensus = { git = "https://github.com/alloy-rs/alloy", version = "0.1", features = ["kzg"] }
alloy-serde = { git = "https://github.com/alloy-rs/alloy", version = "0.1" }
alloy-signer-local = { git = "https://github.com/alloy-rs/alloy", version = "0.1" }