From 16b805b0a27e126ae0d1083ff402d24f1a61673c Mon Sep 17 00:00:00 2001 From: Clement Tsang <34804052+ClementTsang@users.noreply.github.com> Date: Sun, 6 Jul 2025 17:31:36 -0400 Subject: [PATCH] deps: bump root and lock deps (#1751) --- Cargo.lock | 12 ++++++------ Cargo.toml | 34 +++++++++++++++++++++++++++------- 2 files changed, 33 insertions(+), 13 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 9ff0c9d9..16760568 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -683,9 +683,9 @@ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" [[package]] name = "indexmap" -version = "2.9.0" +version = "2.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cea70ddb795996207ad57735b50c5982d8844f38ba9ee5f1aedcfb708a2aa11e" +checksum = "fe4cd85333e22411419a0bcae1297d25e58c9443848b11dc6a86fefe8c78a661" dependencies = [ "equivalent", "hashbrown", @@ -770,9 +770,9 @@ dependencies = [ [[package]] name = "libredox" -version = "0.1.3" +version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d" +checksum = "1580801010e535496706ba011c15f8532df6b42297d2e471fec38ceadd8c0638" dependencies = [ "bitflags 2.9.1", "libc", @@ -1020,9 +1020,9 @@ checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a" [[package]] name = "plist" -version = "1.7.2" +version = "1.7.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3d77244ce2d584cd84f6a15f86195b8c9b2a0dfbfd817c09e0464244091a58ed" +checksum = "546b279bf0638ee811d9e47de2ca5b66575a543035d79fdf83959dd2f5c3b4c3" dependencies = [ "base64", "indexmap", diff --git a/Cargo.toml b/Cargo.toml index 2f77311f..2febecfb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -75,24 +75,33 @@ generate_schema = ["schemars", "serde_json", "strum"] anyhow = "1.0.98" backtrace = "0.3.75" cfg-if = "1.0.1" -clap = { version = "4.5.40", features = ["default", "cargo", "wrap_help", "derive"] } +clap = { version = "4.5.40", features = [ + "default", + "cargo", + "wrap_help", + "derive", +] } concat-string = "1.0.1" crossterm = "0.29.0" ctrlc = { version = "3.4.7", features = ["termination"] } dirs = "6.0.0" hashbrown = "0.15.4" humantime = "2.2.0" -indexmap = "2.9.0" +indexmap = "2.10.0" indoc = "2.0.6" itertools = "0.14.0" -nvml-wrapper = { version = "0.11.0", optional = true, features = ["legacy-functions"] } +nvml-wrapper = { version = "0.11.0", optional = true, features = [ + "legacy-functions", +] } regex = "1.11.1" serde = { version = "1.0.219", features = ["derive"] } starship-battery = { version = "0.10.2", optional = true } sysinfo = "=0.35.2" timeless = "0.0.14-alpha" toml_edit = { version = "0.22.27", features = ["serde"] } -tui = { version = "0.29.0", package = "ratatui", features = ["unstable-rendered-line-info"] } +tui = { version = "0.29.0", package = "ratatui", features = [ + "unstable-rendered-line-info", +] } unicode-ellipsis = "0.3.0" unicode-segmentation = "1.12.0" unicode-width = "0.2.0" @@ -100,7 +109,11 @@ unicode-width = "0.2.0" # Used for logging. Mostly a debugging tool. fern = { version = "0.7.1", optional = true } log = { version = "0.4.27", optional = true } -time = { version = "0.3.41", features = ["local-offset", "formatting", "macros"], optional = true } +time = { version = "0.3.41", features = [ + "local-offset", + "formatting", + "macros", +], optional = true } # These are just used for JSON schema generation. schemars = { version = "0.9.0", optional = true } @@ -135,7 +148,9 @@ filedescriptor = "0.8.3" [dev-dependencies] assert_cmd = "2.0.17" -cargo-husky = { version = "1.5.0", default-features = false, features = ["user-hooks"] } +cargo-husky = { version = "1.5.0", default-features = false, features = [ + "user-hooks", +] } predicates = "3.1.3" tempfile = { version = "3.20.0", default-features = false } @@ -143,7 +158,12 @@ tempfile = { version = "3.20.0", default-features = false } portable-pty = "0.9.0" [build-dependencies] -clap = { version = "4.5.40", features = ["default", "cargo", "wrap_help", "derive"] } +clap = { version = "4.5.40", features = [ + "default", + "cargo", + "wrap_help", + "derive", +] } clap_complete = "4.5.54" clap_complete_nushell = "4.5.7" clap_complete_fig = "4.5.2"