mirror of
https://github.com/edera-dev/krata.git
synced 2025-08-02 21:00:55 +00:00
* wip hvm * feat: move platform stuff all into it's own thing * hvm work * more hvm work * more hvm work * feat: rework to support multiple platforms * hvm nonredist * more hvm work * more hvm work * pvh work * work on loading cmdline * implement initrd loading for pvh * partially working pvh support * fix merge issues * pvh works! * swap over to pv support * remove old kernel stuff * fix support for pv * pvh is gone for now * fix(runtime): debug should be respected * fix(xen): arm64 is currently unsupported, treat it as such at runtime * fix(examples): use architecture cfg for boot example * fix(x86): use IOMMU only when needed for passthrough * chore(build): print kernel architecture during fetch
36 lines
786 B
TOML
36 lines
786 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 }
|
|
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"
|