diff options
| author | Botahamec <botahamec@outlook.com> | 2021-12-21 15:51:50 -0500 |
|---|---|---|
| committer | Botahamec <botahamec@outlook.com> | 2021-12-21 15:51:50 -0500 |
| commit | c8a19796a99146bee4a6a058976ee83bab257335 (patch) | |
| tree | 087eabe830f0de36fcc0cadc90eb222b2ab1ce7f | |
Starting template
| -rw-r--r-- | .gitignore | 2 | ||||
| -rw-r--r-- | Cargo.toml | 8 | ||||
| -rwxr-xr-x | rustfmt.toml | 3 | ||||
| -rw-r--r-- | src/lib.rs | 1 |
4 files changed, 14 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..96ef6c0 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +/target +Cargo.lock diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..e065598 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,8 @@ +[package] +name = "botic" +version = "0.1.0" +edition = "2021" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] diff --git a/rustfmt.toml b/rustfmt.toml new file mode 100755 index 0000000..2508efc --- /dev/null +++ b/rustfmt.toml @@ -0,0 +1,3 @@ +edition = "2021" +newline_style = "Unix" +hard_tabs = true
\ No newline at end of file diff --git a/src/lib.rs b/src/lib.rs new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/src/lib.rs @@ -0,0 +1 @@ + |
