Compare commits

..

3 commits

Author SHA1 Message Date
d9c921ef9c refactor: use a larger integer type #3
All checks were successful
cargo devel CI / cargo CI (push) Successful in 1m12s
2024-05-10 19:26:29 +02:00
df621fdb6d fix: fix cli interface to not need a format flag 2024-05-10 19:26:09 +02:00
6c66c285a0 feat: first working version 2024-05-10 19:26:09 +02:00

View file

@ -6,7 +6,7 @@
use clap::{ArgGroup, Parser};
use clap_num::maybe_hex;
pub type Num = usize;
pub type Num = u128;
#[derive(Copy, Clone, Debug)]
enum Format {