#index #packaging #meta #dependencies #crates

crates-index

Library for retrieving and interacting with the crates.io index

52 releases (19 stable)

3.5.0 Dec 22, 2024
3.3.0 Nov 14, 2024
3.1.0 Jul 30, 2024
2.10.1 May 28, 2024
0.1.2 May 27, 2015

#1459 in Development tools

Download history 16692/week @ 2024-09-22 19964/week @ 2024-09-29 16325/week @ 2024-10-06 17539/week @ 2024-10-13 15614/week @ 2024-10-20 17339/week @ 2024-10-27 20443/week @ 2024-11-03 26272/week @ 2024-11-10 31427/week @ 2024-11-17 30858/week @ 2024-11-24 41852/week @ 2024-12-01 40388/week @ 2024-12-08 37588/week @ 2024-12-15 16629/week @ 2024-12-22 23736/week @ 2024-12-29 31610/week @ 2025-01-05

112,571 downloads per month
Used in fewer than 30 crates

Apache-2.0

100KB
2K SLoC

crates-index

crates-index on Crates.io

Library for retrieving and interacting with the crates.io registry index using either the git or sparse protocol.

The index contains metadata for all Rust libraries and programs published on crates.io: their versions, dependencies, and feature flags.

Documentation

Example

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

Please find the changelog in CHANGELOG.md.

Similar crates

  • tame-index - a hard fork with many improvements and advantages
  • crates_io_api - a way to talk to the HTTP API of crates.io

License

Licensed under version 2 of the Apache License

Dependencies

~1–15MB
~204K SLoC