From 145e6e880c683989ea64aba0fc92dafee988d39c Mon Sep 17 00:00:00 2001 From: Wesley Irvin Date: Thu, 17 Oct 2024 00:07:10 +0000 Subject: [PATCH] Initial Project Layout (#1) Created files that will make up the initial project layout of the project Reviewed-on: https://git.wesirvin.com/wesley/uboat-tools/pulls/1 --- .gitignore | 3 +-- Cargo.toml | 6 ++++++ src/bin/uboat-tools.rs | 0 src/lib.rs | 0 4 files changed, 7 insertions(+), 2 deletions(-) create mode 100644 Cargo.toml create mode 100644 src/bin/uboat-tools.rs create mode 100644 src/lib.rs diff --git a/.gitignore b/.gitignore index 8147f61..ecd42de 100644 --- a/.gitignore +++ b/.gitignore @@ -65,7 +65,7 @@ x86/ [Aa][Rr][Mm]/ [Aa][Rr][Mm]64/ bld/ -[Bb]in/ +#[Bb]in/ [Oo]bj/ [Ll]og/ [Ll]ogs/ @@ -448,4 +448,3 @@ FodyWeavers.xsd # Built Visual Studio Code Extensions *.vsix - diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..99e6909 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,6 @@ +[package] +name = "uboat-tools" +version = "0.1.0" +edition = "2021" + +[dependencies] diff --git a/src/bin/uboat-tools.rs b/src/bin/uboat-tools.rs new file mode 100644 index 0000000..e69de29 diff --git a/src/lib.rs b/src/lib.rs new file mode 100644 index 0000000..e69de29