Cargo 3PL

:truck: The easy way to ship dependency licenses with your Rust binaries

Build Status

Installation

Run:

sh cargo install cargo-3pl

Getting Started

As part of your distribution process, run:

sh cargo 3pl > THIRD-PARTY-LICENSES.txt

How It Works

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:

Dependencies in the current workspace are not included.

Options

Specify features to include

sh cargo 3pl --features <FEATURES>... cargo 3pl --all-features cargo 3pl --no-default-features

Missing License Files

If any packages are missing license files, create a new file:

```text

================================================================================

some-package LICENSE.txt

...

================================================================================

other-package COPYING

... ```

And append it:

sh cat MANUAL-LICENSES.txt >> THIRD-PARTY-LICENSES.txt

We also recommend creating a pull request for the package.

History

View the changelog

Contributing

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