Fixed documentation and bump version

This commit is contained in:
River 2025-02-10 10:29:08 -05:00
parent cfbea99529
commit 1b53370800
Signed by: shibedrill
GPG Key ID: 5FE0CB25945EFAA2
3 changed files with 4 additions and 3 deletions

2
Cargo.lock generated
View File

@ -55,7 +55,7 @@ checksum = "875488b8711a968268c7cf5d139578713097ca4635a76044e8fe8eedf831d07e"
[[package]]
name = "gila"
version = "0.1.0"
version = "0.1.1"
dependencies = [
"flagset",
"lazy_static",

View File

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

View File

@ -1,5 +1,5 @@
# Gila v0.1.0 - a Rust Microkernel
# Gila v0.1.1 - a Rust Microkernel
Gila is a Rust microkernel OS, inspired by the Xinu embedded OS. It will
hopefully be capable of multitasking some day. I do not intend for Gila to
@ -16,6 +16,7 @@ Licensed under the GNU Public License v3. See [LICENSE](LICENSE) for details.
## Navigating
- [boot.rs](src/boot.rs): Handles bootloader handoff. Gila uses Limine. Other bootloaders are NOT supported.
- [display.rs](src/display.rs): Handles text-mode display via the VGA buffer.
- [lib.rs](src/lib.rs): Glue to make all files accessible from [main.rs](src/main.rs).
- [main.rs](src/main.rs): The entry point that gets called by the bootloader.
- [memory.rs](src/memory.rs): Types relating to memory regions and allocation.