Browse Source

cargo init

jmelesky 7 năm trước cách đây
mục cha
commit
45beab416f
3 tập tin đã thay đổi với 12 bổ sung0 xóa
  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!");
+}