You've already forked ReZygisk
mirror of
https://github.com/PerformanC/ReZygisk.git
synced 2025-09-06 06:37:01 +00:00
* Add back 32 bit support & some fix * fix system server crash on android 10 * Refine code --------- Co-authored-by: Nullptr <noreply@nullptr.icu>
34 lines
840 B
TOML
34 lines
840 B
TOML
[package]
|
|
name = "zygiskd"
|
|
authors = ["Nullptr"]
|
|
version = "1.0.0"
|
|
edition = "2021"
|
|
rust-version = "1.69"
|
|
|
|
[dependencies]
|
|
android_logger = "0.13"
|
|
anyhow = { version = "1.0", features = ["backtrace"] }
|
|
bitflags = { version = "2.3" }
|
|
const_format = "0.2"
|
|
futures = "0.3"
|
|
konst = "0.3"
|
|
lazy_static = "1.4"
|
|
libc = "0.2"
|
|
log = "0.4"
|
|
memfd = "0.6"
|
|
num_enum = "0.5"
|
|
passfd = "0.1"
|
|
proc-maps = "0.3"
|
|
|
|
rustix = { version = "0.38", features = [ "fs", "process", "mount", "net", "thread"] }
|
|
tokio = { version = "1.28", features = ["full"] }
|
|
|
|
binder = { git = "https://github.com/Kernel-SU/binder_rs", rev = "c9f2b62d6a744fd2264056c638c1b061a6a2932d" }
|
|
fuser = { git = "https://github.com/Dr-TSNG/fuser", default-features = false }
|
|
ptrace-do = { git = "https://github.com/5ec1cff/ptrace-do" }
|
|
|
|
[profile.release]
|
|
strip = true
|
|
opt-level = "z"
|
|
lto = true
|