Skip to content

Commit 4300807

Browse files
branchseerclaude
andcommitted
chore(deps): add tar, uuid, and zstd dependencies to vite_task
Add `zstd` as a workspace dependency and add `tar`, `uuid` (with v4 feature), and `zstd` to the `vite_task` crate for output archive creation and extraction. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent ade0bf0 commit 4300807

3 files changed

Lines changed: 47 additions & 0 deletions

File tree

Cargo.lock

Lines changed: 43 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: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,7 @@ tui-term = "0.3.1"
136136
twox-hash = "2.1.1"
137137
uuid = "1.18.1"
138138
vec1 = "1.12.1"
139+
zstd = "0.13"
139140
vite_glob = { path = "crates/vite_glob" }
140141
vite_graph_ser = { path = "crates/vite_graph_ser" }
141142
vite_path = { path = "crates/vite_path" }

crates/vite_task/Cargo.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ rustc-hash = { workspace = true }
3131
serde = { workspace = true, features = ["derive", "rc"] }
3232
serde_json = { workspace = true }
3333
thiserror = { workspace = true }
34+
tar = { workspace = true }
3435
tokio = { workspace = true, features = ["rt-multi-thread", "io-std", "io-util", "macros", "sync"] }
3536
tokio-util = { workspace = true }
3637
tracing = { workspace = true }
@@ -41,7 +42,9 @@ vite_str = { workspace = true }
4142
vite_task_graph = { workspace = true }
4243
vite_task_plan = { workspace = true }
4344
vite_workspace = { workspace = true }
45+
uuid = { workspace = true, features = ["v4"] }
4446
wax = { workspace = true }
47+
zstd = { workspace = true }
4548

4649
[dev-dependencies]
4750
tempfile = { workspace = true }

0 commit comments

Comments
 (0)