mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
40 lines
827 B
TOML
40 lines
827 B
TOML
[package]
|
|
name = "reth-nippy-jar"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
license.workspace = true
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
description = "Immutable data store format"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[lib]
|
|
name = "reth_nippy_jar"
|
|
|
|
[dependencies]
|
|
# reth
|
|
reth-fs-util.workspace = true
|
|
|
|
# compression
|
|
zstd = { workspace = true, features = ["experimental", "zdict_builder"] }
|
|
lz4_flex = { version = "0.11", default-features = false }
|
|
|
|
memmap2 = "0.9.4"
|
|
bincode.workspace = true
|
|
serde = { workspace = true, features = ["derive"] }
|
|
tracing.workspace = true
|
|
anyhow = "1.0"
|
|
thiserror.workspace = true
|
|
derive_more.workspace = true
|
|
|
|
[dev-dependencies]
|
|
rand = { workspace = true, features = ["small_rng"] }
|
|
tempfile.workspace = true
|
|
|
|
[features]
|
|
default = []
|
|
test-utils = []
|