Cargo Features

[dependencies]
rsbinder = { version = "0.2.3", default-features = false, features = ["sync", "tokio", "async"] }
default = tokio

The tokio feature is set by default whenever rsbinder is added without default-features = false somewhere in the dependency tree.

sync build

Enables sync of rsbinder-aidl

tokio default = async

Enables full of tokio

tokio:

enable everything

async build tokio = async-trait

Enables async of rsbinder-aidl

Affects rsbinder::binder_async

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.

async-trait async?