Files
Magisk/native/src/base/Cargo.toml

30 lines
596 B
TOML
Raw Normal View History

2022-06-30 14:50:21 -07:00
[package]
name = "base"
2025-03-06 21:53:03 -08:00
version.workspace = true
edition.workspace = true
2022-06-30 14:50:21 -07:00
[lib]
path = "lib.rs"
2023-10-17 13:29:15 -07:00
[features]
selinux = []
2025-12-08 17:35:52 -08:00
[lints]
workspace = true
2023-05-19 15:16:54 -07:00
[build-dependencies]
2023-05-24 19:11:56 -07:00
cxx-gen = { workspace = true }
2023-05-19 15:16:54 -07:00
2022-06-30 14:50:21 -07:00
[dependencies]
derive = { workspace = true }
2023-05-24 19:11:56 -07:00
cxx = { workspace = true }
libc = { workspace = true }
cfg-if = { workspace = true }
thiserror = { workspace = true }
2023-09-14 13:10:09 -07:00
bytemuck = { workspace = true }
2023-09-26 20:18:37 -07:00
num-traits = { workspace = true }
2023-10-13 16:59:54 -07:00
num-derive = { workspace = true }
const_format = { workspace = true }
2025-09-11 01:16:26 -07:00
nix = { workspace = true, features = ["fs", "mount", "user"] }
2025-09-10 10:26:41 -07:00
bitflags = { workspace = true }