Cargo Features
[dependencies]
gload = { version = "0.5.0", default-features = false, features = ["logging"] }
- default = logging
-
The
loggingfeature is set by default whenevergloadis added withoutsomewhere in the dependency tree.default-features = false - logging default
-
Enables logging features in the
gloadlib. This is always set on builds of the CLI binary, but may be disabled for the lib by using--no-default-featuresor settingdefault-features = falsein Cargo.toml. Enabling this feature makes gload depend on thelogcrate and output interesting messages atdebug!andtrace!level. Also enables theloggingfeature on therustlscrate.Enables clap and log, logging of rustls
Required by the binary