#![allow(clippy::result_large_err)]
#[cfg(all(doc, feature = "git"))]
use crate::GitIndex;
pub const URL: &str = "https://github.com/rust-lang/crates.io-index";
#[cfg(feature = "git")]
mod changes;
#[cfg(feature = "git")]
pub use changes::Changes;
#[cfg(feature = "git")]
mod config;
#[cfg(feature = "git")]
mod impl_;
#[cfg(feature = "git")]
use impl_::fetch_remote;
#[cfg(feature = "git")]
pub use impl_::{Change, Crates};