mirror of
https://github.com/edera-dev/krata.git
synced 2025-08-02 12:50:54 +00:00
37 lines
1.0 KiB
TOML
37 lines
1.0 KiB
TOML
[package]
|
|
name = "krata-runtime"
|
|
description = "Runtime for running guests on the krata hypervisor."
|
|
license.workspace = true
|
|
version.workspace = true
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
edition = "2021"
|
|
resolver = "2"
|
|
|
|
[dependencies]
|
|
anyhow = { workspace = true }
|
|
backhand = { workspace = true }
|
|
ipnetwork = { workspace = true }
|
|
krata = { path = "../krata", version = "^0.0.8" }
|
|
krata-advmac = { workspace = true }
|
|
krata-oci = { path = "../oci", version = "^0.0.8" }
|
|
log = { workspace = true }
|
|
loopdev-3 = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
tokio = { workspace = true }
|
|
uuid = { workspace = true }
|
|
krata-xenclient = { path = "../xen/xenclient", version = "^0.0.8" }
|
|
krata-xenevtchn = { path = "../xen/xenevtchn", version = "^0.0.8" }
|
|
krata-xengnt = { path = "../xen/xengnt", version = "^0.0.8" }
|
|
krata-xenstore = { path = "../xen/xenstore", version = "^0.0.8" }
|
|
|
|
[lib]
|
|
name = "kratart"
|
|
|
|
[dev-dependencies]
|
|
env_logger = { workspace = true }
|
|
|
|
[[example]]
|
|
name = "kratart-channel"
|
|
path = "examples/channel.rs"
|