Cargo Features
[dependencies]
artifact = { version = "0.2.4", default-features = false, features = ["no-failure-logs", "log", "time"] }
- default = time
-
The
time
feature is set by default wheneverartifact
is added without
somewhere in the dependency tree.default-features = false - no-failure-logs
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.
- log implicit feature
-
Enables log 0.3.*
log:
A lightweight logging facade for Rust
Affects
artifact::setup_log_crate_support
… - time default
-
Enables time 0.1.*
Affects
format::ZuluTimeMessageFormatter
,format::new_basic_format_instance
…