coveralls 0.2.0

Send job to Coveralls (coveralls.io)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Git metadata of a coverage report and its collection from the local repository.
//!
//! [`GitInfos`] is the serializable structure embedded in a [`Coverage`](crate::Coverage) report.
//! It is filled from the [`Config`](crate::config::Config) and, when needed, from the local
//! repository through the [`fetcher`] backend (either the `git` command or `libgit2`).

mod fetcher;
mod head;
mod infos;
mod remote;

pub use infos::GitInfos;