Files
nanoreth/crates/common/rlp/Cargo.toml
Matthias Seitz 2e19f94048 feat: impl rlp for receipt (#83)
* feat: impl rlp for receipt

* fix: change to bloom

* chore: rustfmt
2022-10-17 07:13:02 -07:00

34 lines
849 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", features = ["codec"], 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