From ffd2d0c8008b71aa6df0ed3f00ef3313b6362b96 Mon Sep 17 00:00:00 2001 From: Matt Hunzinger Date: Thu, 20 Jun 2024 17:36:01 -0400 Subject: [PATCH] Import accesskit and raise minimum Rust version to match it --- Cargo.toml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 6354e317..71c97bbc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -32,14 +32,19 @@ edition = "2021" description = "Top level crate for Blitz" license = "MIT OR Apache-2.0" keywords = ["dom", "ui", "gui", "react", "wasm"] -rust-version = "1.60.0" +rust-version = "1.70.0" publish = false +[features] +accesskit = ["dep:accesskit"] +default = ["accesskit"] + [profile.dev.package."*"] opt-level = 2 # Need to force specific versions of these dependencies [dependencies] +accesskit = { version = "0.12.2", optional = true } # webrender = "0.61.0" euclid = { version = "0.22", features = ["serde"] } # mozbuild = "0.1.0"