:truck: The easy way to ship dependency licenses with your Rust binaries
Run:
sh
cargo install cargo-3pl
As part of your distribution process, run:
sh
cargo 3pl > THIRD-PARTY-LICENSES.txt
This project creates a summary of your dependency licenses from their license
field in Cargo.toml
. It then tries to find their license files. It looks for:
LICENSE
, LICENCE
, NOTICE
, or COPYING
(case-insensitive)txt
, md
, or no extension (case-insensitive)Dependencies in the current workspace are not included.
Specify features to include
sh
cargo 3pl --features <FEATURES>...
cargo 3pl --all-features
cargo 3pl --no-default-features
If any packages are missing license files, create a new file:
```text
================================================================================
...
================================================================================
... ```
And append it:
sh
cat MANUAL-LICENSES.txt >> THIRD-PARTY-LICENSES.txt
We also recommend creating a pull request for the package.
View the changelog
Everyone is encouraged to help improve this project. Here are a few ways you can help:
To get started with development:
sh
git clone https://github.com/ankane/cargo-3pl.git
cd cargo-3pl
cargo run