Bumps [android_logger](https://github.com/rust-mobile/android_logger-rs) from 0.13.3 to 0.14.1. <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/rust-mobile/android_logger-rs/commits/0.14.1">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
63 lines
1.5 KiB
TOML
63 lines
1.5 KiB
TOML
[package]
|
|
name = "ksud"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
rust-version = "1.77.2"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
anyhow = "1"
|
|
clap = { version = "4", features = ["derive"] }
|
|
const_format = "0.2"
|
|
zip = { version = "2", features = [
|
|
"deflate",
|
|
"deflate64",
|
|
"bzip2",
|
|
"time",
|
|
"zstd",
|
|
], default-features = false }
|
|
zip-extensions = "0.7"
|
|
java-properties = "2"
|
|
log = "0.4"
|
|
env_logger = { version = "0.11", default-features = false }
|
|
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"
|
|
getopts = "0.2"
|
|
sha256 = "1"
|
|
sha1 = "0.10"
|
|
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", features = ["bionic-deprecated"] }
|
|
procfs = "0.16"
|
|
loopdev = { git = "https://github.com/Kernel-SU/loopdev" }
|
|
|
|
[target.'cfg(target_os = "android")'.dependencies]
|
|
android_logger = "0.14"
|
|
|
|
[profile.release]
|
|
strip = true
|
|
opt-level = "z"
|
|
lto = true |