2024-01-09 04:45:16 +00:00
|
|
|
[package]
|
|
|
|
name = "xencall"
|
2024-01-29 15:56:56 +00:00
|
|
|
version.workspace = true
|
2024-01-09 04:45:16 +00:00
|
|
|
edition = "2021"
|
|
|
|
resolver = "2"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
path = "src/lib.rs"
|
|
|
|
|
2024-01-11 00:07:57 +00:00
|
|
|
[dependencies]
|
2024-01-29 15:53:35 +00:00
|
|
|
libc = { workspace = true }
|
|
|
|
log = { workspace = true }
|
|
|
|
uuid = { workspace = true }
|
2024-01-09 23:40:17 +00:00
|
|
|
|
2024-01-09 04:45:16 +00:00
|
|
|
[dependencies.nix]
|
2024-01-29 15:53:35 +00:00
|
|
|
workspace = true
|
2024-01-09 04:45:16 +00:00
|
|
|
features = ["ioctl"]
|
|
|
|
|
2024-01-11 20:21:33 +00:00
|
|
|
[dev-dependencies]
|
2024-01-29 15:53:35 +00:00
|
|
|
env_logger = { workspace = true }
|
2024-01-11 20:21:33 +00:00
|
|
|
|
2024-01-09 04:45:16 +00:00
|
|
|
[[example]]
|
2024-01-09 23:40:17 +00:00
|
|
|
name = "xencall-domain-info"
|
|
|
|
path = "examples/domain_info.rs"
|
|
|
|
|
|
|
|
[[example]]
|
|
|
|
name = "xencall-domain-create"
|
|
|
|
path = "examples/domain_create.rs"
|
2024-01-10 06:39:32 +00:00
|
|
|
|
|
|
|
[[example]]
|
|
|
|
name = "xencall-version-capabilities"
|
|
|
|
path = "examples/version_capabilities.rs"
|
2024-01-12 22:57:02 +00:00
|
|
|
|
|
|
|
[[example]]
|
|
|
|
name = "xencall-vcpu-context"
|
|
|
|
path = "examples/vcpu_context.rs"
|