virtiod: split into virtio-core and virtiod

Signed-off-by: Anhad Singh <andypython@protonmail.com>
This commit is contained in:
Anhad Singh
2023-06-27 09:51:16 +10:00
parent ea1c855cdc
commit eee780fa0f
11 changed files with 378 additions and 335 deletions
Generated
+13 -1
View File
@@ -1904,12 +1904,23 @@ dependencies = [
"rusttype",
]
[[package]]
name = "virtio-core"
version = "0.1.0"
dependencies = [
"bitflags 2.3.2",
"log",
"pcid",
"redox_syscall 0.3.5",
"static_assertions",
"thiserror",
]
[[package]]
name = "virtiod"
version = "0.1.0"
dependencies = [
"anyhow",
"bitflags 2.3.2",
"block-io-wrapper",
"log",
"partitionlib",
@@ -1920,6 +1931,7 @@ dependencies = [
"redox_syscall 0.3.5",
"static_assertions",
"thiserror",
"virtio-core",
]
[[package]]