krata/crates/xen/xencall/Cargo.toml

40 lines
855 B
TOML
Raw Normal View History

2024-01-09 04:45:16 +00:00
[package]
name = "krata-xencall"
description = "An implementation of direct interfacing to xen privcmd for krata."
license.workspace = true
2024-03-30 09:32:19 +00:00
version= "0.0.3"
homepage.workspace = true
repository.workspace = true
2024-01-09 04:45:16 +00:00
edition = "2021"
resolver = "2"
[dependencies]
libc = { workspace = true }
log = { workspace = true }
2024-03-07 18:04:22 +00:00
nix = { workspace = true, features = ["ioctl"] }
thiserror = { workspace = true }
2024-04-02 00:56:18 +00:00
tokio = { workspace = true }
uuid = { workspace = true }
2024-01-09 23:40:17 +00:00
2024-03-07 18:04:22 +00:00
[lib]
name = "xencall"
2024-01-09 04:45:16 +00:00
2024-01-11 20:21:33 +00:00
[dev-dependencies]
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"
[[example]]
name = "xencall-vcpu-context"
path = "examples/vcpu_context.rs"