Cargo Features

[dependencies]
atspi = { version = "0.21.0", default-features = false, features = ["async-std", "tokio", "proxies", "proxies-async-std", "proxies-tokio", "connection", "connection-async-std", "connection-tokio", "tracing"] }
default = async-std

The async-std feature is set by default whenever atspi is added without default-features = false somewhere in the dependency tree.

async-std default = connection-async-std, proxies-async-std
tokio = connection-tokio, proxies-tokio
proxies proxies-async-std? proxies-tokio?
proxies-async-std async-std = proxies

Enables async-std of atspi-proxies

proxies-tokio tokio? = proxies

Enables tokio of atspi-proxies

connection connection-async-std? connection-tokio?
connection-async-std async-std = connection

Enables async-std of atspi-connection

connection-tokio tokio? = connection

Enables tokio of atspi-connection

tracing

Enables tracing of atspi-connection

Features from optional dependencies

In crates that don't use the dep: syntax, optional dependencies automatically become Cargo features. These features may have been created by mistake, and this functionality may be removed in the future.

atspi-connection connection-async-std? connection-tokio? tracing?
atspi-proxies proxies-async-std? proxies-tokio?