Its last call sites were the JSON store's to_string_pretty/from_str, which this branch replaced with serde_norway. Nothing in swarmctl/src names it any more. Caught by argus, and it is the second time: the same reviewer found a dead reqwest in swarm-controller after a move earlier this week. No lint in this workspace sees an unused dependency, so both were green locally and in CI -- a move has two sides and my gate only looked at one. My local gate now carries an advisory check for it.
20 lines
335 B
TOML
20 lines
335 B
TOML
[package]
|
|
name = "swarmctl"
|
|
version.workspace = true
|
|
readme = "README.md"
|
|
edition.workspace = true
|
|
|
|
[[bin]]
|
|
name = "swarmctl"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
clap.workspace = true
|
|
clap-markdown = "0.1"
|
|
clap_complete.workspace = true
|
|
serde.workspace = true
|
|
serde_norway = "0.9.42"
|
|
|
|
[lints]
|
|
workspace = true
|