1 2 3 4 5 6 7
//! Version checks and installed-binary updates. mod check; mod install; pub use check::{UpdateCheckResult, UpdateInfo, check_for_updates}; pub use install::{InstallMethod, UpdateError, UpdateOutcome, update_installed, update_to_version};