mirror of
https://github.com/edera-dev/krata.git
synced 2025-08-02 12:50:54 +00:00
37 lines
890 B
TOML
37 lines
890 B
TOML
[package]
|
|
name = "krata-xenclient"
|
|
description = "An implementation of Xen userspace for krata."
|
|
license.workspace = true
|
|
version= "0.0.3"
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
edition = "2021"
|
|
resolver = "2"
|
|
|
|
[dependencies]
|
|
async-trait = { workspace = true }
|
|
elf = { workspace = true }
|
|
flate2 = { workspace = true }
|
|
libc = { workspace = true }
|
|
log = { workspace = true }
|
|
krata-xencall = { path = "../xencall", version = "^0.0.3" }
|
|
krata-xenstore = { path = "../xenstore", version = "^0.0.3" }
|
|
memchr = { workspace = true }
|
|
nix = { 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 = "xenclient"
|
|
|
|
[[example]]
|
|
name = "xenclient-boot"
|
|
path = "examples/boot.rs"
|