Files
nanoreth/crates/storage/errors/Cargo.toml
georgehao 2e4376f359 add format checker to .toml (#13968)
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de>
2025-01-28 12:20:58 +00:00

39 lines
745 B
TOML

[package]
name = "reth-storage-errors"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
homepage.workspace = true
repository.workspace = true
[lints]
workspace = true
[dependencies]
# reth
reth-fs-util.workspace = true
reth-primitives-traits.workspace = true
reth-prune-types.workspace = true
reth-static-file-types.workspace = true
# ethereum
alloy-eips.workspace = true
alloy-primitives.workspace = true
alloy-rlp.workspace = true
# misc
derive_more.workspace = true
thiserror.workspace = true
[features]
default = ["std"]
std = [
"alloy-eips/std",
"alloy-primitives/std",
"alloy-rlp/std",
"derive_more/std",
"reth-primitives-traits/std",
"thiserror/std",
]