1 2 3 4 5 6 7 8 9 10
mod cligit; #[cfg(not(feature = "git2"))] pub use cligit::GitRepo; #[cfg(feature = "git2")] mod libgit; #[cfg(feature = "git2")] pub use libgit::GitRepo;