#datadog #license #config-file #3rdparty

app dd-rust-license-tool

A tool for creating the LICENSE-3rdparty.csv file for DataDog open-source Rust projects

4 stable releases

1.0.3 Apr 10, 2024
1.0.2 Sep 28, 2023
1.0.1 Jul 19, 2023
1.0.0 Jul 18, 2023

#27 in Development tools

Download history 438/week @ 2024-01-06 397/week @ 2024-01-13 436/week @ 2024-01-20 404/week @ 2024-01-27 507/week @ 2024-02-03 602/week @ 2024-02-10 444/week @ 2024-02-17 360/week @ 2024-02-24 456/week @ 2024-03-02 469/week @ 2024-03-09 436/week @ 2024-03-16 531/week @ 2024-03-23 369/week @ 2024-03-30 595/week @ 2024-04-06 427/week @ 2024-04-13 244/week @ 2024-04-20

1,748 downloads per month

MIT license

21KB
404 lines

Datadog Rust License Tool

This project houses a tool for creating the LICENSE-3rdparty.csv file from Rust projects. This file is required by the Datadog standards for releasing open source code.

Usage

  1. Install the tool using cargo: cargo install dd-rust-license-tool

  2. In your project directory, create the licenses list file with: dd-rust-license-tool write.

  3. In your CI workflow, check that the licenses list file is up to date with: dd-rust-license-tool check.

Configuration

The license tool loads a configuration file at startup that may contain overrides or supplementary data for packages. This can be useful where a crate does not supply either a homepage or repository URL, or is missing an explicit license. The filename of this configuration file defaults to license-tool.toml but can be overridden with the --config command-line option.

Example:

[overrides]
# These crates do not specify a homepage in their metadata.

"openssl-macros" = { origin = "https://github.com/sfackler/rust-openssl" }
"serde_nanos" = { origin = "https://github.com/caspervonb/serde_nanos" }

# `zerocopy` et al don't specify their licenses in the metadata, but the file contains the 2-clause
# BSD terms. These should use versioned identifiers, as they could change from version to version
# and so need to be reviewed after each version bump.

"zerocopy-0.6.1" = { license = "BSD-2-Clause" }
"zerocopy-derive-0.3.2" = { license = "BSD-2-Clause" }

There are other existing projects that come close to providing the data required for the above file. However, none of them scan the actual license or source files within the projects, which is required to produce the "copyright" field in the file, so all of them would require this as a follow-on step. Most also do not report the repository from which the crate came from, so we would need to parse the cargo metadata output anyways. None have options to output into CSV, and so additionally require a post-processing step.

cargo-about

Has integrated license validity checking.

cargo-bundle-licenses

Similar kind of tool to this one, with all the limitations above.

cargo-deny

Groups all results on the licenses rather than listing all the licenses per dependency, making it impossible to generate an accurate CSV listing.

cargo-license

Limitations as above.

extrude-licenses

Is just a wrapper for cargo-license, so has all its limitations.

Dependencies

~6.5–9MB
~184K SLoC