Cargo Features
[dependencies]
simplelog = { version = "0.12.2", default-features = false, features = ["local-offset", "test", "termcolor", "paris", "ansi_term"] }
- default = local-offset, termcolor
-
These default features are set whenever
simplelog
is added without
somewhere in the dependency tree.default-features = false - local-offset default
-
Enables local-offset of time
- test
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.
- termcolor default
-
Affects
logging::termcolor_to_ansiterm
… - paris implicit feature
-
Enables paris
paris:
A simple logger for your CLI apps or other things you want in the terminal
- ansi_term implicit feature
-
Enables ansi_term
ansi_term:
Library for ANSI terminal colours and styles (bold, underline)
Affects
logging::termcolor_to_ansiterm
…