pkgcruft-git 0.0.5

QA support for verifying git commits via pkgcruft
Documentation
1
2
3
4
5
6
7
8
9
use pkgcruft::report::Report;

tonic::include_proto!("pkgcruft");

impl From<Report> for StringResponse {
    fn from(value: Report) -> Self {
        Self { data: value.to_json() }
    }
}