Fix strum dependency. (#3193)

The feature is actually used in the crate. It did not produce a build
error because we never compile crates individually and it's enough for
the feature to be enabled in some crate.
This commit is contained in:
chriseth
2025-08-18 19:14:13 +02:00
committed by GitHub
parent ffc3395056
commit 1b7c2816ab
2 changed files with 1 additions and 2 deletions

View File

@@ -20,7 +20,7 @@ tracing = "0.1.40"
tracing-subscriber = { version = "0.3.17", features = ["std", "env-filter"] }
serde_json = "1.0.140"
rayon = "1.10.0"
strum = "0.27.1"
strum = { version = "0.27.0", features = ["derive"] }
metrics = "0.23.0"

View File

@@ -52,7 +52,6 @@ serde = "1.0.217"
derive_more = { version = "2.0.1", default-features = false, features = [
"from",
] }
strum = "0.26.3"
itertools = "0.14.0"
tracing = "0.1.40"