mirror of
https://github.com/edera-dev/krata.git
synced 2025-08-02 21:00:55 +00:00
Co-authored-by: edera-cultivation[bot] <165992271+edera-cultivation[bot]@users.noreply.github.com>
38 lines
918 B
TOML
38 lines
918 B
TOML
[package]
|
|
name = "krata-xenclient"
|
|
description = "An implementation of Xen userspace for krata"
|
|
license.workspace = true
|
|
version.workspace = true
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
edition = "2021"
|
|
resolver = "2"
|
|
|
|
[dependencies]
|
|
async-trait = { workspace = true }
|
|
bit-vec = { workspace = true }
|
|
indexmap = { workspace = true }
|
|
log = { workspace = true }
|
|
krata-xencall = { path = "../xencall", version = "^0.0.24" }
|
|
krata-xenplatform = { path = "../xenplatform", version = "^0.0.24" }
|
|
krata-xenstore = { path = "../xenstore", version = "^0.0.24" }
|
|
regex = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
tokio = { workspace = true }
|
|
uuid = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
env_logger = { workspace = true }
|
|
tokio = { workspace = true }
|
|
|
|
[lib]
|
|
name = "xenclient"
|
|
|
|
[[example]]
|
|
name = "xenclient-boot"
|
|
path = "examples/boot.rs"
|
|
|
|
[[example]]
|
|
name = "xenclient-pci"
|
|
path = "examples/pci.rs"
|