-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
88 lines (72 loc) · 2.59 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
[package]
name = "hyperlane-reth"
version = "0.1.0"
edition = "2021"
rust-version = "1.82"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[profile.maxperf]
codegen-units = 1
inherits = "release"
lto = "fat"
[dependencies]
# reth
reth = { git = "https://github.com/paradigmxyz/reth" }
reth-execution-types = { git = "https://github.com/paradigmxyz/reth" }
reth-exex = { git = "https://github.com/paradigmxyz/reth", features = ["serde"] }
reth-evm = { git = "https://github.com/paradigmxyz/reth" }
reth-node-api = { git = "https://github.com/paradigmxyz/reth" }
reth-node-core = { git = "https://github.com/paradigmxyz/reth" }
reth-primitives = { git = "https://github.com/paradigmxyz/reth" }
reth-provider = { git = "https://github.com/paradigmxyz/reth" }
reth-tracing = { git = "https://github.com/paradigmxyz/reth" }
reth-optimism-node = { git = "https://github.com/paradigmxyz/reth", features = ["optimism"]}
reth-optimism-cli = { git = "https://github.com/paradigmxyz/reth", features = ["optimism"]}
reth-cli-util = { git = "https://github.com/paradigmxyz/reth" }
reth-node-metrics = { git = "https://github.com/paradigmxyz/reth" }
# alloy
alloy-eips = { git = "https://github.com/alloy-rs/alloy" }
alloy-consensus = "0.6.4"
alloy-primitives = { version = "0.8.10", default-features = false }
alloy-rlp = "0.3.4"
# alloy-rpc-types = { git = "https://github.com/alloy-rs/alloy", features = [
# "eth",
# ], default-features = false }
alloy-signer = { git = "https://github.com/alloy-rs/alloy", default-features = false }
alloy-signer-local = { git = "https://github.com/alloy-rs/alloy", default-features = false }
alloy-sol-types = { version = "0.8", features = ["json"] }
clap = { version = "4", features = ["derive", "env"] }
# async
futures = "0.3"
futures-util = "0.3"
tokio = { version = "1.0", features = ["full"] }
tokio-stream = "0.1"
# tokio-tungstenite = { version = "0.23", features = ["native-tls"] }
# serde
serde = "1"
serde_json = "1"
hex = "0.4.3"
# misc
k256 = "0.13"
tracing = "0.1"
eyre = "0.6"
rand = "0.8"
async-trait = "0.1"
derive-new = "0.7"
aws-sdk-s3 = { version = "1.61.0", features = ["rustls", "behavior-version-latest"] }
# testing
reth-exex-test-utils = { git = "https://github.com/paradigmxyz/reth" }
reth-testing-utils = { git = "https://github.com/paradigmxyz/reth" }
[features]
asm-keccak = [
"reth-node-core/asm-keccak",
"reth-primitives/asm-keccak",
"alloy-primitives/asm-keccak"
]
jemalloc = [
"reth-cli-util/jemalloc",
"reth-node-core/jemalloc",
"reth-node-metrics/jemalloc",
]
[[bin]]
name = "hyperlane-reth"
path = "src/main.rs"