forked from AccessKit/accesskit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (30 loc) · 682 Bytes
/
Copy pathCargo.toml
File metadata and controls
33 lines (30 loc) · 682 Bytes
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
31
32
33
[workspace]
resolver = "2"
members = [
"common",
"consumer",
"platforms/android",
"platforms/atspi-common",
"platforms/macos",
"platforms/unix",
"platforms/windows",
"platforms/winit",
]
default-members = [
"common",
"consumer",
"platforms/winit",
]
[workspace.package]
authors = ["The AccessKit contributors"]
categories = ["gui"]
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/AccessKit/accesskit"
rust-version = "1.77.2"
[workspace.dependencies]
hashbrown = { version = "0.16", default-features = false, features = ["default-hasher"] }
[profile.release]
lto = true
opt-level = "z"
codegen-units = 1