[package]
name = "atspi-connection"
version = "0.3.0"
edition = "2021"
description = "A method of connecting, querying, sending and receiving over AT-SPI."
license = "Apache-2.0 OR MIT"
keywords = ["screen-reader", "accessibility", "a11y", "linux"]
categories = ["accessibility", "API bindings"]
rust-version = "1.68.2"
repository = "https://github.com/odilia-app/atspi/"
readme = "README.md"
include = ["src/**/*", "LICENSE-*", "README.md"]
[features]
default = ["async-std"]
tracing = ["dep:tracing"]
async-std = ["zbus/async-io", "atspi-proxies/async-std", "atspi-common/async-std"]
tokio = ["zbus/tokio", "atspi-proxies/tokio", "atspi-common/tokio"]
[dependencies]
atspi-proxies = { path = "../atspi-proxies/", version = "0.3.0", default-features = false }
atspi-common = { path = "../atspi-common/", version = "0.3.0", default-features = false }
futures-lite = "1.13.0"
zbus.workspace = true
tracing = { optional = true, workspace = true }
[dev-dependencies]
tokio-test = "0.4.2"
enumflags2.workspace = true