refactor: switch to workspace dependencies

This commit is contained in:
2024-11-01 20:37:30 +02:00
parent ebedd96362
commit 109f290c67
36 changed files with 284 additions and 239 deletions
+9 -10
View File
@@ -4,14 +4,13 @@ version = "0.1.0"
edition = "2021"
[dependencies]
yggdrasil-abi = { path = "../../../lib/abi" }
kernel-arch-interface = { path = "../interface" }
libk-mm-interface = { path = "../../libk/libk-mm/interface" }
memtables = { path = "../../lib/memtables" }
device-api = { path = "../../lib/device-api", features = ["derive"] }
yggdrasil-abi.workspace = true
kernel-arch-interface.workspace = true
libk-mm-interface.workspace = true
memtables.workspace = true
device-api = { workspace = true, features = ["derive"] }
kernel-arch-x86.workspace = true
kernel-arch-x86 = { path = "../x86" }
bitflags = "2.6.0"
static_assertions = "1.1.0"
tock-registers = "0.8.1"
bitflags.workspace = true
static_assertions.workspace = true
tock-registers.workspace = true