mirror of
https://github.com/topjohnwu/Magisk.git
synced 2026-01-27 15:25:08 -08:00
- Introduce new types: LoggedResult and LoggedError - Introduce new extension methods to log and add additional msgs - Never exit when logging error messages in Rust (all errors should be handled by using Result and Rust's error propagation) - Remove all usages of anyhow as it doesn't fit Magisk's use cases
16 lines
249 B
TOML
16 lines
249 B
TOML
[package]
|
|
name = "magiskpolicy"
|
|
version = "0.0.0"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
crate-type = ["staticlib", "rlib"]
|
|
path = "lib.rs"
|
|
|
|
[build-dependencies]
|
|
cxx-gen = { workspace = true }
|
|
|
|
[dependencies]
|
|
base = { path = "../base" }
|
|
cxx = { workspace = true }
|