Cargo Features

[dependencies]
gload = { version = "0.5.0", default-features = false, features = ["logging"] }
default = logging

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

logging default

Enables logging features in the gload lib. This is always set on builds of the CLI binary, but may be disabled for the lib by using --no-default-features or setting default-features = false in Cargo.toml. Enabling this feature makes gload depend on the log crate and output interesting messages at debug! and trace! level. Also enables the logging feature on the rustls crate.

Enables clap and log, logging of rustls

Required by the binary