Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
CanerKaraca23 authored Mar 11, 2024
1 parent 0b20c91 commit cc2b6e4
Showing 1 changed file with 29 additions and 29 deletions.
58 changes: 29 additions & 29 deletions userspace/ksud/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,46 +7,46 @@ rust-version = "1.76"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
anyhow = "1.0.80"
clap = { version = "4.5.2", features = ["derive"] }
const_format = "0.2.32"
zip = "0.6.6"
zip-extensions = "0.6.2"
java-properties = "2.0.0"
log = "0.4.21"
env_logger = "0.11.3"
serde = { version = "1.0.197" }
serde_json = "1.0.114"
regex = "1.10.3"
encoding_rs = "0.8.33"
retry = "2.0.0"
humansize = "2.1.3"
libc = "0.2.153"
extattr = "1.0.0"
jwalk = "0.8.1"
is_executable = "1.0.1"
nom = "7.1.3"
derive-new = "0.6.0"
rust-embed = { version = "8.3.0", features = [
anyhow = "1"
clap = { version = "4", features = ["derive"] }
const_format = "0.2"
zip = "0.6"
zip-extensions = "0.6"
java-properties = "2"
log = "0.4"
env_logger = "0.11"
serde = { version = "1" }
serde_json = "1"
regex = "1"
encoding_rs = "0.8"
retry = "2"
humansize = "2"
libc = "0.2"
extattr = "1"
jwalk = "0.8"
is_executable = "1"
nom = "7"
derive-new = "0.6"
rust-embed = { version = "8", features = [
"debug-embed",
"compression", # must clean build after updating binaries
] }
which = "6.0.0"
getopts = "0.2.21"
sha256 = "1.5.0"
tempdir = "0.3.7"
chrono = "0.4.35"
which = "6"
getopts = "0.2"
sha256 = "1"
tempdir = "0.3"
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"] }
# some android specific dependencies which compiles under unix are also listed here for convenience of coding
android-properties = { version = "0.2.2", features = ["bionic-deprecated"] }
procfs = "0.16.0"
android-properties = { version = "0.2", features = ["bionic-deprecated"] }
procfs = "0.16"
loopdev = { git = "https://github.com/Kernel-SU/loopdev" }

[target.'cfg(target_os = "android")'.dependencies]
android_logger = "0.13.3"
android_logger = "0.13"

[profile.release]
strip = true
Expand Down

0 comments on commit cc2b6e4

Please sign in to comment.