Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
bevyengine
GitHub Repository: bevyengine/bevy
Path: blob/main/crates/bevy_a11y/Cargo.toml
6595 views
1
[package]
2
name = "bevy_a11y"
3
version = "0.17.0-dev"
4
edition = "2024"
5
description = "Provides accessibility support for Bevy Engine"
6
homepage = "https://bevy.org"
7
repository = "https://github.com/bevyengine/bevy"
8
license = "MIT OR Apache-2.0"
9
keywords = ["bevy", "accessibility", "a11y"]
10
11
[features]
12
default = ["std", "bevy_reflect", "bevy_ecs/async_executor"]
13
14
# Functionality
15
16
## Adds runtime reflection support using `bevy_reflect`.
17
bevy_reflect = [
18
"dep:bevy_reflect",
19
"bevy_app/bevy_reflect",
20
"bevy_ecs/bevy_reflect",
21
]
22
23
## Adds serialization support through `serde`.
24
serialize = ["dep:serde", "bevy_ecs/serialize", "accesskit/serde"]
25
26
# Platform Compatibility
27
28
## Allows access to the `std` crate. Enabling this feature will prevent compilation
29
## on `no_std` targets, but provides access to certain additional features on
30
## supported platforms.
31
std = ["bevy_app/std", "bevy_ecs/std", "bevy_reflect/std"]
32
33
## `critical-section` provides the building blocks for synchronization primitives
34
## on all platforms, including `no_std`.
35
critical-section = [
36
"bevy_app/critical-section",
37
"bevy_ecs/critical-section",
38
"bevy_reflect?/critical-section",
39
]
40
41
[dependencies]
42
# bevy
43
bevy_app = { path = "../bevy_app", version = "0.17.0-dev", default-features = false }
44
bevy_derive = { path = "../bevy_derive", version = "0.17.0-dev" }
45
bevy_ecs = { path = "../bevy_ecs", version = "0.17.0-dev", default-features = false }
46
bevy_reflect = { path = "../bevy_reflect", version = "0.17.0-dev", default-features = false, optional = true }
47
48
# other
49
accesskit = { version = "0.21", default-features = false }
50
serde = { version = "1", default-features = false, features = [
51
"alloc",
52
], optional = true }
53
54
[lints]
55
workspace = true
56
57
[package.metadata.docs.rs]
58
rustdoc-args = ["-Zunstable-options", "--generate-link-to-definition"]
59
all-features = true
60
61