From 95ade6d6a036a5f1eae763931811e38433815e1b Mon Sep 17 00:00:00 2001 From: Nolan Darilek Date: Fri, 7 Jul 2023 17:49:53 -0500 Subject: [PATCH] Bump `accesskit` and `accesskit_winit`. (#8655) # Objective `accesskit` and `accesskit_winit` need to be upgraded. ## Solution Upgrade `accesskit` and `accesskit_winit`. --- ## Changelog ### Changed * Upgrade accesskit to v0.11. * Upgrade accesskit_winit to v0.14. --- 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 d4957d89c8..4d95f2d144 100644 --- a/crates/bevy_a11y/Cargo.toml +++ b/crates/bevy_a11y/Cargo.toml @@ -14,4 +14,4 @@ bevy_app = { path = "../bevy_app", version = "0.11.0-dev" } bevy_derive = { path = "../bevy_derive", version = "0.11.0-dev" } bevy_ecs = { path = "../bevy_ecs", version = "0.11.0-dev" } -accesskit = "0.10" +accesskit = "0.11" diff --git a/crates/bevy_winit/Cargo.toml b/crates/bevy_winit/Cargo.toml index 1851c1db32..0b83621274 100644 --- a/crates/bevy_winit/Cargo.toml +++ b/crates/bevy_winit/Cargo.toml @@ -29,7 +29,7 @@ bevy_tasks = { path = "../bevy_tasks", version = "0.11.0-dev" } # other winit = { version = "0.28", default-features = false } -accesskit_winit = { version = "0.12", default-features = false } +accesskit_winit = { version = "0.14", default-features = false, features = ["async-io"] } approx = { version = "0.5", default-features = false } raw-window-handle = "0.5"