build(#2772): declare enumflags2 at the workspace level

`cargo add -p hive-jobq` wrote the version into the crate's own manifest
instead of `[workspace.dependencies]`, which is how every other shared
dep here is declared and the thing that stops two members drifting onto
different versions of the same crate.
This commit is contained in:
atlas 2026-07-27 17:13:15 +02:00 committed by mara
commit f48ba3ca0d
2 changed files with 2 additions and 1 deletions

View file

@ -51,6 +51,7 @@ chrono = { version = "0.4", default-features = false, features = [
] }
clap = { version = "4", features = ["derive"] }
clap_complete = "4"
enumflags2 = { version = "0.7.12", features = ["serde"] }
indicatif = "0.18"
hive-sh4re = { path = "hive-sh4re" }
hive-agent-sock = { path = "hive-agent-sock" }

View file

@ -9,7 +9,7 @@ workspace = true
[dependencies]
chrono = { workspace = true }
enumflags2 = { version = "0.7.12", features = ["serde"] }
enumflags2.workspace = true
serde = { workspace = true }
thiserror = { workspace = true }