mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
28 lines
688 B
TOML
28 lines
688 B
TOML
[package]
|
|
name = "reth-interfaces"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
license.workspace = true
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
reth-blockchain-tree-api.workspace = true
|
|
reth-consensus.workspace = true
|
|
reth-execution-errors.workspace = true
|
|
reth-fs-util.workspace = true
|
|
reth-network-p2p.workspace = true
|
|
reth-storage-errors.workspace = true
|
|
|
|
reth-testing-utils = { workspace = true, optional = true }
|
|
|
|
# misc
|
|
thiserror.workspace = true
|
|
|
|
[features]
|
|
test-utils = ["reth-consensus/test-utils", "reth-network-p2p/test-utils", "reth-testing-utils"]
|
|
clap = ["reth-storage-errors/clap"] |