Skip to content

Commit

Permalink
chore: use workspace deps in nippy jar
Browse files Browse the repository at this point in the history
  • Loading branch information
onbjerg committed Apr 22, 2024
1 parent adcc064 commit 4dbec20
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions crates/storage/nippy-jar/Cargo.toml
Original file line number Diff line number Diff line change
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

0 comments on commit 4dbec20

Please sign in to comment.