fstool 0.0.1

Build disk images and filesystems (ext2/3/4, MBR, GPT) from a directory tree and TOML spec, in the spirit of genext2fs.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! fstool CLI — thin wrapper over the library.
//!
//! Subcommands will be wired up in P5 (clap). For now this is a placeholder
//! so `cargo build` produces a runnable binary while the library lands.

fn main() {
    eprintln!(
        "fstool {} — CLI not yet implemented (see roadmap)",
        env!("CARGO_PKG_VERSION")
    );
    std::process::exit(2);
}