pacsea 0.8.2

A fast, friendly TUI for browsing and installing Arch and AUR packages with built-in news and security scanning
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/// Dependencies tab rendering for preflight modal.
pub mod deps;
/// Files tab rendering for preflight modal.
pub mod files;
/// Sandbox tab rendering for preflight modal.
pub mod sandbox;
/// Services tab rendering for preflight modal.
pub mod services;
/// Summary tab rendering for preflight modal.
pub mod summary;

pub use deps::render_deps_tab;
pub use files::render_files_tab;
pub use sandbox::{SandboxTabContext, render_sandbox_tab};
pub use services::render_services_tab;
pub use summary::render_summary_tab;