Files
krata/xenclient/Cargo.toml

33 lines
453 B
TOML
Raw Normal View History

[package]
2024-01-09 15:40:17 -08:00
name = "xenclient"
version = "0.0.1"
edition = "2021"
resolver = "2"
2024-01-09 22:39:32 -08:00
[dependencies]
elf = "0.7.4"
flate2 = "1.0"
xz2 = "0.1"
memchr = "2"
2024-01-09 15:40:17 -08:00
[dependencies.xencall]
path = "../xencall"
[dependencies.xenstore]
path = "../xenstore"
2024-01-09 15:40:17 -08:00
[dependencies.uuid]
version = "1.6.1"
features = ["v4"]
[lib]
path = "src/lib.rs"
[[example]]
2024-01-09 15:40:17 -08:00
name = "xenclient-simple"
path = "examples/simple.rs"
2024-01-09 22:39:32 -08:00
[[example]]
name = "xenclient-boot"
path = "examples/boot.rs"