Three related housekeeping items:
- Unused
kube features (Cargo.toml:16): runtime (watchers/controllers — unused) and derive (no custom CRDs defined) are enabled but never used. Removing them reduces binary size and compile time.
- Stale version:
Cargo.toml:3 says version = "0.1.0" but git tags go up to v0.2.2.
- Hardcoded date:
generate.rs:144 has "2025-01-01T00:00:00Z" as a date-time placeholder — should use the current date dynamically via chrono or std::time.
Three related housekeeping items:
kubefeatures (Cargo.toml:16):runtime(watchers/controllers — unused) andderive(no custom CRDs defined) are enabled but never used. Removing them reduces binary size and compile time.Cargo.toml:3saysversion = "0.1.0"but git tags go up tov0.2.2.generate.rs:144has"2025-01-01T00:00:00Z"as a date-time placeholder — should use the current date dynamically viachronoorstd::time.