From e72ad031e7db75232122a846fe86a9fa2529a2fe Mon Sep 17 00:00:00 2001 From: Clement Tsang <34804052+ClementTsang@users.noreply.github.com> Date: Mon, 6 Jul 2026 02:04:46 -0400 Subject: [PATCH] deps: bump regex to 1.12.4 and rustc-hash to 2.1.3 (#2125) --- Cargo.lock | 12 ++++++------ Cargo.toml | 4 ++-- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index cd745ae1..cd2e2869 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1327,9 +1327,9 @@ dependencies = [ [[package]] name = "regex" -version = "1.12.3" +version = "1.12.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276" +checksum = "f1292b7759ae1cb9ec195452d1390a074f0cd8541ab7a5a8c31cd6db45d4a6ba" dependencies = [ "aho-corasick", "memchr", @@ -1350,9 +1350,9 @@ dependencies = [ [[package]] name = "regex-syntax" -version = "0.8.9" +version = "0.8.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a96887878f22d7bad8a3b6dc5b7440e0ada9a245242924394987b21cf2210a4c" +checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4" [[package]] name = "roff" @@ -1362,9 +1362,9 @@ checksum = "323c417e1d9665a65b263ec744ba09030cfb277e9daa0b018a4ab62e57bc8189" [[package]] name = "rustc-hash" -version = "2.1.2" +version = "2.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe" +checksum = "6b1e7f9a428571be2dc5bc0505c13fb6bf936822b894ec87abf8a08a4e51742d" [[package]] name = "rustc_version" diff --git a/Cargo.toml b/Cargo.toml index 13bde760..e1a12d17 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -84,8 +84,8 @@ ratatui = { version = "0.30.2", default-features = false, features = [ "crossterm", ] } ratatui-core = "0.1.2" -regex = "1.12.3" -rustc-hash = "2.1.2" +regex = "1.12.4" +rustc-hash = "2.1.3" serde = { version = "1.0.228", features = ["derive"] } starship-battery = { version = "0.11.0", optional = true } sysinfo = "=0.39.5"