mirror of
https://github.com/topjohnwu/Magisk.git
synced 2024-11-28 20:45:24 +00:00
22 lines
464 B
TOML
22 lines
464 B
TOML
[package]
|
|
name = "magiskboot"
|
|
version = "0.0.0"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
crate-type = ["staticlib"]
|
|
path = "lib.rs"
|
|
|
|
[build-dependencies]
|
|
protobuf-codegen = { workspace = true }
|
|
cxx-gen = { workspace = true }
|
|
|
|
[dependencies]
|
|
base = { path = "../base" }
|
|
cxx = { path = "../external/cxx-rs" }
|
|
protobuf = { workspace = true }
|
|
byteorder = { workspace = true }
|
|
anyhow = { workspace = true }
|
|
clap = { workspace = true, features = ["derive"] }
|
|
size = { workspace = true }
|