use std::{fs, path::Path};
fn main() {
let out_path = Path::new("src/resources/logo.ansi");
let logo_bytes = include_bytes!("src/resources/logo.png");
let ansi = logo_art::image_to_ansi(logo_bytes, 72);
fs::write(out_path, ansi).unwrap();
println!("cargo::rerun-if-changed=src/resources/logo.png");
}