mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 19:09:54 +00:00
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de> Co-authored-by: Arsenii Kulikov <klkvrr@gmail.com> Co-authored-by: alpharush <0xalpharush@protonmail.com> Co-authored-by: DaniPopes <57450786+DaniPopes@users.noreply.github.com> Co-authored-by: Alexey Shekhirin <5773434+shekhirin@users.noreply.github.com> Co-authored-by: Dan Cline <6798349+Rjected@users.noreply.github.com> Co-authored-by: Federico Gimenez <fgimenez@users.noreply.github.com> Co-authored-by: Roman Krasiuk <rokrassyuk@gmail.com> Co-authored-by: Ryan Schneider <ryanleeschneider@gmail.com> Co-authored-by: Bilog WEB3 <155262265+Bilogweb3@users.noreply.github.com> Co-authored-by: Vitalyr <158586577+Vitaliyr888@users.noreply.github.com> Co-authored-by: Yohann Kazoula <yoh.kzl@gmail.com> Co-authored-by: Shourya Chaudhry <149008800+18aaddy@users.noreply.github.com> Co-authored-by: Poulav Bhowmick <bpoulav@gmail.com> Co-authored-by: urb <urbadeil@gmail.com> Co-authored-by: Emilia Hane <elsaemiliaevahane@gmail.com>
74 lines
1.6 KiB
TOML
74 lines
1.6 KiB
TOML
[package]
|
|
name = "reth-db-models"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
license.workspace = true
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
description = "Database models used in storage module."
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
# reth
|
|
reth-codecs = { workspace = true, optional = true }
|
|
reth-primitives-traits = { workspace = true, features = ["serde"] }
|
|
|
|
# ethereum
|
|
alloy-primitives.workspace = true
|
|
alloy-eips.workspace = true
|
|
|
|
# codecs
|
|
modular-bitfield = { workspace = true, optional = true }
|
|
serde = { workspace = true, default-features = false }
|
|
|
|
# misc
|
|
bytes = { workspace = true, optional = true }
|
|
|
|
# arbitrary utils
|
|
arbitrary = { workspace = true, features = ["derive"], optional = true }
|
|
|
|
[dev-dependencies]
|
|
# reth
|
|
reth-primitives-traits = { workspace = true, features = ["arbitrary"] }
|
|
reth-codecs.workspace = true
|
|
|
|
bytes.workspace = true
|
|
modular-bitfield.workspace = true
|
|
arbitrary = { workspace = true, features = ["derive"] }
|
|
|
|
proptest.workspace = true
|
|
proptest-arbitrary-interop.workspace = true
|
|
test-fuzz.workspace = true
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"alloy-eips/std",
|
|
"alloy-primitives/std",
|
|
"reth-primitives-traits/std",
|
|
"bytes?/std",
|
|
"serde/std",
|
|
]
|
|
test-utils = [
|
|
"reth-primitives-traits/test-utils",
|
|
"arbitrary",
|
|
"reth-codecs?/test-utils",
|
|
]
|
|
arbitrary = [
|
|
"std",
|
|
"reth-primitives-traits/arbitrary",
|
|
"dep:arbitrary",
|
|
"alloy-primitives/arbitrary",
|
|
"alloy-eips/arbitrary",
|
|
"reth-codecs?/arbitrary",
|
|
]
|
|
reth-codec = [
|
|
"dep:reth-codecs",
|
|
"dep:modular-bitfield",
|
|
"dep:bytes",
|
|
"reth-primitives-traits/reth-codec",
|
|
]
|