[package]
edition = "2021"
rust-version = "1.89"
name = "oxiui-accessibility"
version = "0.2.0"
authors = ["COOLJAPAN OU (Team Kitasan)"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "OxiUI accessibility bridge — builds an accesskit a11y node tree from the OxiUI widget graph"
readme = "README.md"
keywords = [
"accessibility",
"a11y",
"accesskit",
"cooljapan",
"pure-rust",
]
categories = [
"accessibility",
"gui",
]
license = "Apache-2.0"
repository = "https://github.com/cool-japan/oxiui"
[features]
default = []
text-bridge = ["dep:oxiui-text"]
[lib]
name = "oxiui_accessibility"
path = "src/lib.rs"
[[test]]
name = "focus_and_text_tests"
path = "tests/focus_and_text_tests.rs"
[[test]]
name = "tree"
path = "tests/tree.rs"
[dependencies.accesskit]
version = "0.24.1"
[dependencies.oxiui-core]
version = "0.2"
[dependencies.oxiui-text]
version = "0.2"
optional = true