governor_git/lib.rs
1//! Git adapter for cargo-governor
2//!
3//! This crate provides a Git implementation of the `SourceControl` trait
4//! using the git2 library.
5
6#![allow(clippy::multiple_crate_versions)] // Transitive dependency version conflicts are acceptable
7
8pub mod adapter;
9pub mod commit;
10pub mod tag;
11
12pub use adapter::{GitAdapter, GitAdapterConfig};
13pub use commit::GitCommit;
14pub use tag::GitTag;