codepecker 0.2.0

CodePecker in the CI
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#[derive(Debug, Clone)]
pub(crate) struct Project {
    pub(crate) name: String,
    pub(crate) lang: String,
    pub(crate) template: String,
    pub(crate) group: Option<String>,
    pub(crate) rule: Option<String>,
}

#[derive(Debug, Clone)]
pub(crate) struct Source<T> {
    pub(crate) remote: String,
    pub(crate) url: T,
    pub(crate) user: String,
    pub(crate) password: String,
    pub(crate) branch: Option<String>,
}