From f0ae993417dee02f2ad82efe8b8f00856d496135 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 26 Mar 2024 01:36:15 +0000 Subject: [PATCH] fix(deps): update rust crate strum to 0.26.2 --- Cargo.lock | 8 ++++---- packages/toy-blog-endpoint-model/Cargo.toml | 2 +- packages/toy-blog/Cargo.toml | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index afda9a6..d1f9098 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1301,18 +1301,18 @@ checksum = "5ee073c9e4cd00e28217186dbe12796d692868f432bf2e97ee73bed0c56dfa01" [[package]] name = "strum" -version = "0.25.0" +version = "0.26.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "290d54ea6f91c969195bdbcd7442c8c2a2ba87da8bf60a7ee86a235d4bc1e125" +checksum = "5d8cec3501a5194c432b2b7976db6b7d10ec95c253208b45f83f7136aa985e29" dependencies = [ "strum_macros", ] [[package]] name = "strum_macros" -version = "0.25.0" +version = "0.26.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fe9f3bd7d2e45dcc5e265fbb88d6513e4747d8ef9444cf01a533119bce28a157" +checksum = "c6cf59daf282c0a494ba14fd21610a0325f9f90ec9d1231dea26bcb1d696c946" dependencies = [ "heck 0.4.1", "proc-macro2", diff --git a/packages/toy-blog-endpoint-model/Cargo.toml b/packages/toy-blog-endpoint-model/Cargo.toml index a40a5c0..f28d557 100644 --- a/packages/toy-blog-endpoint-model/Cargo.toml +++ b/packages/toy-blog-endpoint-model/Cargo.toml @@ -8,4 +8,4 @@ edition = "2021" [dependencies] chrono = { version = "0.4.35", features = ["serde"] } serde = { version = "1.0.197", features = ["derive"] } -strum = { version = "0.25.0", features = ["derive"] } +strum = { version = "0.26.2", features = ["derive"] } diff --git a/packages/toy-blog/Cargo.toml b/packages/toy-blog/Cargo.toml index d17d2d8..9543073 100644 --- a/packages/toy-blog/Cargo.toml +++ b/packages/toy-blog/Cargo.toml @@ -20,7 +20,7 @@ maplit = "1.0.2" once_cell = "1.19.0" serde = { version = "1.0.197", features = ["derive"] } serde_json = "1.0.114" -strum = { version = "0.25.0", features = ["derive"] } +strum = { version = "0.26.2", features = ["derive"] } thiserror = "1.0.58" tokio = { version = "1.36.0", features = ["time", "macros"] } toy-blog-endpoint-model = { path = "../toy-blog-endpoint-model" }