gnt-tools 0.3.0

Tools to help studying the greek new testament. The crate is provided AS-IS.
Documentation
1
2
3
4
5
6
7
8
9
10
11
/* Requires the Docker Pipeline plugin */
pipeline {
    agent { docker { image 'rust:1.87' } }
    stages {
        stage('build') {
            steps {
                sh 'rustc --version'
            }
        }
    }
}