Cargo Features

[dependencies]
irc = { version = "1.1.0", default-features = false, features = ["channel-lists", "json_config", "toml_config", "yaml_config", "json", "yaml", "proxy", "tls-native", "tls-rust", "encoding"] }
default = channel-lists, ctcp, encoding, tls-native, toml_config

These default features are set whenever irc is added without default-features = false somewhere in the dependency tree.

ctcp channel-lists default
json_config json? = serde, serde_json
toml_config default = serde, toml

Affects error::TomlError

yaml_config yaml? = serde, serde_yaml
json = json_config

Temporary transitionary features

yaml = yaml_config
proxy = tokio-socks

Affects config::Config.proxy_type, config::Config.proxy_server, config::Config.proxy_port, config::Config.proxy_username, config::Config.proxy_password, data::proxy, proxy::ProxyType

tls-native default = native-tls, tokio-native-tls

Affects config::Config.use_tls, config::Config.cert_path, config::Config.client_cert_path, config::Config.client_cert_pass, config::Config.dangerously_accept_invalid_certs

tls-rust = rustls-native-certs, rustls-pemfile, tokio-rustls, webpki-roots

Affects config::Config.use_tls, config::Config.cert_path, config::Config.client_cert_path, config::Config.client_cert_pass, config::Config.dangerously_accept_invalid_certs

encoding default

Enables encoding, encoding of irc-proto

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.

serde json_config? toml_config yaml_config?

Enables serde

Feature - Config

serde_json json_config?
serde_yaml yaml_config?
toml toml_config

Enables toml ^0.7.3

tokio-socks proxy?

Enables tokio-socks

Feature - Proxy

native-tls tls-native

Enables native-tls

Feature - TLS

tokio-native-tls tls-native
rustls-native-certs tls-rust?
rustls-pemfile tls-rust?
tokio-rustls tls-rust?
webpki-roots tls-rust?