mirror of
https://github.com/edera-dev/krata.git
synced 2025-08-02 21:00:55 +00:00
37 lines
639 B
TOML
37 lines
639 B
TOML
[package]
|
|
name = "xencall"
|
|
version = "0.0.1"
|
|
edition = "2021"
|
|
resolver = "2"
|
|
|
|
[lib]
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies]
|
|
libc = { workspace = true }
|
|
log = { workspace = true }
|
|
uuid = { workspace = true }
|
|
|
|
[dependencies.nix]
|
|
workspace = true
|
|
features = ["ioctl"]
|
|
|
|
[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"
|