2024-01-08 23:23:26 -08:00
|
|
|
[package]
|
2024-03-30 06:17:30 +00:00
|
|
|
name = "krata-xenclient"
|
2024-03-30 07:11:14 +00:00
|
|
|
description = "An implementation of Xen userspace for krata."
|
|
|
|
license.workspace = true
|
Revert "Release krata v0.0.1, krata-oci v0.0.1, krata-xenstore v0.0.1, krata-guest v0.0.1, krata-xencall v0.0.1, krata-xenclient v0.0.1, krata-xenevtchn v0.0.1, krata-xengnt v0.0.1, krata-runtime v0.0.1, krata-daemon v0.0.1, krata-network v0.0.1, krata-ctl v0.0.1"
This reverts commit efba8b1316848611ae538aeb3357308145227b28.
2024-03-30 08:32:35 +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-01-29 07:53:35 -08:00
|
|
|
elf = { workspace = true }
|
|
|
|
flate2 = { workspace = true }
|
2024-03-07 18:04:22 +00:00
|
|
|
libc = { workspace = true }
|
|
|
|
log = { workspace = true }
|
2024-03-30 09:29:03 +00:00
|
|
|
krata-xencall = { path = "../xencall", version = "0.0.3" }
|
|
|
|
krata-xenstore = { path = "../xenstore", version = "0.0.3" }
|
2024-01-29 07:53:35 -08:00
|
|
|
memchr = { workspace = true }
|
|
|
|
slice-copy = { 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 }
|
|
|
|
xz2 = { 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-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"
|