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