Add basic Cargo setup.

Via cargo init.
This commit is contained in:
Eli Ribble 2023-11-11 15:11:23 -07:00
parent d7b7db3e88
commit 9145071a95
3 changed files with 22 additions and 1 deletions

4
.gitignore vendored
View File

@ -1 +1,3 @@
__pycache__/
# Added by cargo
/target

7
Cargo.lock generated Normal file
View File

@ -0,0 +1,7 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
[[package]]
name = "gongor"
version = "0.1.0"

12
Cargo.toml Normal file
View File

@ -0,0 +1,12 @@
[package]
name = "gongor"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
[[bin]]
name = "gongor"
path = "gongor.rs"