-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (33 loc) · 1021 Bytes
/
Cargo.toml
File metadata and controls
42 lines (33 loc) · 1021 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
40
41
42
[package]
name = "accesskit-c"
version = "0.22.1"
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.33.0"
[target.'cfg(target_os = "macos")'.dependencies]
accesskit_macos = "0.26.1"
[target.'cfg(any(target_os = "linux", target_os = "dragonfly", target_os = "freebsd", target_os = "openbsd", target_os = "netbsd"))'.dependencies]
accesskit_unix = "0.21.1"
[target.'cfg(target_os = "android")'.dependencies]
accesskit_android = "0.7.3"
[target.'cfg(any(target_os = "ios", target_os = "tvos", target_os = "visionos", target_os = "watchos"))'.dependencies]
accesskit_ios = "0.1.0"
[profile.release]
lto = true
opt-level = "z"
codegen-units = 1
panic = "abort"
debug = true