Add in boilerplate

This commit is contained in:
Nick Bland 2023-08-28 22:26:28 +10:00
parent b64f8b9990
commit 381a7bfa48
3 changed files with 18 additions and 1 deletions

6
.gitignore vendored
View File

@ -1,3 +1,9 @@
/target /target
.vscode .vscode
.env .env
# Added by cargo
#
# already existing elements were commented out
#/target

8
Cargo.toml Normal file
View File

@ -0,0 +1,8 @@
[package]
name = "mailApp"
version = "0.1.0"
edition = "2021"
# 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!");
}