Add Rust implementation

This commit is contained in:
2018-09-17 15:42:26 +02:00
parent 75dd53c1e8
commit ec0feab38d
4 changed files with 1008 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
extern crate benchmark_repository;
extern crate pretty_env_logger;
use benchmark_repository::BenchmarkRepository;
use std::path::Path;
fn main()
{
pretty_env_logger::init();
let benchmark_repository = BenchmarkRepository::new("git@git.luehne.de:patrick/tplp-planning-benchmark.git", Path::new("storage"), "git", "Potassco Bot", "bot@potassco.org");
benchmark_repository.commit_file(Path::new("/tmp/test"), Path::new("test-result/test"), "test-results");
}