Skip to content

Commit

Permalink
chore: Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
oissevalt committed Oct 21, 2024
1 parent 26ab639 commit e5dc0bc
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 31 deletions.
44 changes: 22 additions & 22 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,20 +12,20 @@

[dependencies]
# Command-line parser
clap = { version = "4.5.11", features = ["derive"] }
clap = { version = "4.5.20", features = ["derive"] }

# System info
sysinfo = "0.31.2"
sysinfo = "0.32.0"

# Logging
log = "0.4.22"
fern = "0.6.2"
fern = "0.7.0"
chrono = "0.4.38"

# File archives
zip = "2.1.5"
tar = "0.4.41"
flate2 = "1.0.30"
zip = "2.2.0"
tar = "0.4.42"
flate2 = "1.0.34"

[build-dependencies]
# Static links on Windows
Expand Down
6 changes: 5 additions & 1 deletion src/proc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,11 @@ pub fn wait(pid: u32) {
break;
}

sys.refresh_processes_specifics(ProcessesToUpdate::All, specs.proc_refresh_kind);
sys.refresh_processes_specifics(
ProcessesToUpdate::All,
true,
specs.proc_refresh_kind,
);
prog_pid = Pid::from_u32(process::id());
thread::sleep(Duration::from_secs(1));
}
Expand Down
2 changes: 0 additions & 2 deletions src/util.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@ use std::{
time::Duration,
};

use ::log::{debug, info};

use crate::{
consts::{CLI_ARGS, EXE_NAME},
log,
Expand Down

0 comments on commit e5dc0bc

Please sign in to comment.