mirror of
https://github.com/paradigmxyz/reth.git
synced 2026-01-10 07:48:19 -05:00
47 lines
1.1 KiB
TOML
47 lines
1.1 KiB
TOML
[package]
|
|
name = "reth-stateless"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
license.workspace = true
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
exclude.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
# alloy
|
|
alloy-primitives.workspace = true
|
|
alloy-rlp.workspace = true
|
|
alloy-trie.workspace = true
|
|
alloy-consensus.workspace = true
|
|
alloy-rpc-types-debug.workspace = true
|
|
|
|
# reth
|
|
reth-ethereum-consensus.workspace = true
|
|
reth-primitives-traits.workspace = true
|
|
reth-ethereum-primitives = { workspace = true, features = ["serde", "serde-bincode-compat"] }
|
|
reth-errors.workspace = true
|
|
reth-evm.workspace = true
|
|
reth-revm.workspace = true
|
|
reth-trie-common.workspace = true
|
|
reth-trie-sparse.workspace = true
|
|
reth-chainspec.workspace = true
|
|
reth-consensus.workspace = true
|
|
|
|
# misc
|
|
thiserror.workspace = true
|
|
itertools.workspace = true
|
|
serde.workspace = true
|
|
serde_with.workspace = true
|
|
|
|
k256 = { workspace = true, optional = true }
|
|
secp256k1 = { workspace = true, optional = true }
|
|
|
|
[features]
|
|
default = ["k256"]
|
|
k256 = ["dep:k256"]
|
|
secp256k1 = ["dep:secp256k1"]
|