diff --git a/Cargo.lock b/Cargo.lock index 12e985b3..6c57de8c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -83,9 +83,9 @@ dependencies = [ [[package]] name = "anyhow" -version = "1.0.94" +version = "1.0.95" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c1fd03a028ef38ba2276dce7e33fcd6369c158a1bca17946c4b1b701891c1ff7" +checksum = "34ac096ce696dc2fcabef30516bb13c0a68a11d30131d3df6f04711467681b04" [[package]] name = "autocfg" @@ -806,9 +806,9 @@ checksum = "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775" [[package]] name = "os_info" -version = "3.9.0" +version = "3.9.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e5ca711d8b83edbb00b44d504503cd247c9c0bd8b0fa2694f2a1a3d8165379ce" +checksum = "eb6651f4be5e39563c4fe5cc8326349eb99a25d805a3493f791d5bfd0269e430" dependencies = [ "log", "serde", @@ -1183,18 +1183,18 @@ dependencies = [ [[package]] name = "thiserror" -version = "2.0.8" +version = "2.0.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "08f5383f3e0071702bf93ab5ee99b52d26936be9dedd9413067cbdcddcb6141a" +checksum = "f072643fd0190df67a8bab670c20ef5d8737177d6ac6b2e9a236cb096206b2cc" dependencies = [ "thiserror-impl", ] [[package]] name = "thiserror-impl" -version = "2.0.8" +version = "2.0.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f2f357fcec90b3caef6623a099691be676d033b40a058ac95d2a6ade6fa0c943" +checksum = "7b50fa271071aae2e6ee85f842e2e28ba8cd2c5fb67f11fcb1fd70b276f9e7d4" dependencies = [ "proc-macro2", "quote", diff --git a/gping/Cargo.toml b/gping/Cargo.toml index 0d1e0971..d6385c41 100644 --- a/gping/Cargo.toml +++ b/gping/Cargo.toml @@ -13,7 +13,7 @@ readme = "../readme.md" pinger = { version = "^2.0.0", path = "../pinger" } tui = { package = "ratatui", version = "0.29.0", features = ["crossterm"], default-features = false } crossterm = "0.28.1" -anyhow = "1.0.94" +anyhow = "1.0.95" chrono = "0.4.39" itertools = "0.13.0" shadow-rs = { version = "0.37.0", default-features = false } diff --git a/pinger/Cargo.toml b/pinger/Cargo.toml index b0940dd0..597b9947 100644 --- a/pinger/Cargo.toml +++ b/pinger/Cargo.toml @@ -8,7 +8,7 @@ description = "A small cross-platform library to execute the ping command and pa repository = "https://github.com/orf/pinger/" [dependencies] -thiserror = "2.0.8" +thiserror = "2.0.9" lazy-regex = "3.3.0" rand = { version = "0.8.5", optional = true } @@ -16,9 +16,9 @@ rand = { version = "0.8.5", optional = true } winping = "0.10.1" [dev-dependencies] -os_info = "3.9.0" +os_info = "3.9.1" ntest = "0.9.3" -anyhow = "1.0.94" +anyhow = "1.0.95" [features] default = []