Update Cargo.toml to use new registry

This commit is contained in:
2025-02-23 03:15:19 +00:00
parent ca906767db
commit 5dc73e7000
+6 -8
View File
@@ -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"