krata/xen/xenclient/Cargo.toml

38 lines
525 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-11 20:21:33 +00:00
log = "0.4.20"
2024-01-10 06:39:32 +00:00
2024-01-09 23:40:17 +00:00
[dependencies.xencall]
path = "../xencall"
[dependencies.xenstore]
path = "../xenstore"
[dependencies.xenevtchn]
path = "../xenevtchn"
2024-01-09 23:40:17 +00:00
[dependencies.uuid]
version = "1.6.1"
features = ["v4"]
2024-01-11 20:21:33 +00:00
[dev-dependencies]
env_logger = "0.11.1"
2024-01-11 20:21:33 +00:00
[lib]
path = "src/lib.rs"
2024-01-10 06:39:32 +00:00
[[example]]
name = "xenclient-boot"
path = "examples/boot.rs"