Added initial rust project.

This commit is contained in:
Jacob VanDomelen 2019-05-21 23:22:22 -07:00
parent cab7de030f
commit 3160227bfc
3 changed files with 11 additions and 1 deletions

2
.gitignore vendored
View file

@ -1,6 +1,6 @@
# Generated by Cargo
# will have compiled files and executables
/target/
/gemla/target/
# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html

7
gemla/Cargo.toml Normal file
View file

@ -0,0 +1,7 @@
[package]
name = "gemla"
version = "0.1.0"
authors = ["Jacob VanDomelen <Jacob.Vandome15@gmail.com>"]
edition = "2018"
[dependencies]

3
gemla/src/main.rs Normal file
View file

@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}