General structure

This commit is contained in:
VC
2020-02-29 13:54:14 +01:00
parent 0be301c119
commit c38b46cb8d
6 changed files with 1875 additions and 1 deletions

2
.gitignore vendored Normal file
View File

@@ -0,0 +1,2 @@
target
.config.toml

10
.gitlab-ci.yml Normal file
View File

@@ -0,0 +1,10 @@
stages:
- build
rust-latest:
stage: build
image: rust:latest
script:
- cargo build --verbose
- cargo test --verbose

1850
Cargo.lock generated Normal file

File diff suppressed because it is too large Load Diff

View File

@@ -7,3 +7,7 @@ edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
toml = "^0.5"
clap = "^2.33"
egg-mode = "^0.13"
mammut = "^0.13"

4
src/lib.rs Normal file
View File

@@ -0,0 +1,4 @@
// clap
use clap::{App, Arg};

View File

@@ -1,3 +1,7 @@
use scootaloo::*;
fn main() {
println!("Hello, world!");
let config = Config::new();
run(config);
}