Cargo Features

[dependencies]
k8-client = { version = "12.0.0", default-features = false, features = ["k8", "memory_client", "openssl_tls", "native_tls", "rust_tls"] }
default = openssl_tls

The openssl_tls feature is set by default whenever k8-client is added without default-features = false somewhere in the dependency tree.

k8

Affects k8-client::fixture

memory_client = async-channel, async-lock, serde_yaml

Affects client::memory

openssl_tls default

Enables openssl_tls of fluvio-future

native_tls

Enables native2_tls of fluvio-future

rust_tls = rustls

Enables tls of fluvio-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-channel memory_client?

Enables async-channel ^1.9.0

async-lock memory_client?

Enables async-lock ^2.8.0

rustls rust_tls?

Enables rustls ^0.21

serde_yaml memory_client?