diff --git a/Cargo.lock b/Cargo.lock index 29a2ccd..4e4d790 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -513,7 +513,7 @@ dependencies = [ "crossterm", "figment", "humantime", - "itertools 0.13.0", + "itertools 0.14.0", "libfatigue", "num-format", "prettytable-rs", @@ -1181,6 +1181,15 @@ dependencies = [ "either", ] +[[package]] +name = "itertools" +version = "0.14.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285" +dependencies = [ + "either", +] + [[package]] name = "itoa" version = "0.4.8" diff --git a/fatigue/Cargo.toml b/fatigue/Cargo.toml index 05c694d..09bc0a0 100644 --- a/fatigue/Cargo.toml +++ b/fatigue/Cargo.toml @@ -16,7 +16,7 @@ console = "0.15.10" crossterm = "0.28.1" figment = { version = "0.10.19", features = ["env", "yaml"] } humantime = "2.1.0" -itertools = "0.13.0" +itertools = "0.14.0" libfatigue = { path = "../libfatigue", version = "0.2.15" } num-format = "0.4.4" prettytable-rs = "0.10.0"