Cargo Features

[dependencies]
tryagain = { version = "0.1.0", default-features = false, features = ["runtime-async-std", "runtime-tokio"] }
default = runtime-tokio

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

runtime-async-std = async-std, pin-project

Affects tryagain::future

runtime-tokio default = pin-project, tokio

Affects tryagain::future

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-std runtime-async-std?
tokio runtime-tokio
pin-project runtime-async-std? runtime-tokio