1 2 3 4 5 6 7 8 9 10 11 12 13 14
//! 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)
#![forbid(missing_docs)]
#![deny(rust_2018_idioms)]
mod index;
mod version;
pub use index::*;
pub use version::*;
pub use git2;