mirror of
https://github.com/edera-dev/krata.git
synced 2025-08-02 21:00:55 +00:00
43 lines
919 B
TOML
43 lines
919 B
TOML
[package]
|
|
name = "krata-xencall"
|
|
description = "An implementation of direct interfacing to Xen privcmd for krata"
|
|
license.workspace = true
|
|
version.workspace = true
|
|
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 }
|
|
|
|
[lib]
|
|
name = "xencall"
|
|
|
|
[dev-dependencies]
|
|
env_logger = { workspace = true }
|
|
|
|
[[example]]
|
|
name = "xencall-cpu-topology"
|
|
path = "examples/cpu_topology.rs"
|
|
|
|
[[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-power-management"
|
|
path = "examples/power_management.rs"
|