From 9401ebccfcd44cc09cbf04841449d3f0272eba5e Mon Sep 17 00:00:00 2001 From: Noah Knegt Date: Sun, 20 Jul 2025 19:01:18 +0200 Subject: [PATCH] Create basic rust project Signed-off-by: Noah Knegt --- .gitignore | 5 +++++ Cargo.toml | 6 ++++++ README.md | 3 ++- 3 files changed, 13 insertions(+), 1 deletion(-) create mode 100644 Cargo.toml diff --git a/.gitignore b/.gitignore index 0b188bc..e2aab4f 100644 --- a/.gitignore +++ b/.gitignore @@ -16,3 +16,8 @@ target/ # and can be added to the global gitignore or merged into this file. For a more nuclear # option (not recommended) you can uncomment the following to ignore the entire idea folder. #.idea/ + + +# Added by cargo + +/target diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..7286186 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,6 @@ +[package] +name = "FerrOS" +version = "0.1.0" +edition = "2024" + +[dependencies] diff --git a/README.md b/README.md index 1f26889..d3c0425 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,4 @@ # FerrOS -A custom OS written in Rust \ No newline at end of file +A custom OS written in Rust +