8 次重大发布
0.11.0 | 2023年11月27日 |
---|---|
0.8.0 | 2023年11月22日 |
#21 in #github-api
每月下载量 129
21KB
201 行
github-meta
https://api.github.com/meta 作为 const 结构体
描述
如果将 https://api.github.com/meta 的数据用于 Rust 程序,每次获取它都可能很慢。这个包提供了作为 const 结构体的数据,因此可以将其编译到程序中。
每小时 GitHub Actions 工作流会自动更新此包中的数据,并在数据更改时发布新的包版本。
用法
fn main() {
let meta = github_meta::META;
println!("{meta:#?}");
let secret_scanning = github_meta::SECRET_SCANNING;
println!("{secret_scanning:#?}");
}
许可证
此项目根据您的选择许可以下任一项
-
Apache 许可证第 2 版 (LICENSE-APACHE 或 https://apache.ac.cn/licenses/LICENSE-2.0)
-
MIT 许可证 (LICENSE-MIT 或 http://opensource.org/licenses/MIT)
。
无运行时依赖
~165KB