Skip to main content

par_term_update/
lib.rs

1//! Self-update and update-check system for par-term terminal emulator.
2//!
3//! Provides:
4//! - `manifest`: File tracking for bundled assets (shaders, shell integration)
5//! - `update_checker`: GitHub release polling with configurable frequency
6//! - `self_updater`: In-place binary replacement for standalone installs
7
8pub mod http;
9pub mod manifest;
10pub mod self_updater;
11pub mod update_checker;