Expand description
Auto-update version checking
Checks crates.io for newer versions of logly and notifies users. Can be enabled/disabled via configuration.
§Example
use logly::VersionChecker;
let mut checker = VersionChecker::new(true);
if let Ok(Some(msg)) = checker.check_for_updates() {
println!("{}", msg);
}Structs§
- Version
Checker - Version checker for auto-update notifications.