Cargo Features

[dependencies]
compio-tls = { version = "0.4.0", default-features = false, features = ["all", "rustls", "ring", "aws-lc-rs", "aws-lc-rs-fips", "read_buf", "nightly"] }
default = native-tls

The native-tls feature is set by default whenever compio-tls is added without default-features = false somewhere in the dependency tree.

all = native-tls, rustls
rustls all? aws-lc-rs? aws-lc-rs-fips? ring?

Enables rustls

ring = rustls

Enables ring of rustls

aws-lc-rs aws-lc-rs-fips? = rustls

Enables aws-lc-rs of rustls

rustls:

Alias because Cargo features commonly use -

aws-lc-rs-fips = aws-lc-rs

Enables fips of rustls

read_buf nightly?

Enables read_buf of compio-buf, compio-io, and optional rustls

nightly = read_buf

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.

native-tls default all?