-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (31 loc) · 877 Bytes
/
Cargo.toml
File metadata and controls
39 lines (31 loc) · 877 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
34
35
36
37
38
39
[package]
name = "accesskit-c"
version = "0.21.2"
authors = ["The AccessKit contributors"]
license = "MIT OR Apache-2.0"
publish = false
edition = "2021"
rust-version = "1.85"
[lib]
name = "accesskit"
crate-type = ["cdylib", "staticlib"]
doc = false
[features]
cbindgen = []
android-embedded-dex = ["accesskit_android/embedded-dex"]
[dependencies]
accesskit = "0.24.0"
[target.'cfg(target_os = "windows")'.dependencies]
accesskit_windows = "0.32.1"
[target.'cfg(target_os = "macos")'.dependencies]
accesskit_macos = "0.26.0"
[target.'cfg(any(target_os = "linux", target_os = "dragonfly", target_os = "freebsd", target_os = "openbsd", target_os = "netbsd"))'.dependencies]
accesskit_unix = "0.21.0"
[target.'cfg(target_os = "android")'.dependencies]
accesskit_android = "0.7.2"
[profile.release]
lto = true
opt-level = "z"
codegen-units = 1
panic = "abort"
debug = true