49 个版本 (16 个稳定版)
新 3.2.0 | 2024年8月23日 |
---|---|
3.1.0 | 2024年7月30日 |
3.0.0 | 2024年5月28日 |
2.10.1 | 2024年5月28日 |
0.1.2 |
|
1162 在 开发工具 中
每月81,700次下载
在 不到 31 个 crate 中使用
99KB
1.5K SLoC
crates-index
使用git或sparse协议检索和交互crates.io索引的库。
索引包含crates.io上发布的所有Rust库和程序的元数据:它们的版本、依赖项和功能标志。
示例
let index = crates_index::GitIndex::new_cargo_default()?;
for crate_releases in index.crates() {
let _ = crate_releases.most_recent_version(); // newest version
let crate_version = crate_releases.highest_version(); // max version by semver
println!("crate name: {}", crate_version.name());
println!("crate version: {}", crate_version.version());
}
变更日志
请在此处找到变更日志:CHANGELOG.md。
类似crate
tame-index
- 一个经过许多改进和具有优势的硬分叉crates_io_api
- 与crates.io HTTP API通信的方式
许可
根据Apache许可证第2版许可
依赖项
~1–14MB
~190K SLoC