mirror of
https://github.com/topjohnwu/Magisk.git
synced 2026-01-04 16:58:35 -08:00
29 lines
679 B
TOML
29 lines
679 B
TOML
[package]
|
|
name = "magiskboot"
|
|
version = "0.0.0"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
crate-type = ["staticlib"]
|
|
path = "lib.rs"
|
|
|
|
[build-dependencies]
|
|
cxx-gen = { workspace = true }
|
|
pb-rs = { workspace = true }
|
|
|
|
[dependencies]
|
|
base = { path = "../base" }
|
|
cxx = { path = "../external/cxx-rs" }
|
|
byteorder = { workspace = true }
|
|
size = { workspace = true }
|
|
quick-protobuf = { workspace = true }
|
|
argh = { workspace = true }
|
|
sha1 = { workspace = true }
|
|
sha2 = { workspace = true }
|
|
digest = { workspace = true }
|
|
p256 = { workspace = true }
|
|
p384 = { workspace = true }
|
|
rsa = { workspace = true, features = ["sha2"] }
|
|
x509-cert = { workspace = true }
|
|
der = { workspace = true, features = ["derive"] }
|