Magisk/native/src/Cargo.toml

43 lines
927 B
TOML
Raw Normal View History

2022-06-30 21:50:21 +00:00
[workspace]
2022-07-24 13:14:49 +00:00
exclude = ["external"]
members = ["base", "boot", "core", "init", "sepolicy"]
2023-06-15 08:26:54 +00:00
resolver = "2"
2022-06-30 21:50:21 +00:00
2023-05-25 02:11:56 +00:00
[workspace.dependencies]
cxx = { path = "external/cxx-rs" }
cxx-gen = { path = "external/cxx-rs/gen/lib" }
libc = "0.2"
cfg-if = "1.0"
num-traits = "0.2"
num-derive = "0.3"
thiserror = "1.0"
byteorder = "1"
2023-06-10 23:27:36 +00:00
size = "0.4"
2023-06-30 22:50:52 +00:00
sha1 = "0.10"
sha2 = "0.10"
digest = "0.10"
2023-07-06 17:12:44 +00:00
[workspace.dependencies.argh]
git = "https://github.com/topjohnwu/argh.git"
rev = "2fecd81d606364a8b07b942ed01697bbd3a62193"
2023-06-30 22:50:52 +00:00
[workspace.dependencies.pb-rs]
git = "https://github.com/tafia/quick-protobuf.git"
rev = "2f37d5a65504de7d716b5b28fd82219501a901a9"
[workspace.dependencies.quick-protobuf]
git = "https://github.com/tafia/quick-protobuf.git"
rev = "2f37d5a65504de7d716b5b28fd82219501a901a9"
2023-05-25 02:11:56 +00:00
2022-06-30 21:50:21 +00:00
[profile.dev]
opt-level = "z"
lto = true
codegen-units = 1
panic = "abort"
[profile.release]
opt-level = "z"
lto = true
codegen-units = 1
panic = "abort"