alioth/Cargo.toml
Changyuan Lyu b44bb87b87 feat!: use RwLock and Mutex from parking_lot
`RwLock` is used a lot and the feature `hardware-lock-elision` looks
very promising.

Signed-off-by: Changyuan Lyu <changyuanl@google.com>
2024-04-27 12:54:06 -07:00

13 lines
236 B
TOML

[workspace]
members = ["alioth", "alioth-cli"]
resolver = "2"
[workspace.dependencies]
parking_lot = { version = "0.12", features = ["hardware-lock-elision"] }
[profile.release]
lto = true
codegen-units = 1
opt-level = 3
strip = true