mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
* Start using reth-rlp * Include apache licenced forkid file in primitives * Move forkid to eth-wire
34 lines
853 B
TOML
34 lines
853 B
TOML
[package]
|
|
name = "reth-rlp"
|
|
version = "0.1.2"
|
|
edition = "2021"
|
|
license = "Apache-2.0"
|
|
description = "Fast RLP serialization library"
|
|
repository = "https://github.com/foundry-rs/reth"
|
|
|
|
[dependencies]
|
|
arrayvec = { version = "0.7", default-features = false }
|
|
auto_impl = "1"
|
|
bytes = { version = "1", default-features = false }
|
|
ethnum = { version = "1", default-features = false, optional = true }
|
|
ethereum-types = { version = "0.13", default-features = false, optional = true }
|
|
reth-rlp-derive = { version = "0.1", path = "../rlp-derive", optional = true }
|
|
|
|
[dev-dependencies]
|
|
reth-rlp-test = { path = ".", package = "reth-rlp", features = [
|
|
"derive",
|
|
"std",
|
|
"ethnum",
|
|
"ethereum-types",
|
|
] }
|
|
criterion = "0.4.0"
|
|
hex-literal = "0.3"
|
|
|
|
[features]
|
|
alloc = []
|
|
derive = ["reth-rlp-derive"]
|
|
std = ["alloc"]
|
|
|
|
[[bench]]
|
|
name = "bench"
|
|
harness = false |