[package]
edition = "2024"
rust-version = "1.90.0"
name = "accesskit_xplat"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "AccessKit UI accessibility infrastructure: cross-platform adapter"
readme = "README.md"
keywords = [
"gui",
"ui",
"accessibility",
]
license = "Apache-2.0"
repository = "https://github.com/dioxuslabs/blitz"
resolver = "2"
[features]
async-io = ["accesskit_unix/async-io"]
default = [
"accesskit_unix",
"async-io",
]
tokio = ["accesskit_unix/tokio"]
[lib]
name = "accesskit_xplat"
path = "src/lib.rs"
[dependencies.accesskit]
version = "0.23"
[dependencies.raw-window-handle]
version = "0.6.2"
features = ["std"]
[dev-dependencies.raw-window-handle]
version = "0.6"
[dev-dependencies.winit-core]
version = "0.31.0-beta.2"
[target.'cfg(any(target_os = "linux", target_os = "dragonfly", target_os = "freebsd", target_os = "openbsd", target_os = "netbsd"))'.dependencies.accesskit_unix]
version = "0.19.0"
optional = true
default-features = false
[target.'cfg(target_os = "android")'.dependencies.accesskit_android]
version = "0.6.0"
features = ["embedded-dex"]
optional = true
[target.'cfg(target_os = "android")'.dependencies.android-activity]
version = "0.6.0"
[target.'cfg(target_os = "macos")'.dependencies.accesskit_macos]
version = "0.24.0"
[target.'cfg(target_os = "windows")'.dependencies.accesskit_windows]
version = "0.31.0"