1
2
3
4
5
6
7
8
9
10
11
12
13
//! 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, unsafe_code)]

///
pub mod index;
mod types;
/// Access to all `gitoxide` functionality.
pub use gix;

pub use types::{Change, CrateVersion, Dependency, DependencyKind, Index};