2022-06-30 14:50:21 -07:00
|
|
|
[workspace]
|
2022-07-24 06:14:49 -07:00
|
|
|
exclude = ["external"]
|
|
|
|
members = ["base", "boot", "core", "init", "sepolicy"]
|
2023-06-15 01:26:54 -07:00
|
|
|
resolver = "2"
|
2022-06-30 14:50:21 -07:00
|
|
|
|
2023-05-24 19:11:56 -07: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 13:57:43 -07:00
|
|
|
num-derive = "0.4"
|
2023-05-25 23:45:38 -07:00
|
|
|
thiserror = "1.0"
|
|
|
|
byteorder = "1"
|
2023-06-10 16:27:36 -07:00
|
|
|
size = "0.4"
|
2023-06-30 15:50:52 -07:00
|
|
|
sha1 = "0.10"
|
|
|
|
sha2 = "0.10"
|
|
|
|
digest = "0.10"
|
2023-07-17 18:57:50 -07:00
|
|
|
p256 = "0.13"
|
|
|
|
p384 = "0.13"
|
|
|
|
rsa = "0.9"
|
|
|
|
x509-cert = "0.2"
|
|
|
|
der = "0.7"
|
2023-09-14 13:10:09 -07:00
|
|
|
bytemuck = "1.14"
|
2023-09-19 00:12:49 -07:00
|
|
|
fdt = "0.1"
|
2024-03-26 18:03:40 -07:00
|
|
|
const_format = "0.2"
|
2023-06-30 15:50:52 -07:00
|
|
|
|
2023-07-07 01:12:44 +08:00
|
|
|
[workspace.dependencies.argh]
|
2023-10-24 21:41:16 +08:00
|
|
|
git = "https://github.com/google/argh.git"
|
|
|
|
rev = "1c632b046d084e7bde86b82dfc969b30b4647c8c"
|
|
|
|
default-features = false
|
2023-07-07 01:12:44 +08:00
|
|
|
|
2023-06-30 15:50:52 -07: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-24 19:11:56 -07:00
|
|
|
|
2022-06-30 14:50:21 -07: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"
|