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" }
|
2023-07-06 00:05:39 +00:00
|
|
|
argh = { path = "external/argh/argh" }
|
2023-05-25 02:11:56 +00:00
|
|
|
libc = "0.2"
|
|
|
|
cfg-if = "1.0"
|
|
|
|
num-traits = "0.2"
|
|
|
|
num-derive = "0.3"
|
2023-05-26 06:45:38 +00:00
|
|
|
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"
|
|
|
|
|
|
|
|
[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"
|