#cargo #generate #cargo-subcommand #proc #macro #cargo-generate-license

过程宏 cargo-generate-license_impl-license

用于 cargo-generate-license 的过程宏

1 个不稳定版本

0.1.0 2023年2月26日

#196 in #proc


cargo-generate-license 中使用

LGPL-3.0

5KB
96 代码行

cargo generate-license 测试

A cargo 子命令,用于生成 LICENSE 文件。

这是 Azo 的 license-generator 的分支。我仅仅做了一些小修改。分支的原因是我希望这个命令在 cargo 命名空间下运行,而不是独立运行。对他们的原始项目表示感谢。

安装

使用 Cargo 安装

cargo install cargo-generate-license

用法

$ cargo generate-license --author <name> [LICENSE_TYPE]

[LICENSE_TYPE]:
- AGPL
- Apache
- CC-BY
- CC-BY-NC
- CC-BY-NC-SA
- CC-BY-SA
- CC0
- GPL
- LGPL
- MIT
- MPL
- Unlicense

Options:
  --author input author name. Default: `GitName <GitEmail>`
  --project input project name that is required by some license
  --year input license year
  --output path to the output. Default: ./LICENSE

支持的许可证

此 CLI 支持以下许可证

示例

生成 MIT 许可证

cargo generate-license MIT --author "azu"

输出到 stdout

cargo generate-license MIT --output /dev/stdout --author "azu"

多许可证

作者可以从 git config 中获取。

cargo generate-license MIT Apache
# output
# LICENSE-MIT and LICENSE-APACHE

测试

cargo test

发布

使用 cargo-release.

cargo release --no-dev-version {patch,minor,major} --execute

贡献

  1. 分支它!
  2. 创建您的功能分支: git checkout -b my-new-feature
  3. 提交您的更改: git commit -am 'Add some feature'
  4. 推送到分支: git push origin my-new-feature
  5. 提交拉取请求:D

许可证

MIT © azu, D. Scott Boggs, 2023

依赖项

~1.5MB
~35K SLoC