Create basic rust project

Signed-off-by: Noah Knegt <git@noahknegt.com>
This commit is contained in:
2025-07-20 19:01:18 +02:00
parent 2b6df6578e
commit 9401ebccfc
3 changed files with 13 additions and 1 deletions

5
.gitignore vendored
View File

@@ -16,3 +16,8 @@ target/
# and can be added to the global gitignore or merged into this file. For a more nuclear # 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. # option (not recommended) you can uncomment the following to ignore the entire idea folder.
#.idea/ #.idea/
# Added by cargo
/target

6
Cargo.toml Normal file
View File

@@ -0,0 +1,6 @@
[package]
name = "FerrOS"
version = "0.1.0"
edition = "2024"
[dependencies]

View File

@@ -1,3 +1,4 @@
# FerrOS # FerrOS
A custom OS written in Rust A custom OS written in Rust