mirror of
https://github.com/paradigmxyz/reth.git
synced 2026-04-08 03:01:12 -04:00
* add elias * docs: should not be empty * change models doc * add arbitrary feature * add simple test * add test-utils to primitives * cfg arbitrary
35 lines
873 B
TOML
35 lines
873 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]
|
|
# reth
|
|
reth-rlp = { path = "../common/rlp", features = ["std", "derive", "ethereum-types"]}
|
|
reth-codecs = { version = "0.1.0", path = "../codecs" }
|
|
|
|
# ethereum
|
|
ethers-core = { git = "https://github.com/gakonst/ethers-rs", default-features = false }
|
|
parity-scale-codec = { version = "3.2.1", features = ["derive", "bytes"] }
|
|
tiny-keccak = "0.3"
|
|
|
|
#used for forkid
|
|
crc = "1"
|
|
maplit = "1"
|
|
|
|
# misc
|
|
bytes = "1.2"
|
|
serde = "1.0"
|
|
thiserror = "1"
|
|
sucds = "0.5.0"
|
|
arbitrary = { version = "1.1.7", features = ["derive"], optional = true}
|
|
|
|
[dev-dependencies]
|
|
arbitrary = { version = "1.1.7", features = ["derive"]}
|
|
serde_json = "1.0"
|
|
hex-literal = "0.3"
|