krata/xenclient/Cargo.toml

35 lines
487 B
TOML
Raw Normal View History

[package]
2024-01-09 23:40:17 +00:00
name = "xenclient"
version = "0.0.1"
edition = "2021"
resolver = "2"
2024-01-10 06:39:32 +00:00
[dependencies]
libc = "0.2"
2024-01-10 06:39:32 +00:00
elf = "0.7.4"
flate2 = "1.0"
xz2 = "0.1"
memchr = "2"
slice-copy = "0.3.0"
2024-01-10 06:39:32 +00:00
2024-01-09 23:40:17 +00:00
[dependencies.xencall]
path = "../xencall"
[dependencies.xenstore]
path = "../xenstore"
2024-01-09 23:40:17 +00:00
[dependencies.uuid]
version = "1.6.1"
features = ["v4"]
[lib]
path = "src/lib.rs"
[[example]]
2024-01-09 23:40:17 +00:00
name = "xenclient-simple"
path = "examples/simple.rs"
2024-01-10 06:39:32 +00:00
[[example]]
name = "xenclient-boot"
path = "examples/boot.rs"