From 11e5cc405ae53de17004c1e412e751a0454a8803 Mon Sep 17 00:00:00 2001 From: Wesley Irvin Date: Wed, 16 Oct 2024 20:05:45 -0400 Subject: [PATCH] Initial Project Layout Created files that will make up the initial project layout of the project --- .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