Files
packie/Cargo.toml
T
sisungo e6fa0df9a5 Initial commit
Signed-off-by: sisungo <[email protected]>
2026-06-10 00:33:24 +08:00

26 lines
522 B
TOML

[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 }