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//! - `install_methods`: Installation type detection and platform-specific binary replacement
8//! - `binary_ops`: Asset name resolution, SHA256 verification, download URLs
9
10pub mod binary_ops;
11pub mod http;
12pub mod install_methods;
13pub mod manifest;
14pub mod self_updater;
15pub mod update_checker;