2024-01-08 23:23:26 -08:00
|
|
|
[package]
|
2024-03-30 06:17:30 +00:00
|
|
|
name = "krata-xenclient"
|
2024-06-21 01:10:45 -07:00
|
|
|
description = "An implementation of Xen userspace for krata"
|
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-01-08 23:23:26 -08:00
|
|
|
edition = "2021"
|
|
|
|
resolver = "2"
|
|
|
|
|
2024-01-09 22:39:32 -08:00
|
|
|
[dependencies]
|
2024-05-05 13:39:53 -07:00
|
|
|
indexmap = { workspace = true }
|
2024-03-07 18:04:22 +00:00
|
|
|
log = { workspace = true }
|
2024-09-17 00:19:00 -04:00
|
|
|
krata-xencall = { path = "../xencall", version = "^0.0.23" }
|
|
|
|
krata-xenplatform = { path = "../xenplatform", version = "^0.0.23" }
|
|
|
|
krata-xenstore = { path = "../xenstore", version = "^0.0.23" }
|
2024-04-29 10:02:20 -07:00
|
|
|
regex = { workspace = true }
|
2024-03-07 18:04:22 +00:00
|
|
|
thiserror = { workspace = true }
|
2024-02-23 04:37:53 +00:00
|
|
|
tokio = { workspace = true }
|
2024-03-07 18:04:22 +00:00
|
|
|
uuid = { workspace = true }
|
2024-01-08 23:23:26 -08:00
|
|
|
|
2024-01-11 12:21:33 -08:00
|
|
|
[dev-dependencies]
|
2024-01-29 07:53:35 -08:00
|
|
|
env_logger = { workspace = true }
|
2024-04-02 00:56:18 +00:00
|
|
|
tokio = { workspace = true }
|
2024-01-11 12:21:33 -08:00
|
|
|
|
2024-01-08 23:23:26 -08:00
|
|
|
[lib]
|
2024-03-07 18:04:22 +00:00
|
|
|
name = "xenclient"
|
2024-01-08 23:23:26 -08:00
|
|
|
|
2024-01-09 22:39:32 -08:00
|
|
|
[[example]]
|
|
|
|
name = "xenclient-boot"
|
|
|
|
path = "examples/boot.rs"
|
2024-04-29 10:02:20 -07:00
|
|
|
|
|
|
|
[[example]]
|
|
|
|
name = "xenclient-pci"
|
|
|
|
path = "examples/pci.rs"
|