-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathCargo.toml
30 lines (27 loc) · 897 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
[workspace]
members = ["alioth", "alioth-cli", "macros", "serde-aco", "serde-aco-derive"]
resolver = "2"
[workspace.package]
authors = ["Changyuan Lyu <[email protected]>"]
license = "Apache-2.0"
repository = "https://github.com/google/alioth"
version = "0.7.0"
edition = "2024"
[workspace.dependencies]
parking_lot = { version = "0.12", features = ["hardware-lock-elision"] }
serde = { version = "1.0", features = ["derive"] }
snafu = "0.8.5"
macros = { version = "0.7.0", path = "macros", package = "alioth-macros" }
alioth = { version = "0.7.0", path = "alioth" }
serde-aco = { version = "0.7.0", path = "serde-aco" }
serde-aco-derive = { version = "0.7.0", path = "serde-aco-derive" }
assert_matches = "1"
proc-macro2 = "1"
syn = { version = "2", features = ["full"] }
quote = { version = "1" }
rstest = "0.23"
[profile.release]
lto = true
codegen-units = 1
opt-level = 3
strip = true