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.
cargo
:```
Updating git repository `https://github.com/DataDog/rust-license-tool`
Installing rust-license-tool v0.1.0 (https://github.com/DataDog/rust-license-tool#6871a407)
Updating crates.io index
Compiling rust-license-tool v0.1.0 (https://github.com/DataDog/rust-license-tool#6871a407)
Finished release [optimized] target(s) in 2.56s
Installing /home/user/.cargo/bin/rust-license-tool
Installed rust-license-tool v0.1.0 (https://github.com/DataDog/rust-license-tool#6871a407) (executable rust-license-tool
)
```
In your project directory, create the licenses list file with:
rust-license-tool write
.
In your CI workflow, check that the licenses list file is up to date with:
rust-license-tool check
.
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:
```toml [overrides]
"openssl-macros" = { origin = "https://github.com/sfackler/rust-openssl" } "serdenanos" = { origin = "https://github.com/caspervonb/serdenanos" }
zerocopy
et al don't specify their licenses in the metadata, but the file contains the 2-clause"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.