git-checks 2.2.0

Checks to run against a topic in git to enforce coding standards.
Documentation
// Copyright 2016 Kitware, Inc.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.

//! Module for importing all types and traits for implementing checks.

pub use crates::git_workarea::CommitId;
pub use crates::git_workarea::Identity;

pub use commit::Commit;
pub use commit::DiffInfo;
pub use commit::FileName;
pub use commit::StatusChange;
pub use check::BranchCheck;
pub use check::Check;
pub use check::CheckResult;
pub use context::AttributeState;
pub use context::CheckGitContext;
pub use error::Error;
pub use error::ErrorKind;
pub use error::Result;
pub use error::ResultExt;
pub use utils::SubmoduleContext;