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 whenevercompio-tls
is added without
somewhere in the dependency tree.default-features = false - all = native-tls, rustls
- rustls all? aws-lc-rs? aws-lc-rs-fips? ring?
-
Enables rustls
- ring = rustls
- aws-lc-rs aws-lc-rs-fips? = rustls
-
rustls:
Alias because Cargo features commonly use
-
- aws-lc-rs-fips = aws-lc-rs
- 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?