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());
}
}