Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: use workspace deps in nippy jar #7792

Merged
merged 1 commit into from Apr 22, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
11 changes: 7 additions & 4 deletions crates/storage/nippy-jar/Cargo.toml
Expand Up @@ -20,7 +20,10 @@ reth-primitives.workspace = true

# filter
ph = "0.8.0"
cuckoofilter = { version = "0.5.0", features = ["serde_support", "serde_bytes"] }
cuckoofilter = { version = "0.5.0", features = [
"serde_support",
"serde_bytes",
] }

# compression
zstd = { version = "0.13", features = ["experimental", "zdict_builder"] }
Expand All @@ -31,14 +34,14 @@ sucds = "~0.8"

memmap2 = "0.7.1"
bincode = "1.3"
serde = { version = "1.0", features = ["derive"] }
tracing = "0.1.0"
serde = { workspace = true, features = ["derive"] }
tracing.workspace = true
anyhow = "1.0"
thiserror.workspace = true
derive_more.workspace = true

[dev-dependencies]
rand = { version = "0.8", features = ["small_rng"] }
rand = { workspace = true, features = ["small_rng"] }
tempfile.workspace = true


Expand Down