atspi/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
//! `atspi` root crate, which may bring in various subcrates:
//! * `atspi_common` (required)
//! * `atspi_proxies` (with use of `proxies` feature flag)
//! * `atspi_connection` (with use of `connection` feature flag)
//! * `zbus` re-export (with use of `zbus` feature flag)

#![deny(clippy::all, clippy::pedantic, clippy::cargo, unsafe_code, rustdoc::all)]
#![allow(clippy::multiple_crate_versions)]

#[cfg(all(not(feature = "async-std"), not(feature = "tokio")))]
compile_error!("You must specify at least one of the `async-std` or `tokio` features.");

pub use atspi_common::*;

#[cfg(feature = "proxies")]
pub use atspi_proxies as proxy;

#[cfg(feature = "connection")]
pub use atspi_connection as connection;
#[cfg(feature = "connection")]
pub use connection::AccessibilityConnection;

#[cfg(feature = "zbus")]
pub use zbus;