Skip to content

Commit

Permalink
chore: update cargo version
Browse files Browse the repository at this point in the history
  • Loading branch information
fioncat committed Dec 4, 2024
1 parent 9ca4849 commit 66b319b
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 6 deletions.
20 changes: 17 additions & 3 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "roxide"
version = "0.17.1"
version = "0.17.2"
edition = "2021"
build = "build.rs"
license = "MIT"
Expand Down Expand Up @@ -44,7 +44,7 @@ serde_json = "1.0.133"
sha2 = "0.10.8"
shellexpand = "3.1.0"
strum = { version = "0.26.3", features = ["derive"] }
sysinfo = "0.32.1"
sysinfo = "0.33.0"
termion = "4.0.3"
toml = "0.8.19"
urlencoding = "2.1.3"
Expand Down
2 changes: 1 addition & 1 deletion src/cmd/info.rs
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ impl Info {
uptime: utils::format_elapsed(Duration::from_secs(System::uptime())),
cpu: CpuInfo {
brand: cpu_brand,
arch: Self::option_info(System::cpu_arch()),
arch: Self::option_info(Some(System::cpu_arch())),
physical_cores: sysinfo
.physical_core_count()
.map(|cores| Cow::Owned(format!("{cores}")))
Expand Down

0 comments on commit 66b319b

Please sign in to comment.