From 66af1b72c3f1a8a5f58bc52e21bd9503f98d2a6c Mon Sep 17 00:00:00 2001 From: Tom Forbes Date: Mon, 22 Jul 2024 00:15:47 +0100 Subject: [PATCH] Bump deps, fix cargo "default-features" warning --- Cargo.lock | 24 ++++++++---------------- gping/Cargo.toml | 6 +++--- 2 files changed, 11 insertions(+), 19 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ee49e2ae..0250e879 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -316,7 +316,7 @@ dependencies = [ "const_format", "crossterm", "dns-lookup", - "itertools 0.13.0", + "itertools", "pinger", "ratatui", "shadow-rs", @@ -373,15 +373,6 @@ version = "1.70.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f8478577c03552c21db0e2724ffb8986a5ce7af88107e6be5d2ee6e158c12800" -[[package]] -name = "itertools" -version = "0.12.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569" -dependencies = [ - "either", -] - [[package]] name = "itertools" version = "0.13.0" @@ -629,19 +620,20 @@ dependencies = [ [[package]] name = "ratatui" -version = "0.26.3" +version = "0.27.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f44c9e68fd46eda15c646fbb85e1040b657a58cdc8c98db1d97a55930d991eef" +checksum = "d16546c5b5962abf8ce6e2881e722b4e0ae3b6f1a08a26ae3573c55853ca68d3" dependencies = [ "bitflags", "cassowary", "compact_str", "crossterm", - "itertools 0.12.1", + "itertools", "lru", "paste", "stability", "strum", + "strum_macros", "unicode-segmentation", "unicode-truncate", "unicode-width", @@ -725,9 +717,9 @@ dependencies = [ [[package]] name = "shadow-rs" -version = "0.28.0" +version = "0.29.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1d75516bdaee8f640543ad1f6e292448c23ce57143f812c3736ab4b0874383df" +checksum = "0a600f795d0894cda22235b44eea4b85c2a35b405f65523645ac8e35b306817a" dependencies = [ "const_format", "is_debug", @@ -906,7 +898,7 @@ version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b3644627a5af5fa321c95b9b235a72fd24cd29c648c2c379431e6628655627bf" dependencies = [ - "itertools 0.13.0", + "itertools", "unicode-segmentation", "unicode-width", ] diff --git a/gping/Cargo.toml b/gping/Cargo.toml index 9acccc25..5a8f5c25 100644 --- a/gping/Cargo.toml +++ b/gping/Cargo.toml @@ -11,15 +11,15 @@ readme = "../readme.md" [dependencies] pinger = { version = "^1.1.1", path = "../pinger" } -tui = { package = "ratatui", version = "0.26.0", features = ["crossterm"], default_features = false } +tui = { package = "ratatui", version = "0.27.0", features = ["crossterm"], default-features = false } crossterm = "0.27.0" anyhow = "1.0.81" dns-lookup = "2.0.0" chrono = "0.4.37" itertools = "0.13.0" -shadow-rs = { version = "0.28.0", default_features = false } +shadow-rs = { version = "0.29.0", default-features = false } const_format = "0.2.32" clap = { version = "4.5.4", features = ["derive"] } [build-dependencies] -shadow-rs = { version = "0.28.0", default_features = false } +shadow-rs = { version = "0.29.0", default-features = false }