Update Rust crate strum_macros to 0.27.0 (#16065)

This commit is contained in:
renovate[bot] 2025-02-10 02:36:08 +00:00 committed by GitHub
parent a6b86e3de2
commit 5e1403a8a6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 16 deletions

17
Cargo.lock generated
View File

@ -2923,7 +2923,7 @@ dependencies = [
"similar",
"smallvec",
"strum",
"strum_macros 0.26.4",
"strum_macros",
"test-case",
"thiserror 2.0.11",
"toml",
@ -3603,20 +3603,7 @@ version = "0.27.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ce1475c515a4f03a8a7129bb5228b81a781a86cb0b3fbbc19e1c556d491a401f"
dependencies = [
"strum_macros 0.27.0",
]
[[package]]
name = "strum_macros"
version = "0.26.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4c6bee85a5a24955dc440386795aa378cd9cf82acd5f764469152d2270e581be"
dependencies = [
"heck",
"proc-macro2",
"quote",
"rustversion",
"syn 2.0.98",
"strum_macros",
]
[[package]]

View File

@ -144,7 +144,7 @@ snapbox = { version = "0.6.0", features = [
] }
static_assertions = "1.1.0"
strum = { version = "0.27.0", features = ["strum_macros"] }
strum_macros = { version = "0.26.0" }
strum_macros = { version = "0.27.0" }
syn = { version = "2.0.55" }
tempfile = { version = "3.9.0" }
test-case = { version = "3.3.1" }