pacsea 0.8.2

A fast, friendly TUI for browsing and installing Arch and AUR packages with built-in news and security scanning
Documentation
/// AUR vote execution worker.
pub mod aur_vote;
/// Auxiliary background workers (status, news, tick, index updates).
pub mod auxiliary;
/// AUR comments fetching worker.
pub mod comments;
/// Package details fetching worker.
pub mod details;
/// Package installation/removal executor worker.
pub mod executor;
/// News feed filtering and worker functions.
pub mod news;
/// News article content fetching worker.
pub mod news_content;
/// Preflight analysis workers (dependencies, files, services, sandbox, summary).
pub mod preflight;
/// Package search worker.
pub mod search;
/// Package update checking, parsing, and worker functions.
pub mod updates;
/// Helper functions for update checking (system checks, temp DB).
mod updates_helpers;
/// [`UpdateCheckPayload`] sent from the updates worker to the UI event loop.
pub use updates_helpers::UpdateCheckPayload;
/// Parsing functions for update command output.
mod updates_parsing;