jarvy 0.3.0

Jarvy is a fast, cross-platform CLI that installs and manages developer tools across macOS and Linux.
Documentation
//! pgcli - postgres CLI with auto-completion
//!
//! pgcli is a command line interface for Postgres with auto-completion
//! and syntax highlighting.
//!
//! This tool uses the ToolSpec pattern for declarative installation.

use crate::define_tool;

define_tool!(PGCLI, {
    command: "pgcli",
    macos: { brew: "pgcli" },
    linux: { apt: "pgcli", dnf: "pgcli", pacman: "pgcli", apk: "pgcli" },
    windows: { choco: "pgcli" },
    bsd: { pkg: "py39-pgcli" },
});

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn pgcli_registration_shape() {
        assert_eq!(PGCLI.command, "pgcli");
        let mac = PGCLI.macos.expect("must support macOS");
        assert_eq!(mac.brew, Some("pgcli"));
    }
}