limiting-factor 0.7.1

Library to create a REST API with Diesel and Rocket
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
node('rust') {
    stage('Checkout') {
        git 'https://devcentral.nasqueron.org/source/limiting-factor.git'
    }

    try {
        stage('Build')  {
            sh 'cargo build'
        }

        stage('Doc') {
            sh 'cargo doc --no-deps'
        }
    } finally {
         archiveArtifacts artifacts: 'target/doc/**', onlyIfSuccessful: true
    }
}