Added initial rust project.
This commit is contained in:
parent
cab7de030f
commit
3160227bfc
3 changed files with 11 additions and 1 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -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
7
gemla/Cargo.toml
Normal 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
3
gemla/src/main.rs
Normal file
|
@ -0,0 +1,3 @@
|
|||
fn main() {
|
||||
println!("Hello, world!");
|
||||
}
|
Loading…
Add table
Reference in a new issue