chore: update libpt and adjust to breaking changes #5
cargo devel CI / cargo CI (push) Failing after 1m21s Details

This commit is contained in:
Christoph J. Scherr 2024-05-23 14:41:27 +02:00
parent 03188c8416
commit f6c9c3c820
2 changed files with 3 additions and 3 deletions

View File

@ -12,7 +12,7 @@ repository = "https://git.cscherr.de/PlexSheep/hedu"
keywords = ["hexdumper"]
[dependencies]
libpt = { version = "0.3.11", features = ["log", "bintols"] }
libpt = { version = "0.5.1", features = ["log", "bintols"] }
clap = { version = "4.4.4", features = ["derive", "help"] }
clap-num = { version = "1.0.2" }
clap-verbosity-flag = { version = "2.0.1" }

View File

@ -130,10 +130,10 @@ fn cli_parse() -> Cli {
}
};
if cli.meta {
Logger::init(None, Some(ll), false).expect("could not initialize Logger");
let _ = Logger::builder().max_level(ll).build();
} else {
// less verbose version
Logger::init_mini(Some(ll)).expect("could not initialize Logger");
let _ = Logger::builder().build();
}
cli
}