powerliners 0.2.5

1:1 Rust port of powerline/powerline. The ultimate statusline/prompt utility
Documentation
// vim:fileencoding=utf-8:noet
//! Port of `scripts/`.
//!
//! Mirror of the five entry-point scripts that live OUTSIDE the
//! `powerline` Python package (they're standalone executables at the
//! repo root in upstream). Each script becomes a Rust module here +
//! a thin shim under `src/bin/` that calls into `main()`.
//!
//! - `powerline-config`  → [`powerline_config::main`]
//! - `powerline-lint`    → [`powerline_lint::main`]
//! - `powerline-render`  → [`powerline_render::main`]
//! - `powerline-daemon`  → [`powerline_daemon::main`]
//! - `powerline-release` → maintenance tool — helpers ported in
//!   [`powerline_release`]; main entry intentionally not ported since
//!   it's a release-cutting script, not part of the runtime path.
//!
//! Because `scripts/extract_py_names.py` only walks the `powerline`
//! Python package (it skips `scripts/`), every fn
//! ported here is flagged by the drift gate. Such names land in
//! `tests/data/fake_fn_allowlist.txt` with a rationale citing the
//! exact `scripts/<name>:LINE` source.

pub mod powerline_config;
pub mod powerline_daemon;
pub mod powerline_lint;
pub mod powerline_release;
pub mod powerline_render;