mirror of
https://github.com/paradigmxyz/reth.git
synced 2026-04-30 03:01:58 -04:00
51 lines
961 B
TOML
51 lines
961 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
|
|
|
|
# filter
|
|
ph = "0.8.0"
|
|
cuckoofilter = { version = "0.5.0", features = [
|
|
"serde_support",
|
|
"serde_bytes",
|
|
] }
|
|
|
|
# compression
|
|
zstd = { version = "0.13", features = ["experimental", "zdict_builder"] }
|
|
lz4_flex = { version = "0.11", default-features = false }
|
|
|
|
# offsets
|
|
sucds = "~0.8"
|
|
|
|
memmap2 = "0.7.1"
|
|
bincode = "1.3"
|
|
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 = []
|