From 062e4847e17d85ebc09d49c1933e9b263729165d Mon Sep 17 00:00:00 2001 From: Szymon Walter Date: Sun, 18 Mar 2018 17:41:56 +0100 Subject: [PATCH] add project files --- .gitignore | 5 +++++ Cargo.toml | 8 ++++++++ rustfmt.toml | 2 ++ 3 files changed, 15 insertions(+) create mode 100644 .gitignore create mode 100644 Cargo.toml create mode 100644 rustfmt.toml diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b8f070e --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ + +/target/ +**/*.rs.bk +Cargo.lock +.*.sw? diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..ded51c2 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,8 @@ +[package] +name = "ext2" +version = "0.1.0" +authors = ["Szymon Walter "] + +[dependencies] +rlibc = "1.0" +bitflags = "1.0" diff --git a/rustfmt.toml b/rustfmt.toml new file mode 100644 index 0000000..3450fc4 --- /dev/null +++ b/rustfmt.toml @@ -0,0 +1,2 @@ +max_width = 80 +wrap_comments = true