Skip to content

Commit

Permalink
ksud: bump zip dependency to 1.x
Browse files Browse the repository at this point in the history
  • Loading branch information
tiann committed May 2, 2024
1 parent 66ae50e commit d623b9f
Show file tree
Hide file tree
Showing 2 changed files with 76 additions and 7 deletions.
69 changes: 65 additions & 4 deletions userspace/ksud/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 11 additions & 3 deletions userspace/ksud/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,13 @@ rust-version = "1.77.2"
anyhow = "1"
clap = { version = "4", features = ["derive"] }
const_format = "0.2"
zip = "0.6"
zip = { version = "1.1", features = [
"deflate",
"deflate64",
"bzip2",
"time",
"zstd",
], default-features = false }
zip-extensions = "0.6"
java-properties = "2"
log = "0.4"
Expand Down Expand Up @@ -40,7 +46,9 @@ chrono = "0.4"
hole-punch = { git = "https://github.com/tiann/hole-punch" }

[target.'cfg(any(target_os = "android", target_os = "linux"))'.dependencies]
rustix = { git = "https://github.com/Kernel-SU/rustix.git", branch = "main", features = ["all-apis"] }
rustix = { git = "https://github.com/Kernel-SU/rustix.git", branch = "main", features = [
"all-apis",
] }
# some android specific dependencies which compiles under unix are also listed here for convenience of coding
android-properties = { version = "0.2", features = ["bionic-deprecated"] }
procfs = "0.16"
Expand All @@ -52,4 +60,4 @@ android_logger = "0.13"
[profile.release]
strip = true
opt-level = "z"
lto = true
lto = true

0 comments on commit d623b9f

Please sign in to comment.