deps: update libraries

This commit is contained in:
andy.boot
2025-11-20 23:40:02 +00:00
parent de2d748a88
commit 62bf1e14de
5 changed files with 272 additions and 279 deletions
+2
View File
@@ -62,6 +62,8 @@ fn initialize() {
fn run_cmd<T: AsRef<OsStr>>(command_args: &[T]) -> Output {
initialize();
let mut to_run = &mut Command::cargo_bin("dust").unwrap();
// Hide progress bar
to_run.arg("-P");
for p in command_args {
to_run = to_run.arg(p);
}