Cargo Features

[dependencies]
citadel_wire = { version = "0.9.0", default-features = false, features = ["std", "localhost-testing", "localhost-testing-loopback-only", "wasm", "vendored"] }
default = std

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

std default

Enables openssl and quinn, std of citadel_io and netbeam and std of serde

serde:

Provide impls for common standard library types like Vec<T> and HashMap<K, V>.
Requires a dependency on the Rust standard library.

localhost-testing = tracing
localhost-testing-loopback-only
wasm

Enables wasm of citadel_io and netbeam

vendored

Enables vendored of openssl

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.

tracing localhost-testing?