Files
reth/crates/primitives/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

26 lines
681 B
TOML

[package]
name = "reth-primitives"
version = "0.1.0"
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/foundry-rs/reth"
readme = "README.md"
description = "Commonly used types in reth."
[dependencies]
ethers-core = { git = "https://github.com/gakonst/ethers-rs", default-features = false }
bytes = "1.2"
serde = "1.0"
thiserror = "1"
reth-rlp = { path = "../common/rlp", features = ["std", "derive", "ethereum-types"]}
parity-scale-codec = { version = "3.2.1", features = ["derive", "bytes"] }
reth-codecs = { version = "0.1.0", path = "../codecs" }
#used for forkid
crc = "1"
maplit = "1"
[dev-dependencies]
serde_json = "1.0"
hex-literal = "0.3"