isobemak 0.1.0

Create bootable ISO images with FAT32 and UEFI (El Torito) support in Rust.
Documentation
// isobemak/src/lib.rs
pub use crate::fat32::create_fat32_image;
pub use crate::iso::create_iso;
use std::{fs::File, io, path::Path};

mod fat32;
mod iso;
mod utils;

pub fn create_disk_and_iso(
    fat32_img: &Path,
    iso: &Path,
    bellows: &mut File,
    kernel: &mut File,
) -> io::Result<()> {
    create_fat32_image(fat32_img, bellows, kernel)?;
    create_iso(iso, fat32_img)?;
    Ok(())
}