ferrous-forge 1.9.6

System-wide Rust development standards enforcer
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Self-update system for Ferrous Forge

/// Automatic update checking on command invocation.
pub mod auto;
/// GitHub release fetching for update discovery.
pub mod github;
/// Update orchestration and binary replacement.
pub mod manager;
/// Update data types for channels and release info.
pub mod types;

pub use auto::check_auto_update;
pub use types::{UpdateChannel, UpdateInfo, UpdateManager};