Skip to content

Commit

Permalink
Adding ZSTD compression to chitchat's Deltas.
Browse files Browse the repository at this point in the history
introducing deserializable

Removed generics on wrier

plugging compression in 1
  • Loading branch information
fulmicoton committed Feb 10, 2024
1 parent 783bfd0 commit 8e17d50
Show file tree
Hide file tree
Showing 7 changed files with 699 additions and 282 deletions.
9 changes: 8 additions & 1 deletion chitchat/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,16 @@ bytes = "1"
itertools = "0.12"
rand = { version = "0.8", features = ["small_rng"] }
serde = { version = "1", features = ["derive"] }
tokio = { version = "1.28.0", features = ["net", "sync", "rt-multi-thread", "macros", "time"] }
tokio = { version = "1.28.0", features = [
"net",
"sync",
"rt-multi-thread",
"macros",
"time",
] }
tokio-stream = { version = "0.1", features = ["sync"] }
tracing = "0.1"
zstd = "0.13"

[dev-dependencies]
assert-json-diff = "2"
Expand Down
Loading

0 comments on commit 8e17d50

Please sign in to comment.