2024-03-07 18:04:22 +00:00
|
|
|
[package]
|
2024-03-30 06:17:30 +00:00
|
|
|
name = "krata-runtime"
|
2024-06-20 19:57:18 -07:00
|
|
|
description = "Runtime for running guests on the krata isolation engine"
|
2024-03-30 07:11:14 +00:00
|
|
|
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-07-12 22:00:06 +00:00
|
|
|
krata = { path = "../krata", version = "^0.0.12" }
|
2024-03-30 06:51:16 +00:00
|
|
|
krata-advmac = { workspace = true }
|
2024-07-12 22:00:06 +00:00
|
|
|
krata-oci = { path = "../oci", version = "^0.0.12" }
|
2024-03-07 18:04:22 +00:00
|
|
|
log = { workspace = true }
|
|
|
|
serde_json = { workspace = true }
|
|
|
|
tokio = { workspace = true }
|
|
|
|
uuid = { workspace = true }
|
2024-07-12 22:00:06 +00:00
|
|
|
krata-loopdev = { path = "../loopdev", version = "^0.0.12" }
|
|
|
|
krata-xencall = { path = "../xen/xencall", version = "^0.0.12" }
|
|
|
|
krata-xenclient = { path = "../xen/xenclient", version = "^0.0.12" }
|
|
|
|
krata-xenevtchn = { path = "../xen/xenevtchn", version = "^0.0.12" }
|
|
|
|
krata-xengnt = { path = "../xen/xengnt", version = "^0.0.12" }
|
|
|
|
krata-xenplatform = { path = "../xen/xenplatform", version = "^0.0.12" }
|
|
|
|
krata-xenstore = { path = "../xen/xenstore", version = "^0.0.12" }
|
2024-04-29 10:02:20 -07:00
|
|
|
walkdir = { workspace = true }
|
2024-06-29 15:43:08 -07:00
|
|
|
indexmap = { workspace = true }
|
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"
|