diff --git a/crates/storage/nippy-jar/Cargo.toml b/crates/storage/nippy-jar/Cargo.toml index 1fed32e27..d979759b4 100644 --- a/crates/storage/nippy-jar/Cargo.toml +++ b/crates/storage/nippy-jar/Cargo.toml @@ -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"] } @@ -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