Create Rust project

This commit is contained in:
Jarrod Doyle 2023-04-07 11:39:06 +01:00
parent 1991328b68
commit fcdcb4c34a
Signed by: Jayrude
GPG Key ID: 38B57B16E7C0ADF7
3 changed files with 12 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
/target

8
Cargo.toml Normal file
View File

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