mirror of
https://github.com/bevyengine/bevy
synced 2024-11-26 14:40:19 +00:00
f7bc0a01dd
Also bumps `accesskit_winit` to 0.22 and fixes one breaking change. # Objective - `accesskit` has been updated recently to 0.16! ## Solution - Update `accesskit`, as well as `accesskit_winit`. - [`accesskit` changelog](552032c839/common/CHANGELOG.md (0160-2024-06-29)
) - [`accesskit_winit` changelog](552032c839/platforms/winit/CHANGELOG.md (0220-2024-06-29)
) - Fix one breaking change where `Role::StaticText` has been renamed to `Role::Label`. ## Testing - The test suite should cover most things. - It would be good to test this with an example, but I don't know how. --- ## Changelog - Update `accesskit` to 0.16 and `accesskit_winit` to 0.22. ## Migration Guide `accesskit`'s `Role::StaticText` variant has been renamed to `Role::Label`.
24 lines
653 B
TOML
24 lines
653 B
TOML
[package]
|
|
name = "bevy_a11y"
|
|
version = "0.14.0-dev"
|
|
edition = "2021"
|
|
description = "Provides accessibility support for Bevy Engine"
|
|
homepage = "https://bevyengine.org"
|
|
repository = "https://github.com/bevyengine/bevy"
|
|
license = "MIT OR Apache-2.0"
|
|
keywords = ["bevy", "accessibility", "a11y"]
|
|
|
|
[dependencies]
|
|
# bevy
|
|
bevy_app = { path = "../bevy_app", version = "0.14.0-dev" }
|
|
bevy_derive = { path = "../bevy_derive", version = "0.14.0-dev" }
|
|
bevy_ecs = { path = "../bevy_ecs", version = "0.14.0-dev" }
|
|
|
|
accesskit = "0.16"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[package.metadata.docs.rs]
|
|
rustdoc-args = ["-Zunstable-options", "--cfg", "docsrs"]
|
|
all-features = true
|