Cargo.toml license field is invalid SPDX #1
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally filed by @coilysiren on 2026-05-21T08:19:26Z - https://github.com/coilysiren/galaxy-gen/issues/73
Bug -
Cargo.tomldeclareslicense = "AGPL", which is not a valid SPDX license identifier. Tooling that parses thelicensefield (crates.io, cargo-deny, license scanners) will reject or misclassify it.Fix: set
license = "AGPL-3.0-or-later"(orAGPL-3.0-onlyif pinning strictly to v3). The repo already ships a top-levelLICENSEfile, so this is metadata-only.Surfaced while writing the
coding-licensesskill in agentic-os-kai - galaxy-gen is the canonical AGPL-3.0 / deployment-of-one example.