Browse Source

cargo-ized

john melesky 6 years ago
parent
commit
d91f869654
3 changed files with 13 additions and 0 deletions
  1. 3 0
      .gitignore
  2. 7 0
      Cargo.toml
  3. 3 0
      src/main.rs

+ 3 - 0
.gitignore

@@ -45,3 +45,6 @@ tramp
 # Generated by Cargo
 /target/
 
+
+/target
+**/*.rs.bk

+ 7 - 0
Cargo.toml

@@ -0,0 +1,7 @@
+[package]
+name = "dropgame"
+version = "0.1.0"
+authors = ["john melesky <code@phaedrusdeinus.org>"]
+edition = "2018"
+
+[dependencies]

+ 3 - 0
src/main.rs

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