Library for retrieving and interacting with the crates.io registry git-based index.
let index = crates_index::Index::new_cargo_default()?; for crate_releases in index.crates() { let _ = crate_releases.latest_version(); // any version most recently published let crate_version = crate_releases.highest_version(); // max version by semver println!("crate name: {}", crate_version.name()); println!("crate version: {}", crate_version.version()); }
BareIndex
and BareIndexRepo
have become the Index
.Index::new_cargo_default()?
is the preferred way of accessing the index. Use with_path()
to clone to a different directory.retrieve()
or exists()
. It’s always retrieved and always exists.retrieve_or_update()
is just update()
.highest_version()
returns crate metadata rather than just the version number. Call highest_version().version().parse()
to get semver::Version
.crate_index_paths()
, because there are no files any more. Use crate_
to get individual crates.Licensed under version 2 of the Apache License