Skip to content

Commit

Permalink
build(deps): bump sysinfo from 0.32.1 to 0.33.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mkroening committed Dec 10, 2024
1 parent b61ec53 commit f594934
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion xtask/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ edition = "2021"
anyhow = "1.0"
clap = { version = "4", features = ["derive"] }
llvm-tools = "0.1"
sysinfo = "0.32"
sysinfo = "0.33"
xshell = "0.2"
2 changes: 1 addition & 1 deletion xtask/src/ci/qemu.rs
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ impl Qemu {

fn get_frequency() -> u64 {
let mut sys = System::new();
sys.refresh_cpu_specifics(CpuRefreshKind::new().with_frequency());
sys.refresh_cpu_specifics(CpuRefreshKind::nothing().with_frequency());
let frequency = sys.cpus().first().unwrap().frequency();
if !sys.cpus().iter().all(|cpu| cpu.frequency() == frequency) {
eprintln!("CPU frequencies are not all equal");
Expand Down

0 comments on commit f594934

Please sign in to comment.