mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
50 lines
1.1 KiB
TOML
50 lines
1.1 KiB
TOML
[package]
|
|
name = "reth-db-common"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
license.workspace = true
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
|
|
[dependencies]
|
|
# reth
|
|
reth-chainspec.workspace = true
|
|
reth-primitives.workspace = true
|
|
reth-db-api.workspace = true
|
|
reth-provider.workspace = true
|
|
reth-config.workspace = true
|
|
reth-trie.workspace = true
|
|
reth-trie-db.workspace = true
|
|
reth-etl.workspace = true
|
|
reth-codecs.workspace = true
|
|
reth-stages-types.workspace = true
|
|
reth-fs-util.workspace = true
|
|
reth-node-types.workspace = true
|
|
|
|
# eth
|
|
alloy-consensus.workspace = true
|
|
alloy-genesis.workspace = true
|
|
alloy-primitives.workspace = true
|
|
|
|
# misc
|
|
eyre.workspace = true
|
|
thiserror.workspace = true
|
|
boyer-moore-magiclen.workspace = true
|
|
|
|
# io
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
|
|
# tracing
|
|
tracing.workspace = true
|
|
|
|
[dev-dependencies]
|
|
reth-db = { workspace = true, features = ["mdbx"] }
|
|
reth-primitives-traits.workspace = true
|
|
reth-provider = { workspace = true, features = ["test-utils"] }
|
|
alloy-consensus.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|