crates-index-0.18.0 has been yanked.
rust-crates-index
Library for retrieving and interacting with the crates.io registry git-based index.
Example
let index = new_cargo_default?;
for crate_releases in index.crates
Migration from 0.16 and 0.17
BareIndex
andBareIndexRepo
have become theIndex
.Index::new_cargo_default()?
is the preferred way of accessing the index. Usewith_path()
to clone to a different directory.- There's no need to call
retrieve()
orexists()
. It's always retrieved and always exists. retrieve_or_update()
is justupdate()
.highest_version()
returns crate metadata rather than just the version number. Callhighest_version().version().parse()
to getsemver::Version
.- There's no
crate_index_paths()
, because there are no files any more. Usecrate_
to get individual crates.
Similar crates
License
Licensed under version 2 of the Apache License