diff --git a/Cargo.lock b/Cargo.lock index cc45861d6..0aac14498 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -997,7 +997,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7c64043d6c7b7a4c58e39e7efccfdea7b93d885a795d0c054a69dbbf4dd52686" dependencies = [ "crossterm", - "strum", + "strum 0.25.0", "strum_macros", "unicode-width", ] @@ -1512,7 +1512,7 @@ dependencies = [ "memchr", "rust_decimal", "smallvec", - "strum", + "strum 0.25.0", ] [[package]] @@ -4158,7 +4158,7 @@ dependencies = [ "smartstring", "snap", "strsim 0.11.0", - "strum", + "strum 0.26.1", "strum_macros", "sysinfo", "tabwriter", @@ -5176,10 +5176,18 @@ version = "0.25.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "290d54ea6f91c969195bdbcd7442c8c2a2ba87da8bf60a7ee86a235d4bc1e125" dependencies = [ - "phf 0.10.1", "strum_macros", ] +[[package]] +name = "strum" +version = "0.26.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "723b93e8addf9aa965ebe2d11da6d7540fa2283fcea14b3371ff055f7ba13f5f" +dependencies = [ + "phf 0.10.1", +] + [[package]] name = "strum_macros" version = "0.25.3" diff --git a/Cargo.toml b/Cargo.toml index 9cf6963eb..f4e75877a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -200,7 +200,7 @@ simple-home-dir = { version = "0.2", features = [ smartstring = { version = "1", optional = true } snap = "1" strsim = { version = "0.11", optional = true } -strum = { version = "0.25", features = ["phf"] } +strum = { version = "0.26", features = ["phf"] } strum_macros = "0.25" sysinfo = "0.30" tabwriter = "1.4"