The per-crate features = ["chrono"] override was a local deviation with a comment defending it. The feature belongs in the workspace list, where every crate sees the same utoipa.
16 lines
337 B
TOML
16 lines
337 B
TOML
[package]
|
|
name = "hive-jobq-wire"
|
|
edition.workspace = true
|
|
version.workspace = true
|
|
readme = "README.md"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
chrono = { workspace = true }
|
|
enumflags2 = { workspace = true }
|
|
hive-jobq = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
utoipa = { workspace = true }
|