Browse Source

cargo init

jmelesky 7 years ago
parent
commit
45beab416f
3 changed files with 12 additions and 0 deletions
  1. 3 0
      .gitignore
  2. 6 0
      Cargo.toml
  3. 3 0
      src/main.rs

+ 3 - 0
.gitignore

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

+ 6 - 0
Cargo.toml

@@ -0,0 +1,6 @@
+[package]
+name = "featscraper"
+version = "0.1.0"
+authors = ["jmelesky"]
+
+[dependencies]

+ 3 - 0
src/main.rs

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