mirror of
https://framagit.org/veretcle/scootaloo.git
synced 2025-07-20 17:11:19 +02:00
General structure
This commit is contained in:
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
target
|
||||
.config.toml
|
10
.gitlab-ci.yml
Normal file
10
.gitlab-ci.yml
Normal 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
1850
Cargo.lock
generated
Normal file
File diff suppressed because it is too large
Load Diff
@@ -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
4
src/lib.rs
Normal file
@@ -0,0 +1,4 @@
|
||||
// clap
|
||||
use clap::{App, Arg};
|
||||
|
||||
|
@@ -1,3 +1,7 @@
|
||||
use scootaloo::*;
|
||||
|
||||
fn main() {
|
||||
println!("Hello, world!");
|
||||
let config = Config::new();
|
||||
|
||||
run(config);
|
||||
}
|
||||
|
Reference in New Issue
Block a user