atspi/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
#[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 = "zbus")]
pub use zbus;