Crates.io | atspi |
lib.rs | atspi |
version | 0.29.0 |
created_at | 2022-10-03 17:37:19.344575+00 |
updated_at | 2025-09-18 14:15:56.4996+00 |
description | Pure-Rust, zbus-based AT-SPI2 protocol implementation. |
homepage | https://github.com/odilia-app/atspi |
repository | https://github.com/odilia-app/atspi |
max_upload_size | |
id | 679200 |
size | 66,531 |
Higher level, asynchronous, pure Rust AT-SPI2 protocol implementation using zbus.
Part of the Odilia screen reader project.
#[deny(missing_docs)]
#[deny(unsafe_code)]
#[deny(clippy:all, clippy::pedantic, clippy::cargo)]
This crate makes use of the zbus crate for dbus communication. We use the asynchronous zbus API, so to use atspi, you will need to run an async executer like tokio or smol.
default
: proxies
, connection
.proxies
: enable re-export of the atspi-proxies
crate; this allows you to directly communicate with DBus.connection
: enable re-export of the atspi-connection
crate; this gives some nice abstractions over DBus when receiving only. proxies
will still be needed to query information actively.tokio
: enable support for the tokio
runtime; other runtimes can be used without an integration feature.
glomio
as it has its own types not related to how other runtimes work; atspi
is not compatible with atspi
(PRs welcome though)tracing
: enable support for the tracing
logger.Atspi is used to send and receive data to and from applications. Sender and recipient need to agree on the shape of the data type for fruitful communication. Our best bet is to keep our types in sync with the protocol descriptions.
We employ zbus-lockstep to match types against those defined in the AT-SPI2 protocol descriptions.
Not all types can be validated (easily) with zbus_lockstep because types may not exist in the protocol descriptions, for example because they are deprecated (but still in use) or we have chosen a different representation.
A (partial) review of type validation may be found here
This repository offers basic pre-commit and pre-push scripts in the .githooks
directory.
We recommend contributors to enable local git hooks.
This command will configure git to use the hooks from the .githooks
directory for this repository.
git config core.hooksPath .githooks
The atspi
library is licensed as Apache 2.0 or MIT.