Skip to main content

aster/updater/
mod.rs

1//! 自动更新系统
2//!
3//! 提供版本检查、下载、安装和回滚功能
4
5mod checker;
6mod installer;
7mod manager;
8
9pub use checker::{
10    check_for_updates as check_version, compare_versions, UpdateCheckResult, VersionInfo,
11};
12pub use installer::{DownloadPhase, DownloadProgress, InstallOptions, InstallResult, Installer};
13pub use manager::{
14    check_for_updates, list_versions, perform_update, rollback_version, UpdateChannel,
15    UpdateConfig, UpdateEvent, UpdateManager, UpdateOptions, UpdateStatus,
16};