`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.
17 lines
316 B
TOML
17 lines
316 B
TOML
[package]
|
|
name = "hive-jobq"
|
|
edition.workspace = true
|
|
version.workspace = true
|
|
readme = "README.md"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
chrono = { workspace = true }
|
|
enumflags2.workspace = true
|
|
serde = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
serde_json = { workspace = true }
|