mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de> Co-authored-by: Oliver <onbjerg@users.noreply.github.com>
55 lines
1.0 KiB
TOML
55 lines
1.0 KiB
TOML
[package]
|
|
name = "reth-revm"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
license.workspace = true
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
description = "reth specific revm utilities"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
# reth
|
|
reth-primitives.workspace = true
|
|
reth-storage-errors.workspace = true
|
|
reth-execution-errors.workspace = true
|
|
reth-prune-types.workspace = true
|
|
reth-storage-api.workspace = true
|
|
reth-trie = { workspace = true, optional = true }
|
|
|
|
# alloy
|
|
alloy-eips.workspace = true
|
|
alloy-primitives.workspace = true
|
|
|
|
# revm
|
|
revm.workspace = true
|
|
|
|
[dev-dependencies]
|
|
reth-trie.workspace = true
|
|
reth-ethereum-forks.workspace = true
|
|
alloy-primitives.workspace = true
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"reth-primitives/std",
|
|
"alloy-primitives/std",
|
|
"revm/std",
|
|
"alloy-eips/std"
|
|
]
|
|
test-utils = [
|
|
"dep:reth-trie",
|
|
"reth-primitives/test-utils",
|
|
"reth-trie?/test-utils",
|
|
"revm/test-utils"
|
|
]
|
|
serde = [
|
|
"revm/serde",
|
|
"reth-trie?/serde",
|
|
"alloy-eips/serde",
|
|
"alloy-primitives/serde"
|
|
]
|