Skip to content

Commit

Permalink
Adding ZSTD compression to chitchat's Deltas.
Browse files Browse the repository at this point in the history
  • Loading branch information
fulmicoton committed Feb 13, 2024
1 parent c3a5baf commit eaff8b9
Show file tree
Hide file tree
Showing 11 changed files with 920 additions and 342 deletions.
10 changes: 9 additions & 1 deletion chitchat/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,22 @@ 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"
mock_instant = "0.3"
tracing-subscriber = "0.3"
proptest = "1.4"

[features]
testsuite = []
Loading

0 comments on commit eaff8b9

Please sign in to comment.