2024-03-07 18:04:22 +00:00
|
|
|
[package]
|
2024-03-30 06:17:30 +00:00
|
|
|
name = "krata-runtime"
|
2024-03-30 07:11:14 +00:00
|
|
|
description = "Runtime for running guests on the krata hypervisor."
|
|
|
|
license.workspace = true
|
2024-04-02 23:50:45 +00:00
|
|
|
version.workspace = true
|
2024-03-30 07:11:14 +00:00
|
|
|
homepage.workspace = true
|
|
|
|
repository.workspace = true
|
2024-03-07 18:04:22 +00:00
|
|
|
edition = "2021"
|
|
|
|
resolver = "2"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
anyhow = { workspace = true }
|
|
|
|
backhand = { workspace = true }
|
|
|
|
ipnetwork = { workspace = true }
|
2024-04-15 19:15:00 +00:00
|
|
|
krata = { path = "../krata", version = "^0.0.9" }
|
2024-03-30 06:51:16 +00:00
|
|
|
krata-advmac = { workspace = true }
|
2024-04-15 19:15:00 +00:00
|
|
|
krata-oci = { path = "../oci", version = "^0.0.9" }
|
2024-03-07 18:04:22 +00:00
|
|
|
log = { workspace = true }
|
2024-03-30 06:17:30 +00:00
|
|
|
loopdev-3 = { workspace = true }
|
2024-03-07 18:04:22 +00:00
|
|
|
serde_json = { workspace = true }
|
|
|
|
tokio = { workspace = true }
|
|
|
|
uuid = { workspace = true }
|
2024-04-15 19:15:00 +00:00
|
|
|
krata-xenclient = { path = "../xen/xenclient", version = "^0.0.9" }
|
|
|
|
krata-xenevtchn = { path = "../xen/xenevtchn", version = "^0.0.9" }
|
|
|
|
krata-xengnt = { path = "../xen/xengnt", version = "^0.0.9" }
|
|
|
|
krata-xenstore = { path = "../xen/xenstore", version = "^0.0.9" }
|
2024-03-07 18:04:22 +00:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "kratart"
|
2024-03-08 14:44:45 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
env_logger = { workspace = true }
|
|
|
|
|
2024-03-27 06:28:47 +00:00
|
|
|
[[example]]
|
|
|
|
name = "kratart-channel"
|
|
|
|
path = "examples/channel.rs"
|