Initial commit

Signed-off-by: sisungo <[email protected]>
This commit is contained in:
2026-06-10 00:33:24 +08:00
commit e6fa0df9a5
22 changed files with 1378 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
[package]
name = "packie"
version = "0.1.0"
edition = "2024"
[features]
default = ["zstd", "gzip"]
zstd = ["dep:zstd"]
gzip = ["dep:flate2"]
[workspace]
members = ["cli"]
[dependencies]
flate2 = { version = "1", optional = true }
rustc-hash = "2"
rust-i18n = "4"
rusqlite = { version = "0.40", features = ["bundled"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tar = "0.4"
tempfile = "3"
thiserror = "2"
nix = { version = "0.31", features = ["fs"] }
zstd = { version = "0.13", optional = true }