Skip to content

Commit b3b9c1a

Browse files
Merge pull request #372 from joshrotenberg/feat/support-package-optimization-343
feat: add support package optimization
2 parents fe95218 + 75699bc commit b3b9c1a

File tree

5 files changed

+528
-3
lines changed

5 files changed

+528
-3
lines changed

Cargo.lock

Lines changed: 55 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,8 @@ anyhow = "1.0"
4848
thiserror = "2.0"
4949
tokio = { version = "1.40", features = ["full"] }
5050
serde = { version = "1.0", features = ["derive"] }
51+
tar = "0.4"
52+
flate2 = "1.0"
5153
serde_json = "1.0"
5254
serde_urlencoded = "0.7"
5355
clap = { version = "4.5", features = ["derive", "env", "string"] }

crates/redisctl/Cargo.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,8 @@ tabled = { version = "0.17", features = ["ansi"] }
3939
terminal_size = "0.4"
4040
indicatif = "0.17"
4141
unicode-segmentation = "1.12"
42+
tar = { workspace = true }
43+
flate2 = { workspace = true }
4244

4345
# Shared utility dependencies
4446
thiserror = { workspace = true }

0 commit comments

Comments
 (0)