diff --git a/Cargo.lock b/Cargo.lock index d36daaf..e7b8c2c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2,20 +2,6 @@ # It is not intended for manual editing. version = 4 -[[package]] -name = "FoundryOS" -version = "0.1.0" -dependencies = [ - "cc", - "lib_ascii", - "lib_framebuffer", - "lib_serial", - "limine", - "pic8259", - "spin", - "x86_64", -] - [[package]] name = "autocfg" version = "1.4.0" @@ -43,6 +29,20 @@ dependencies = [ "shlex", ] +[[package]] +name = "foundry_os" +version = "0.1.0" +dependencies = [ + "cc", + "lib_ascii", + "lib_framebuffer", + "lib_serial", + "limine", + "pic8259", + "spin", + "x86_64", +] + [[package]] name = "lazy_static" version = "1.5.0" diff --git a/kernel/Cargo.toml b/kernel/Cargo.toml index 1b94af6..4759c3f 100644 --- a/kernel/Cargo.toml +++ b/kernel/Cargo.toml @@ -1,5 +1,5 @@ [package] -name = "FoundryOS" +name = "foundry_os" version = "0.1.0" edition = "2021"