Module check_latest::blocking[][src]

Expand description

Check for version updates with blocking requests. Enabled with the blocking feature

use check_latest::*;

if let Ok(Some(version)) = check_max!() {
    println!("We've released a new version: {}!", version);
}