From 5dc73e70003d7826f09ef3d8b3ed11a46eb61b81 Mon Sep 17 00:00:00 2001 From: Jacob Hinchliffe Date: Sun, 23 Feb 2025 03:15:19 +0000 Subject: [PATCH] Update Cargo.toml to use new registry --- kernel/Cargo.toml | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/kernel/Cargo.toml b/kernel/Cargo.toml index 4005239..da63b77 100644 --- a/kernel/Cargo.toml +++ b/kernel/Cargo.toml @@ -5,14 +5,12 @@ edition = "2021" [dependencies] limine = "0.3.1" -lib_framebuffer = { path = "../lib/lib_framebuffer" } -lib_serial = { path = "../lib/lib_serial" } -lib_ascii = { path = "../lib/lib_ascii" } -lib_alloc = { path = "../lib/lib_alloc" } -lib_application = { path = "../lib/lib_application" } -lib_async = { path = "../lib/lib_async" } -lib_keyboard = { path = "../lib/lib_keyboard" } - +lib_framebuffer = { version = "0.1.0", path = "../lib/lib_framebuffer", registry = "gitea" } +lib_serial = { version = "0.1.0", path = "../lib/lib_serial", registry = "gitea" } +lib_ascii = { version = "0.1.0", path = "../lib/lib_ascii", registry = "gitea" } +lib_application = { version = "0.1.0", path = "../lib/lib_application", registry = "gitea" } +lib_async = { version = "0.1.0", path = "../lib/lib_async", registry = "gitea" } +lib_keyboard = { version = "0.1.0", path = "../lib/lib_keyboard", registry = "gitea" } x86_64 = "0.15.2" spin = "0.9.8" pic8259 = "0.11.0"