hypha: move libraries to libs/

This commit is contained in:
Alex Zenla 2024-02-01 10:01:49 +00:00
parent def4306a04
commit bd56de235f
No known key found for this signature in database
GPG Key ID: 067B238899B51269
36 changed files with 10 additions and 10 deletions

View File

@ -1,11 +1,11 @@
[workspace] [workspace]
members = [ members = [
"xen/xenstore", "libs/xen/xenstore",
"xen/xenevtchn", "libs/xen/xenevtchn",
"xen/xencall", "libs/xen/xencall",
"xen/xenclient", "libs/xen/xenclient",
"libs/loopdev",
"hypha", "hypha",
"loopdev",
] ]
resolver = "2" resolver = "2"

View File

@ -31,14 +31,14 @@ uuid = { workspace = true }
workspace = true workspace = true
features = ["process"] features = ["process"]
[dependencies.xenclient]
path = "../xen/xenclient"
[dependencies.loopdev] [dependencies.loopdev]
path = "../loopdev" path = "../libs/loopdev"
[dependencies.xenclient]
path = "../libs/xen/xenclient"
[dependencies.xenstore] [dependencies.xenstore]
path = "../xen/xenstore" path = "../libs/xen/xenstore"
[lib] [lib]
path = "src/lib.rs" path = "src/lib.rs"