Cargo Features

[dependencies]
lnk-thrussh-agent = { version = "0.1.0", default-features = false, features = ["tokio-agent", "smol-agent"] }
default = tokio-agent

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

tokio-agent default = tokio

Affects client::tokio, server::tokio

smol-agent = smol

Affects client::smol, server::smol

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.

smol smol-agent?

Enables smol ^1.2

tokio tokio-agent