You've already forked Magisk
mirror of
https://github.com/topjohnwu/Magisk.git
synced 2025-09-06 06:36:58 +00:00
28 lines
605 B
TOML
28 lines
605 B
TOML
[package]
|
|
name = "magisk"
|
|
version = "0.0.0"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
crate-type = ["staticlib"]
|
|
path = "lib.rs"
|
|
|
|
[features]
|
|
default = ["check-signature"]
|
|
check-signature = []
|
|
|
|
[build-dependencies]
|
|
cxx-gen = { workspace = true }
|
|
pb-rs = { workspace = true }
|
|
|
|
[dependencies]
|
|
base = { path = "../base", features = ["selinux"] }
|
|
derive = { path = "derive" }
|
|
cxx = { workspace = true }
|
|
num-traits = { workspace = true }
|
|
num-derive = { workspace = true }
|
|
quick-protobuf = { workspace = true }
|
|
bytemuck = { workspace = true, features = ["derive"] }
|
|
thiserror = { workspace = true }
|
|
bit-set = { workspace = true }
|