implement support for creating domains

This commit is contained in:
Alex Zenla
2024-01-09 15:40:17 -08:00
parent 4b31d95e43
commit 35f3346858
16 changed files with 618 additions and 105 deletions

22
xenclient/Cargo.toml Normal file
View File

@ -0,0 +1,22 @@
[package]
name = "xenclient"
version = "0.0.1"
edition = "2021"
resolver = "2"
[dependencies.xencall]
path = "../xencall"
[dependencies.xenstore]
path = "../xenstore"
[dependencies.uuid]
version = "1.6.1"
features = ["v4"]
[lib]
path = "src/lib.rs"
[[example]]
name = "xenclient-simple"
path = "examples/simple.rs"