CycloneDX / CycloneDX/cyclonedx-rust-cargo
`cyclonedx-bom` is unsuitable for `cargo auditable` use case
- Dominant language
- Rust
- Stars
- 178
- Forks
- 66
- PR merge metrics
- No merged PRs in 30d
Description
There are several issues that are interfering with using `cyclonedx-bom` to write CycloneDX in `cargo auditable`
`cargo auditable` operates under very different constraints to regular SBOMs; this is what drove me to use a custom format as opposed to using an off-the-shelf CycloneDX or SPDX. The issues currently affecting it are:
- [ ] Toplevel `version` has been made a required field in #618 and is always written. It needs to be omitted to save bytes.
- [x] Toplevel `serialNumber` is always written, even if set to `None`. It needs to be omitted to save bytes.
- [x] [`dependencies.dependsOn`](https://cyclonedx.org/docs/1.5/json/#dependencies_items_dependsOn) is always written, even if empty. It should be omitted when empty to save bytes.
- [ ] There is no way to write a minified JSON. `output_as_json_v1_3` and `output_as_json_v1_4` pretty-print the JSON, wasting space. The `spec` module required to implement it outside `cyclonedx-bom` is private.
Contributor guide
Research direction
Start by reading the output_as_json_v1_3 and output_as_json_v1_4 entry points and the private spec module mentioned in the issue. Check how the top-level version and dependencies.dependsOn fields are serialized, then determine how JSON output can be minified. Done means the requested fields are omitted when appropriate and callers can produce minified JSON for cargo auditable use.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- rust
- Domain
- tooling
- Issue type
- Feature
- Difficulty
- 4/5
- Estimated time
- 3-5 days
- Activity status
- Stale
- Clarity
- Mostly clear
- Newbie friendliness
- 35/100