Magisk/native/src/boot/Cargo.toml

22 lines
452 B
TOML
Raw Normal View History

2022-06-30 21:50:21 +00:00
[package]
name = "magiskboot"
2022-08-09 05:53:37 +00:00
version = "0.0.0"
2022-06-30 21:50:21 +00:00
edition = "2021"
[lib]
crate-type = ["staticlib"]
path = "lib.rs"
2022-06-30 21:50:21 +00:00
2023-05-03 23:13:05 +00:00
[build-dependencies]
2023-05-29 00:30:33 +00:00
protobuf-codegen = { workspace = true }
2023-05-25 02:11:56 +00:00
cxx-gen = { workspace = true }
2023-05-03 23:13:05 +00:00
2022-06-30 21:50:21 +00:00
[dependencies]
base = { path = "../base" }
cxx = { path = "../external/cxx-rs" }
protobuf = { workspace = true }
byteorder = { workspace = true }
anyhow = { workspace = true }
2023-06-09 13:43:26 +00:00
clap = { version = "4.3.2", features = ["derive"] }
size = "0.4.1"