CycloneDX / cyclonedx-rust-cargo

Creates CycloneDX Software Bill of Materials (SBOM) from Rust (Cargo) projects
https://cyclonedx.org/
Apache License 2.0
106 stars 44 forks source link

Actually wire up writing v1.5 #722

Closed Shnatsel closed 5 months ago

Shnatsel commented 5 months ago

Right now it would just panic.

This wasn't caught statically because of a confluence of two things:

  1. Non-exhaustive enum for the specification version requiring the _ arm
  2. The APIs using version strings instead of accepting an enum with the version

Both are bad API design and we should fix that eventually.