refactor: use a larger integer type #3
cargo devel CI / cargo CI (push) Successful in 1m12s Details

This commit is contained in:
Christoph J. Scherr 2024-05-10 19:26:29 +02:00
parent df621fdb6d
commit d9c921ef9c
1 changed files with 1 additions and 2 deletions

View File

@ -5,9 +5,8 @@
use clap::{ArgGroup, Parser}; use clap::{ArgGroup, Parser};
use clap_num::maybe_hex; use clap_num::maybe_hex;
use std::process::exit;
pub type Num = usize; pub type Num = u128;
#[derive(Copy, Clone, Debug)] #[derive(Copy, Clone, Debug)]
enum Format { enum Format {