This commit is contained in:
Luke Tidd 2023-05-01 10:21:05 -04:00
parent 3255fbe46d
commit f4dc4f8a43
Signed by: luke
GPG Key ID: 75D6600BEF4E8E8F
6 changed files with 24 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
target/*

1
class/my-project/.gitignore vendored Normal file
View File

@ -0,0 +1 @@
/target

7
class/my-project/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 = "my-project"
version = "0.1.0"

View File

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

View File

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

4
notes Normal file
View File

@ -0,0 +1,4 @@
# create a project without creating a git repo
cargo new --vcs=none my-new-project