Initial Commit

This commit is contained in:
James Musselman 2023-12-11 09:54:53 -06:00
commit d2cb148f5c
3 changed files with 13 additions and 0 deletions

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
/target

9
Cargo.toml Normal file
View file

@ -0,0 +1,9 @@
[package]
name = "version_name_generator"
version = "0.1.0"
edition = "2021"
authors = "James Musselman <jtmuss@pm.me>"
# 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!");
}