mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
32 lines
863 B
TOML
32 lines
863 B
TOML
[package]
|
|
name = "reth-optimism-primitives"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
license.workspace = true
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
description = "OP primitive types"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
alloy-primitives.workspace = true
|
|
alloy-consensus.workspace = true
|
|
op-alloy-consensus.workspace = true
|
|
alloy-eips.workspace = true
|
|
alloy-rlp.workspace = true
|
|
derive_more.workspace = true
|
|
bytes.workspace = true
|
|
reth-primitives-traits.workspace = true
|
|
reth-codecs = { workspace = true, optional = true }
|
|
reth-primitives = { workspace = true, features = ["reth-codec"], optional = true }
|
|
|
|
[features]
|
|
default = ["reth-codec"]
|
|
reth-codec = ["dep:reth-codecs", "dep:reth-primitives"]
|
|
|
|
[dev-dependencies]
|
|
reth-codecs = { workspace = true, features = ["test-utils"] }
|
|
rstest.workspace = true |