alioth/Cargo.toml
Changyuan Lyu 089a7a2e67 feat(hv)!: track error sources with snafu (1/n)
Signed-off-by: Changyuan Lyu <changyuanl@google.com>
2024-06-09 10:11:22 -07:00

19 lines
471 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"] }
snafu = "0.8.3"
[profile.release]
lto = true
codegen-units = 1
opt-level = 3
strip = true