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

This commit is contained in:
Christoph J. Scherr 2024-05-10 19:26:29 +02:00
parent df621fdb6d
commit d9c921ef9c

View file

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