jarvy 0.5.2

Jarvy is a fast, cross-platform CLI that installs and manages developer tools across macOS and Linux.
Documentation
//! kafkactl - declarative Kafka admin CLI (deviceinsight)
//!
//! `kafkactl` is a `kubectl`-shaped CLI for Kafka — declarative
//! `kafkactl apply -f topic.yaml`, `kafkactl get topics`,
//! `kafkactl describe consumer-group`. Often preferred over `kcat`
//! when admin work dominates over message debugging.

use crate::define_tool;

define_tool!(KAFKACTL, {
    command: "kafkactl",
    macos: { brew: "deviceinsight/packages/kafkactl" },
    // Linux: install via Linuxbrew through the same tap, or use the
    // upstream release binary. No native distro package.
    linux: { brew: "deviceinsight/packages/kafkactl" },
    // No first-party winget manifest; install from
    // https://github.com/deviceinsight/kafkactl/releases.
    category: "messaging",
});

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

    #[test]
    fn kafkactl_registration_shape() {
        assert_eq!(KAFKACTL.command, "kafkactl");
        assert_eq!(KAFKACTL.category, Some("messaging"));
        let mac = KAFKACTL.macos.expect("kafkactl must support macOS");
        assert_eq!(
            mac.brew,
            Some("deviceinsight/packages/kafkactl"),
            "macOS formula lives in the deviceinsight/packages tap (verify upstream if this fails — formula may have promoted to homebrew-core)"
        );
        let linux = KAFKACTL.linux.expect("kafkactl must support Linux");
        assert_eq!(linux.brew, Some("deviceinsight/packages/kafkactl"));
        assert!(KAFKACTL.windows.is_none(), "no first-party winget manifest");
    }
}