crates_index_diff/
lib.rs

1//! Learn what's changed in the crates index.
2//!
3//! Have a look at the real-world usage to learn more about it:
4//! [crates-io-cli](https://github.com/Byron/crates-io-cli-rs/blob/b7a39ad8ef68adb81b2d8a7e552cb0a2a73f7d5b/src/main.rs#L62)
5#![deny(missing_docs, rust_2018_idioms, unsafe_code)]
6
7///
8pub mod index;
9mod types;
10/// Access to all `gitoxide` functionality.
11pub use gix;
12
13pub use types::{Change, CrateVersion, Dependency, DependencyKind, Index};