jarvy 0.3.0

Jarvy is a fast, cross-platform CLI that installs and manages developer tools across macOS and Linux.
Documentation
//! dfc - Dockerfile converter for Chainguard images
//!
//! A CLI utility that converts Dockerfiles to use Chainguard Images and APKs.
//! Facilitates migration to secure, minimal base images by automatically
//! replacing standard base images with their Chainguard equivalents.
//!
//! This tool uses the ToolSpec pattern for declarative installation.

use crate::define_tool;

define_tool!(DFC, {
    command: "dfc",
    macos: { brew: "chainguard-dev/tap/dfc" },
    linux: { brew: "chainguard-dev/tap/dfc" },
    // No native Windows support; requires Go installation
});

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

    #[test]
    fn dfc_registration_shape() {
        assert_eq!(DFC.command, "dfc");
        let mac = DFC.macos.expect("must support macOS");
        assert_eq!(mac.brew, Some("chainguard-dev/tap/dfc"));
    }
}