rust-crates-index

Library for retrieving and interacting with the crates.io registry git-based index.
Documentation
Example
let index = crates_index::Index::new("index_checkout");
if !index.exists() {
index.retrieve().expect("Could not retrieve crates.io index");
}
for crate_releases in index.crates() {
let _ = crate_releases.latest_version(); let crate_version = crate_releases.highest_version(); println!("crate name: {}", crate_version.name());
println!("crate version: {}", crate_version.version());
}
Similar crates
License
Licensed under version 2 of the Apache License