feature flags everywhere (warnings but no errors so far)

This commit is contained in:
Breval Ferrari 2025-04-19 17:26:58 -04:00
parent 84a3b182ab
commit 51ab13b3ef
Signed by: breval
GPG key ID: A2EEBF62257FF960
7 changed files with 186 additions and 25 deletions

View file

@ -2,8 +2,10 @@ use std::path::PathBuf;
use clap::Parser;
/// CLI from the Bent project
#[derive(Parser)]
pub(super) struct Cli {
pub(super) input_file: PathBuf,
pub(super) output_file: PathBuf,
/// Input file or standard input.
pub(super) input: PathBuf,
pub(super) output: PathBuf,
}