krata/crates/xen/xencall/Cargo.toml
2024-04-02 00:56:18 +00:00

40 lines
855 B
TOML

[package]
name = "krata-xencall"
description = "An implementation of direct interfacing to xen privcmd for krata."
license.workspace = true
version= "0.0.3"
homepage.workspace = true
repository.workspace = true
edition = "2021"
resolver = "2"
[dependencies]
libc = { workspace = true }
log = { workspace = true }
nix = { workspace = true, features = ["ioctl"] }
thiserror = { workspace = true }
tokio = { workspace = true }
uuid = { workspace = true }
[lib]
name = "xencall"
[dev-dependencies]
env_logger = { workspace = true }
[[example]]
name = "xencall-domain-info"
path = "examples/domain_info.rs"
[[example]]
name = "xencall-domain-create"
path = "examples/domain_create.rs"
[[example]]
name = "xencall-version-capabilities"
path = "examples/version_capabilities.rs"
[[example]]
name = "xencall-vcpu-context"
path = "examples/vcpu_context.rs"