Added cargo init

This commit is contained in:
Jef Roosens 2021-03-05 18:39:49 +01:00
parent d3fe20b5ca
commit 284e8a428a
Signed by: Jef Roosens
GPG key ID: 955C0660072F691F
3 changed files with 17 additions and 0 deletions

5
.gitignore vendored
View file

@ -11,3 +11,8 @@
# Generated by Cargo
/target/
# Added by cargo
/target

9
Cargo.toml Normal file
View file

@ -0,0 +1,9 @@
[package]
name = "rust-api"
version = "0.1.0"
authors = ["jjr <roosensjef@gmail.com>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]

3
src/main.rs Normal file
View file

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