p4cli-20251-mac-arm64 0.1.0

Perforce command-line tools binary, Cannot be used independently.
Documentation
pub fn get_p4_cli_zst() -> Vec<u8> {
    #[cfg(all(target_os = "macos", target_arch = "aarch64"))]
    {
        return include_bytes!("../bin/2025.1/p4_mac_arm64.zst").to_vec();
    }

    #[cfg(not(all(target_os = "macos", target_arch = "aarch64")))]
    vec![]
}

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

    #[test]
    fn it_works() {
        let binary = get_p4_cli_zst();
        assert!(!binary.is_empty());
    }
}