cargo init

This commit is contained in:
Evan Pratten 2021-04-06 09:43:52 -04:00
parent 01194f8f14
commit f7d8765ddb
3 changed files with 19 additions and 0 deletions

5
.gitignore vendored
View File

@ -9,3 +9,8 @@ Cargo.lock
# These are backup files generated by rustfmt # These are backup files generated by rustfmt
**/*.rs.bk **/*.rs.bk
# Added by cargo
/target

11
Cargo.toml Normal file
View File

@ -0,0 +1,11 @@
[package]
name = "ludum-dare-48"
version = "0.1.0"
authors = ["Evan Pratten <ewpratten@gmail.com>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
raylib = "3.5"
include-flate = "0.1.3"

3
src/main.rs Normal file
View File

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