2024-06-21 01:10:45 -07:00
|
|
|
[package]
|
|
|
|
name = "krata-xenplatform"
|
|
|
|
description = "An implementation of Xen platforms for krata"
|
|
|
|
license.workspace = true
|
|
|
|
version.workspace = true
|
|
|
|
homepage.workspace = true
|
|
|
|
repository.workspace = true
|
|
|
|
edition = "2021"
|
|
|
|
resolver = "2"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
async-trait = { workspace = true }
|
|
|
|
c2rust-bitfields = { workspace = true }
|
|
|
|
elf = { workspace = true }
|
|
|
|
flate2 = { workspace = true }
|
|
|
|
indexmap = { workspace = true }
|
|
|
|
libc = { workspace = true }
|
|
|
|
log = { workspace = true }
|
2024-08-06 00:43:46 +00:00
|
|
|
krata-xencall = { path = "../xencall", version = "^0.0.14" }
|
2024-06-21 01:10:45 -07:00
|
|
|
memchr = { workspace = true }
|
|
|
|
nix = { workspace = true }
|
|
|
|
regex = { workspace = true }
|
|
|
|
slice-copy = { workspace = true }
|
|
|
|
thiserror = { workspace = true }
|
|
|
|
tokio = { workspace = true }
|
|
|
|
uuid = { workspace = true }
|
|
|
|
xz2 = { workspace = true }
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
env_logger = { workspace = true }
|
|
|
|
tokio = { workspace = true }
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "xenplatform"
|