Discover funding links for your project's dependencies.
To install cargo-fund, use cargo:
$ cargo install cargo-fundcargo-fund retrieves funding links for any dependencies with a Github URL in its
[package.repository] field. To retrieve this information, you must provide a valid Github API
token in the CARGO_FUND_GITHUB_API_TOKEN environment variable or the --github-api-token
command-line argument. To generate this token, go to https://github.com/settings/tokens and create
a token with the public_repo and user scopes.
Run cargo fund in your workspace to print funding links. For example:
$ CARGO_FUND_GITHUB_API_TOKEN=... cargo fund
/path/to/cargo-fund (found funding links for 16 out of 138 dependencies)
├─┬─ https://www.buymeacoffee.com/dannyguo
│ ├─ https://www.paypal.me/DannyGuo
│ └─ https://ko-fi.com/dannyguo
│ └─ strsim 0.8.0
├─── https://github.com/sponsors/XAMPPRocky
│ └─ remove_dir_all 0.5.2
├─── https://github.com/sponsors/dtolnay
│ ├─ anyhow 1.0.28
│ ├─ dtoa 0.4.5
│ ├─ itoa 0.4.5
│ ├─ proc-macro-hack 0.5.15
│ ├─ proc-macro-nested 0.1.4
│ ├─ quote 1.0.3
│ ├─ ryu 1.0.4
│ └─ syn 1.0.18
└─── https://github.com/sponsors/seanmonstar
├─ httparse 1.3.4
├─ num_cpus 1.13.0
├─ reqwest 0.10.4
├─ try-lock 0.2.2
├─ unicase 2.6.0
└─ want 0.3.0
cargo-fund uses the Github API to get the available funding links for crates. To ensure your
crate's information appears:
- Make sure that the
[package.repository]in yourCargo.tomlcontains a valid Github URL. - Add your funding information to
.github/FUNDING.ymlin your repository.
Currently, Github is the only source of funding information, but please open an issue if you know of any other structured sources of funding information.
Licensed under either of Apache License, Version 2.0 or MIT license at your option.Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in this crate by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.