mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
169 lines
7.2 KiB
TOML
169 lines
7.2 KiB
TOML
[package]
|
|
name = "reth_hl"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
name = "reth_hl"
|
|
path = "src/lib.rs"
|
|
|
|
[[bin]]
|
|
name = "reth-hl"
|
|
path = "src/main.rs"
|
|
|
|
[profile.release]
|
|
opt-level = 3
|
|
lto = "thin"
|
|
debug = "none"
|
|
strip = "symbols"
|
|
panic = "unwind"
|
|
codegen-units = 16
|
|
|
|
[profile.maxperf]
|
|
inherits = "release"
|
|
lto = "fat"
|
|
codegen-units = 1
|
|
|
|
[dependencies]
|
|
reth = { git = "https://github.com/sprites0/reth", rev = "fc754e5983f055365325dc9a04632d5ba2c4a8bc" }
|
|
reth-cli = { git = "https://github.com/sprites0/reth", rev = "fc754e5983f055365325dc9a04632d5ba2c4a8bc" }
|
|
reth-cli-commands = { git = "https://github.com/sprites0/reth", rev = "fc754e5983f055365325dc9a04632d5ba2c4a8bc" }
|
|
reth-basic-payload-builder = { git = "https://github.com/sprites0/reth", rev = "fc754e5983f055365325dc9a04632d5ba2c4a8bc" }
|
|
reth-db = { git = "https://github.com/sprites0/reth", rev = "fc754e5983f055365325dc9a04632d5ba2c4a8bc" }
|
|
reth-db-api = { git = "https://github.com/sprites0/reth", rev = "fc754e5983f055365325dc9a04632d5ba2c4a8bc" }
|
|
reth-chainspec = { git = "https://github.com/sprites0/reth", rev = "fc754e5983f055365325dc9a04632d5ba2c4a8bc" }
|
|
reth-cli-util = { git = "https://github.com/sprites0/reth", rev = "fc754e5983f055365325dc9a04632d5ba2c4a8bc" }
|
|
reth-discv4 = { git = "https://github.com/sprites0/reth", rev = "fc754e5983f055365325dc9a04632d5ba2c4a8bc" }
|
|
reth-engine-primitives = { git = "https://github.com/sprites0/reth", rev = "fc754e5983f055365325dc9a04632d5ba2c4a8bc" }
|
|
reth-ethereum-forks = { git = "https://github.com/sprites0/reth", rev = "fc754e5983f055365325dc9a04632d5ba2c4a8bc" }
|
|
reth-ethereum-payload-builder = { git = "https://github.com/sprites0/reth", rev = "fc754e5983f055365325dc9a04632d5ba2c4a8bc" }
|
|
reth-ethereum-primitives = { git = "https://github.com/sprites0/reth", rev = "fc754e5983f055365325dc9a04632d5ba2c4a8bc" }
|
|
reth-eth-wire = { git = "https://github.com/sprites0/reth", rev = "fc754e5983f055365325dc9a04632d5ba2c4a8bc" }
|
|
reth-eth-wire-types = { git = "https://github.com/sprites0/reth", rev = "fc754e5983f055365325dc9a04632d5ba2c4a8bc" }
|
|
reth-evm = { git = "https://github.com/sprites0/reth", rev = "fc754e5983f055365325dc9a04632d5ba2c4a8bc" }
|
|
reth-evm-ethereum = { git = "https://github.com/sprites0/reth", rev = "fc754e5983f055365325dc9a04632d5ba2c4a8bc" }
|
|
reth-node-core = { git = "https://github.com/sprites0/reth", rev = "fc754e5983f055365325dc9a04632d5ba2c4a8bc" }
|
|
reth-revm = { git = "https://github.com/sprites0/reth", rev = "fc754e5983f055365325dc9a04632d5ba2c4a8bc" }
|
|
reth-network = { git = "https://github.com/sprites0/reth", rev = "fc754e5983f055365325dc9a04632d5ba2c4a8bc" }
|
|
reth-network-p2p = { git = "https://github.com/sprites0/reth", rev = "fc754e5983f055365325dc9a04632d5ba2c4a8bc" }
|
|
reth-network-api = { git = "https://github.com/sprites0/reth", rev = "fc754e5983f055365325dc9a04632d5ba2c4a8bc" }
|
|
reth-node-ethereum = { git = "https://github.com/sprites0/reth", rev = "fc754e5983f055365325dc9a04632d5ba2c4a8bc" }
|
|
reth-network-peers = { git = "https://github.com/sprites0/reth", rev = "fc754e5983f055365325dc9a04632d5ba2c4a8bc" }
|
|
reth-payload-primitives = { git = "https://github.com/sprites0/reth", rev = "fc754e5983f055365325dc9a04632d5ba2c4a8bc" }
|
|
reth-primitives = { git = "https://github.com/sprites0/reth", rev = "fc754e5983f055365325dc9a04632d5ba2c4a8bc" }
|
|
reth-primitives-traits = { git = "https://github.com/sprites0/reth", rev = "fc754e5983f055365325dc9a04632d5ba2c4a8bc" }
|
|
reth-provider = { git = "https://github.com/sprites0/reth", rev = "fc754e5983f055365325dc9a04632d5ba2c4a8bc", features = ["test-utils"] }
|
|
reth-rpc = { git = "https://github.com/sprites0/reth", rev = "fc754e5983f055365325dc9a04632d5ba2c4a8bc" }
|
|
reth-rpc-eth-api = { git = "https://github.com/sprites0/reth", rev = "fc754e5983f055365325dc9a04632d5ba2c4a8bc" }
|
|
reth-rpc-engine-api = { git = "https://github.com/sprites0/reth", rev = "fc754e5983f055365325dc9a04632d5ba2c4a8bc" }
|
|
reth-tracing = { git = "https://github.com/sprites0/reth", rev = "fc754e5983f055365325dc9a04632d5ba2c4a8bc" }
|
|
reth-trie-common = { git = "https://github.com/sprites0/reth", rev = "fc754e5983f055365325dc9a04632d5ba2c4a8bc" }
|
|
reth-trie-db = { git = "https://github.com/sprites0/reth", rev = "fc754e5983f055365325dc9a04632d5ba2c4a8bc" }
|
|
reth-codecs = { git = "https://github.com/sprites0/reth", rev = "fc754e5983f055365325dc9a04632d5ba2c4a8bc" }
|
|
reth-transaction-pool = { git = "https://github.com/sprites0/reth", rev = "fc754e5983f055365325dc9a04632d5ba2c4a8bc" }
|
|
reth-stages-types = { git = "https://github.com/sprites0/reth", rev = "fc754e5983f055365325dc9a04632d5ba2c4a8bc" }
|
|
revm = { version = "26.0.1" }
|
|
|
|
# alloy dependencies
|
|
alloy-genesis = "1.0.13"
|
|
alloy-consensus = { version = "1.0.13", features = ["serde"] }
|
|
alloy-chains = "0.2.0"
|
|
alloy-eips = "1.0.13"
|
|
alloy-evm = "0.12"
|
|
alloy-json-abi = { version = "1.0.0", default-features = false }
|
|
alloy-json-rpc = { version = "1.0.13", default-features = false }
|
|
alloy-dyn-abi = "1.2.0"
|
|
alloy-network = "1.0.13"
|
|
alloy-primitives = { version = "1.2.0", default-features = false, features = ["map-foldhash"] }
|
|
alloy-rlp = { version = "0.3.10", default-features = false, features = ["core-net"] }
|
|
alloy-rpc-types = { version = "1.0.13", features = ["engine"] }
|
|
alloy-rpc-types-eth = "1.0.13"
|
|
alloy-rpc-types-engine = "1.0.13"
|
|
alloy-signer = "1.0.13"
|
|
alloy-sol-macro = "1.2.0"
|
|
alloy-sol-types = { version = "1.2.0", default-features = false }
|
|
|
|
jsonrpsee = "0.25.1"
|
|
jsonrpsee-core = { version = "0.25.1" }
|
|
jsonrpsee-types = "0.25.1"
|
|
|
|
# misc dependencies
|
|
auto_impl = "1"
|
|
async-trait = "0.1"
|
|
bytes = "1.5"
|
|
clap = { version = "4", features = ["derive"] }
|
|
cfg-if = { version = "1.0", default-features = false }
|
|
derive_more = { version = "2", default-features = false, features = ["full"] }
|
|
eyre = "0.6"
|
|
futures = "0.3"
|
|
lazy_static = "1.4.0"
|
|
once_cell = { version = "1.19", default-features = false, features = ["alloc"] }
|
|
parking_lot = "0.12"
|
|
serde = { version = "1.0", features = ["derive"], default-features = false }
|
|
serde_json = "1.0"
|
|
thiserror = { version = "2.0.0", default-features = false }
|
|
tokio = { version = "1.44.2", features = ["full"] }
|
|
tokio-stream = "0.1"
|
|
tracing = "0.1"
|
|
rmp-serde = "1.3"
|
|
lz4_flex = "0.11"
|
|
ureq = "3.0.12"
|
|
aws-sdk-s3 = "1.93.0"
|
|
aws-config = "1.8.0"
|
|
rayon = "1.7"
|
|
time = "0.3.41"
|
|
rangemap = "=1.6.0"
|
|
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
tikv-jemalloc-ctl = "0.6"
|
|
tikv-jemallocator = { version = "0.6", optional = true }
|
|
libc = "0.2"
|
|
|
|
[features]
|
|
default = ["jemalloc"]
|
|
jemalloc = ["dep:tikv-jemallocator"]
|
|
asm-keccak = [
|
|
"reth-node-core/asm-keccak",
|
|
"reth-primitives/asm-keccak",
|
|
]
|
|
min-debug-logs = [
|
|
"tracing/release_max_level_debug",
|
|
]
|
|
dev = [
|
|
"reth-cli-commands/arbitrary",
|
|
"reth/dev",
|
|
"revm/dev",
|
|
]
|
|
|
|
serde = [
|
|
"alloy-chains/serde",
|
|
"alloy-consensus/serde",
|
|
"alloy-eips/serde",
|
|
"alloy-primitives/serde",
|
|
"alloy-rpc-types-engine/serde",
|
|
"alloy-rpc-types-eth/serde",
|
|
"bytes/serde",
|
|
"parking_lot/serde",
|
|
"reth-eth-wire/serde",
|
|
"reth-eth-wire-types/serde",
|
|
"reth-ethereum-forks/serde",
|
|
"reth-ethereum-primitives/serde",
|
|
"reth-network/serde",
|
|
"reth-network-api/serde",
|
|
"reth-primitives-traits/serde",
|
|
"reth-revm/serde",
|
|
"reth-trie-common/serde",
|
|
"reth-trie-db/serde",
|
|
"revm/serde",
|
|
]
|
|
|
|
client = [
|
|
"jsonrpsee/client",
|
|
"jsonrpsee/async-client",
|
|
"reth-rpc-eth-api/client",
|
|
]
|
|
|
|
[profile.test]
|
|
inherits = "release"
|