diff --git a/Cargo.lock b/Cargo.lock index d2d181c..45356ec 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -742,6 +742,12 @@ version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" +[[package]] +name = "heck" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" + [[package]] name = "hermit-abi" version = "0.1.19" @@ -1084,7 +1090,7 @@ dependencies = [ "serde_json", "serde_yaml", "structopt", - "strum 0.26.2", + "strum 0.27.0", "tempfile", "tokio", "tokio-util", @@ -1989,11 +1995,11 @@ dependencies = [ [[package]] name = "strum" -version = "0.26.2" +version = "0.27.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5d8cec3501a5194c432b2b7976db6b7d10ec95c253208b45f83f7136aa985e29" +checksum = "ce1475c515a4f03a8a7129bb5228b81a781a86cb0b3fbbc19e1c556d491a401f" dependencies = [ - "strum_macros 0.26.2", + "strum_macros 0.27.0", ] [[package]] @@ -2011,11 +2017,11 @@ dependencies = [ [[package]] name = "strum_macros" -version = "0.26.2" +version = "0.27.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c6cf59daf282c0a494ba14fd21610a0325f9f90ec9d1231dea26bcb1d696c946" +checksum = "9688894b43459159c82bfa5a5fa0435c19cbe3c9b427fa1dd7b1ce0c279b18a7" dependencies = [ - "heck 0.4.1", + "heck 0.5.0", "proc-macro2", "quote", "rustversion", diff --git a/Cargo.toml b/Cargo.toml index 24fe9b0..568a79b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -31,7 +31,7 @@ tempfile = "3.16.0" tokio-util = { version = "0.7", features = [ "io" ] } tracing-subscriber = { version = "0.3.9", features = ["env-filter", "json"] } tracing = "0.1.31" -strum = { version = "0.26.2", features = ["derive"] } +strum = { version = "0.27.0", features = ["derive"] } [build-dependencies] vergen = { version = "8.3.1", features = ["git", "gitcl"] }