Workflow Status

cargo-sbom

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.

Installation

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

make sure to adjust the target and version (you may also want to pin to a specific version)

curl -sSL https://github.com/psastras/sbom-rs/releases/download/cargo-sbom-latest/cargo-sbom-x86_64-unknown-linux-gnu -o cargo-sbom ```

Usage

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 The specific package (in a Cargo workspace) to generate an SBOM for. If not specified this is all packages in the workspace. --output-format The SBOM output format. [default: spdxjson23] [possible values: spdxjson23, cyclonedxjson14] --project-directory The directory to the Cargo project. [default: .] -h, --help Print help -V, --version Print version ```

Example

shell $ cargo sbom { "SPDXID": "SPDXRef-DOCUMENT", "creationInfo": { "created": "2023-07-04T12:38:15.211Z", "creators": [ "Tool: cargo-sbom-v0.7.1" ] }, "dataLicense": "CC0-1.0", "documentNamespace": "https://docs.rs/cargo_sbom/spdxdocs/cargo-sbom-0.7.1-9cae390a-4b46-457c-95b9-e59a5e62b57d", "files": [ { <rest of output omitted>

More examples can be found by browsing the examples section.

Supported SBOM Features

SPDX

| 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

| 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