alioth/Cargo.toml
Changyuan Lyu 6e97023603 feat(cli): add a new crate for parsing cli opts
`serde-aco` is for parsing complex data structures from command line.
Nested structures can be expressed by multiple key-value pair
strings.

This crate is inspired by QEMU's `-object` flag.

Signed-off-by: Changyuan Lyu <changyuanl@google.com>
2024-05-22 00:00:14 -07:00

19 lines
455 B
TOML

[workspace]
members = ["alioth", "alioth-cli", "macros", "serde-aco"]
resolver = "2"
[workspace.package]
authors = ["Changyuan Lyu <changyuan.lv@gmail.com>"]
license = "Apache-2.0"
repository = "https://github.com/google/alioth"
[workspace.dependencies]
parking_lot = { version = "0.12", features = ["hardware-lock-elision"] }
serde = { version = "1.0", features = ["derive"] }
[profile.release]
lto = true
codegen-units = 1
opt-level = 3
strip = true