chore: Initialized cargo environment

This commit is contained in:
Nickiel12 2022-12-18 17:02:42 -08:00
parent b707f0caea
commit 17d25a54dc
3 changed files with 18 additions and 0 deletions

7
.gitignore vendored
View file

@ -19,3 +19,10 @@ Cargo.lock
# Added by cargo # Added by cargo
/target /target
# Added by cargo
#
# already existing elements were commented out
#/target

8
Cargo.toml Normal file
View file

@ -0,0 +1,8 @@
[package]
name = "SousaCli"
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!");
}