#cyclone-dx #serde #sbom #serialization

serde-cyclonedx

Serde serialization for CycloneDx files

14 releases (7 breaking)

0.8.4 Jul 13, 2023
0.7.2 Jul 10, 2023

#1382 in Encoding

Download history 252/week @ 2024-01-10 332/week @ 2024-01-17 285/week @ 2024-01-24 267/week @ 2024-01-31 273/week @ 2024-02-07 255/week @ 2024-02-14 271/week @ 2024-02-21 330/week @ 2024-02-28 401/week @ 2024-03-06 423/week @ 2024-03-13 285/week @ 2024-03-20 280/week @ 2024-03-27 322/week @ 2024-04-03 425/week @ 2024-04-10 298/week @ 2024-04-17 276/week @ 2024-04-24

1,417 downloads per month
Used in cargo-sbom

MIT license

45KB
101 lines

Workflow Status

serde-cyclonedx

This crate provides a type safe serde compatible CycloneDx format. It is intended for use in Rust code which may need to read or write CycloneDx files.

The latest documentation can be found here.

serde is a popular serialization framework for Rust. More information can be found on the official repository: https://github.com/serde-rs/serde

CycloneDx is an industry standard format for maintaining a Software Bill of Materials (SBOM). More information can be found on the official website: https://cyclonedx.org/.

Usage

For most cases, simply use the root cyclonedx::v_1_4::CycloneDx struct with [serde] to read and write to and from the struct.

Example

use serde_cyclonedx::cyclonedx::v_1_4::CycloneDx;

let data = fs::read_to_string("sbom.cyclonedx.json");
let cyclonedx: CycloneDx = serde_json::from_str(&data).unwrap();

Because many of the cyclonedx::v_1_4::CycloneDx structures contain a lot of optional fields, it is often convenient to use the builder pattern to contstruct these structs. Each structure has a builder with a default.

Example

use serde_cyclonedx::cyclonedx::v_1_4::CycloneDxBuilder;

let cyclonedx = CycloneDxBuilder::default()
  .bom_format("CycloneDX")
  .spec_version("1.4")
  .version(1)
  .build()
  .unwrap();

Internal Implementation Details

The root struct is automatically generated from the parsed CycloneDX JSON schemas, this is done at build time (via the buildscript).

License: MIT

Dependencies

~2–2.8MB
~62K SLoC