瀏覽代碼

Create new cargo project

Philipp Oppermann 9 年之前
當前提交
af76ca5bdf
共有 3 個文件被更改,包括 9 次插入0 次删除
  1. 2 0
      .gitignore
  2. 4 0
      Cargo.toml
  3. 3 0
      src/lib.rs

+ 2 - 0
.gitignore

@@ -0,0 +1,2 @@
+target
+Cargo.lock

+ 4 - 0
Cargo.toml

@@ -0,0 +1,4 @@
+[package]
+name = "multiboot2"
+version = "0.1.0"
+authors = ["Philipp Oppermann <dev@phil-opp.com>"]

+ 3 - 0
src/lib.rs

@@ -0,0 +1,3 @@
+#[test]
+fn it_works() {
+}