From 8626ad05bc712de42b7399e52876e7eef2e2dd4f Mon Sep 17 00:00:00 2001 From: Josh Matthews Date: Mon, 17 Jun 2024 11:08:53 -0400 Subject: [PATCH] Update accesskit and accesskit_winit (#13841) Updates the requirements on [accesskit](https://github.com/AccessKit/accesskit) to permit the latest version. - [Release notes](https://github.com/AccessKit/accesskit/releases) - [Changelog](https://github.com/AccessKit/accesskit/blob/main/release-please-config.json) - [Commits](https://github.com/AccessKit/accesskit/compare/accesskit-v0.14.0...accesskit-v0.15.0) --- updated-dependencies: - dependency-name: accesskit dependency-type: direct:production ... Adopted from #13787. Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- crates/bevy_a11y/Cargo.toml | 2 +- crates/bevy_winit/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/bevy_a11y/Cargo.toml b/crates/bevy_a11y/Cargo.toml index e45b112bdc960..7ac998228a680 100644 --- a/crates/bevy_a11y/Cargo.toml +++ b/crates/bevy_a11y/Cargo.toml @@ -14,7 +14,7 @@ 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.14" +accesskit = "0.15" [lints] workspace = true diff --git a/crates/bevy_winit/Cargo.toml b/crates/bevy_winit/Cargo.toml index 8a3db084d9ab1..aa991010b2cd1 100644 --- a/crates/bevy_winit/Cargo.toml +++ b/crates/bevy_winit/Cargo.toml @@ -33,7 +33,7 @@ bevy_tasks = { path = "../bevy_tasks", version = "0.14.0-dev" } # other # feature rwh_06 refers to window_raw_handle@v0.6 winit = { version = "0.30", default-features = false, features = ["rwh_06"] } -accesskit_winit = { version = "0.20", default-features = false, features = [ +accesskit_winit = { version = "0.21", default-features = false, features = [ "rwh_06", ] } approx = { version = "0.5", default-features = false }