2024-01-09 07:23:26 +00:00
|
|
|
[package]
|
2024-03-30 06:17:30 +00:00
|
|
|
name = "krata-xenclient"
|
2024-01-29 15:56:56 +00:00
|
|
|
version.workspace = true
|
2024-01-09 07:23:26 +00:00
|
|
|
edition = "2021"
|
|
|
|
resolver = "2"
|
|
|
|
|
2024-01-10 06:39:32 +00:00
|
|
|
[dependencies]
|
2024-01-29 15:53:35 +00:00
|
|
|
elf = { workspace = true }
|
|
|
|
flate2 = { workspace = true }
|
2024-03-07 18:04:22 +00:00
|
|
|
libc = { workspace = true }
|
|
|
|
log = { workspace = true }
|
2024-03-30 06:17:30 +00:00
|
|
|
krata-xencall = { path = "../xencall" }
|
|
|
|
krata-xenstore = { path = "../xenstore" }
|
2024-01-29 15:53:35 +00: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-09 07:23:26 +00:00
|
|
|
|
2024-01-11 20:21:33 +00:00
|
|
|
[dev-dependencies]
|
2024-01-29 15:53:35 +00:00
|
|
|
env_logger = { workspace = true }
|
2024-01-11 20:21:33 +00:00
|
|
|
|
2024-01-09 07:23:26 +00:00
|
|
|
[lib]
|
2024-03-07 18:04:22 +00:00
|
|
|
name = "xenclient"
|
2024-01-09 07:23:26 +00:00
|
|
|
|
2024-01-10 06:39:32 +00:00
|
|
|
[[example]]
|
|
|
|
name = "xenclient-boot"
|
|
|
|
path = "examples/boot.rs"
|