Crates.io | cargo-bundle-licenses |
lib.rs | cargo-bundle-licenses |
version | 2.0.0 |
source | src |
created_at | 2021-09-19 14:16:01.483959 |
updated_at | 2024-03-17 17:51:10.745837 |
description | Bundle licensing of dependencies |
homepage | |
repository | https://github.com/sstadick/cargo-bundle-licenses |
max_upload_size | |
id | 453609 |
size | 1,146,889 |
Bundle all third-party licenses into a single file.
NOTE This tools is not a lawyer and no guarantee of correctness can be made regarding the licenses that it selects. This tool relies on the information supplied in package metadata to be correct, this is not guaranteed so for "real" scenarios it is recommended that all licenses be reviewed and verified manually as well.
cargo install cargo-bundle-licenses
The typical use case for this tool is as follows:
cargo bundle-licenses --format yaml --output THIRDPARTY.yml
cargo-bundle-licenses
then please create an issue, or even better, a pull request!cargo-bundle-licenses
in the following way to check for changes and fail if they are found. This will generate a new thirdparty file, apply any licenses that have been added by hand to fill in the "NOT FOUND" licenses, and then compare the newly generated version against the previous version and fail if there are any differences.cargo bundle-licenses --format yaml --output CI.yaml --previous THIRDPARTY.yml --check-previous
To aid in copy-pasting licenses that couldn't be found for one reason other another the esc tool can be used to properly create escaped license strings to drop into the format of your choosing.
Currently the supported formats are json
, yaml
, and toml
. A more human readable format that is closer to a classical THIRDPARTY file and already has serde
support is being actively sought. Please create an issue or PR if you have an idea for this.
The most common cause of missing licenses seems to be workspaces that don't include
forward their license files. Go to the repo for the workspace and copy the relevant files from there.
A package license may receive a confidence warning stating that cargo-bundle-licenses
is "unsure" or "semi" confident. This means that when the found license was compared to a template license it was found to have diverged in more than a few words. You should verify that the licence text is in fact correct in these cases.
cargo-about
also finds and aggregates the license texts of all dependencies. cargo-bundle-licenses
is different in that it is focused more on generating something and then allowing that to be manually updated with not-found licenses whereas cargo-about
will not generate output in that scenario. Additionally, cargo-bundle-licenses
allows for manual updates to be applied to later versions of the thirdparty file. However, cargo-about
does generate a very nice human readable format, and provides more granularity in what packages / licenses are allowed.cargo-license
only generates a list of licenses as found in the Cargo.toml
files.cargo-deny
also gathers a list of licenses for dependencies, as well as analysing LICENSE
files, but it does so with the goal of warning or erroring if any dependencies have licenses that the user deems unacceptable; no collection of license text is emittedThis crate was heavily inspired by cargo-lichking
.