Allow unused items
Signed-off-by: Marcel Müller <neikos@neikos.email>
This commit is contained in:
parent
070957be5a
commit
dcb8162033
1 changed files with 5 additions and 3 deletions
|
|
@ -1,3 +1,5 @@
|
|||
#![expect(dead_code)]
|
||||
|
||||
use clap::Parser;
|
||||
|
||||
mod cli;
|
||||
|
|
@ -5,10 +7,10 @@ mod expr;
|
|||
|
||||
fn main() -> miette::Result<()> {
|
||||
let args = cli::Args::parse();
|
||||
let input_delim = args.delimiter();
|
||||
let input = args.input();
|
||||
let _input_delim = args.delimiter();
|
||||
let _input = args.input();
|
||||
|
||||
let expression = expr::parse(&args.expression)?;
|
||||
let _expression = expr::parse(&args.expression)?;
|
||||
|
||||
Ok(())
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue