Magisk/native/src/Cargo.toml

51 lines
1.0 KiB
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"
2023-09-06 20:57:43 +00:00
num-derive = "0.4"
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"
p256 = "0.13"
p384 = "0.13"
rsa = "0.9"
x509-cert = "0.2"
der = "0.7"
2023-09-14 20:10:09 +00:00
bytemuck = "1.14"
2023-09-19 07:12:49 +00:00
fdt = "0.1"
2023-06-30 22:50:52 +00:00
2023-07-06 17:12:44 +00:00
[workspace.dependencies.argh]
2023-10-24 13:41:16 +00:00
git = "https://github.com/google/argh.git"
rev = "1c632b046d084e7bde86b82dfc969b30b4647c8c"
default-features = false
2023-07-06 17:12:44 +00:00
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"