This crate provides a command line tool to create software bill of materials (SBOM) for Cargo / Rust workspaces. It supports both SPDX and CycloneDX outputs.
The latest documentation can be found here.
SBOM or Software Bill of Materials is an industry standard term used to trace and maintain the supply chain security of software.
cargo-sbom
may be installed via cargo
shell
cargo install cargo-sbom
via cargo-binstall
shell
cargo binstall cargo-sbom
or downloaded directly from Github Releases
```shell
curl -sSL https://github.com/psastras/sbom-rs/releases/download/cargo-sbom-latest/cargo-sbom-x86_64-unknown-linux-gnu -o cargo-sbom ```
For most cases, simply cd
into a cargo workspace and run cargo sbom
.
--help
``` Create software bill of materials (SBOM) for Rust
Usage: cargo sbom [OPTIONS]
Options:
--cargo-package
In a shell:
shell
$ cargo sbom
{
"SPDXID": "SPDXRef-DOCUMENT",
"creationInfo": {
"created": "2023-07-04T12:38:15.211Z",
"creators": [
"Tool: cargo-sbom-v0.8.2"
]
},
"dataLicense": "CC0-1.0",
"documentNamespace": "https://docs.rs/cargo_sbom/spdxdocs/cargo-sbom-0.8.2-9cae390a-4b46-457c-95b9-e59a5e62b57d",
"files": [
{
<rest of output omitted>
In a Github Actions workflow:
yaml
jobs:
sbom:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: psastras/sbom-rs/actions/install-cargo-sbom@cargo-sbom-latest
- name: Run cargo-sbom
run: cargo-sbom --output-format=cyclone_dx_json_1_4
Assumming osv-scanner
is installed (see https://osv.dev/)
shell
$ cargo-sbom > sbom.spdx.json
$ osv-scanner --sbom=sbom.spdx.json
Scanned sbom.json as SPDX SBOM and found 91 packages
╭─────────────────────────────────────┬──────┬───────────┬─────────┬─────────┬───────────╮
│ OSV URL │ CVSS │ ECOSYSTEM │ PACKAGE │ VERSION │ SOURCE │
├─────────────────────────────────────┼──────┼───────────┼─────────┼─────────┼───────────┤
│ https://osv.dev/GHSA-wcg3-cvx6-7396 │ 6.2, │ crates.io │ time │ 0.1.45 │ sbom.json │
│ https://osv.dev/RUSTSEC-2020-0071 │ 6.2 │ │ │ │ │
╰─────────────────────────────────────┴──────┴───────────┴─────────┴─────────┴───────────╯
More examples can be found by browsing the examples section.
| SPDX Field | Source |
|----------------------------------|----------------------------------------------------------------------------------------------|
| SPDXID | Set to "SPDXRef-Document" |
| creationInfo.created | Set as the current time |
| creationInfo.creators | Set to "Tool: cargo-sbom-v(tool version) |
| dataLicense | Set to "CC0-1.0" |
| documentNamespace | set to "https://spdx.org/spdxdocs/(crate-name)-(uuidv4)" |
| files | parsed from Cargo.toml target names |
| name | Set to the project folder name |
| packages | Set to dependencies parsed from cargo-metadata |
| packages.SPDXID | Written as SPDXRef-Package-(crate name)-(crate version) |
| packages.description | Read from Cargo.toml's "description" field |
| packages.downloadLocation | Read from cargo metadata
(usually "registry+https://github.com/rust-lang/crates.io-index") |
| packages.externalRefs | If packages.downloadLocation is crates.io, written as a package url formatted string |
| packages.homepage | Read from Cargo.toml's "homepage" field |
| packages.licenseConcluded | Parsed into a SPDX compliant license identifier from Cargo.toml's "license" field |
| packages.licenseDeclared | Read from Cargo.toml's "license" field |
| packages.name | Read from Cargo.toml's "name" field |
| relationships | Set to dependency relationships parsed from cargo-metadata |
| relationships.relationshipType | Set to dependency relationship parsed from cargo-metadata |
| relationships.spdxElementId | Set to dependency relationship source parsed from cargo-metadata |
| relationships.relatedSpdxElement | Set to dependency relationship target parsed from cargo-metadata |
| CycloneDx Field | Source | |-------------------------------|-----------------------------------------------------------------------------------| | bomFormat | Set to "CycloneDX" | | serialNumber | Set to "urn:uuid:(uuidv4)" | | specVersion | Set to 1.4 | | version | Set to 1 | | metadata | | | metadata.component | parsed from the root workspace | | metadata.component.name | Set to the root workspace folder name | | metadata.component.type | Set to "application" | | metadata.component.components | Set to each of the cargo workspace package components | | components | Set to the componennts parse from cargo-metadata | | components.author | Read from Cargo.toml's "authors" field | | components.bom-ref | Set to "CycloneDxRef-Component-(crate-name)-(crate-version)" | | components.description | Read from Cargo.toml's "description" field | | copmonents.licenses | Parsed into a SPDX compliant license identifier from Cargo.toml's "license" field | | components.name | Read from Cargo.toml's "name" field | | components.purl | If the download location is crates.io, written as a package url formatted string | | components.type | Read from cargo-metadata crate type | | components.version | Read from Cargo.toml's "version" field | | dependencies | Set to dependency relationships parsed from cargo-metadata | | dependencies.ref | Set to source dependency reference id string | | dependencies.dependsOnn | Set to target dependencies reference id strings |
License: MIT