2024-01-09 07:23:26 +00:00
|
|
|
[package]
|
2024-01-09 23:40:17 +00:00
|
|
|
name = "xenclient"
|
2024-01-09 07:23:26 +00:00
|
|
|
version = "0.0.1"
|
|
|
|
edition = "2021"
|
|
|
|
resolver = "2"
|
|
|
|
|
2024-01-10 06:39:32 +00:00
|
|
|
[dependencies]
|
2024-01-29 15:53:35 +00:00
|
|
|
libc = { workspace = true }
|
|
|
|
elf = { workspace = true }
|
|
|
|
flate2 = { workspace = true }
|
|
|
|
xz2 = { workspace = true }
|
|
|
|
memchr = { workspace = true }
|
|
|
|
slice-copy = { workspace = true }
|
|
|
|
log = { workspace = true }
|
|
|
|
uuid = { workspace = true }
|
2024-01-10 06:39:32 +00:00
|
|
|
|
2024-01-09 23:40:17 +00:00
|
|
|
[dependencies.xencall]
|
|
|
|
path = "../xencall"
|
|
|
|
|
2024-01-09 07:23:26 +00:00
|
|
|
[dependencies.xenstore]
|
|
|
|
path = "../xenstore"
|
|
|
|
|
2024-01-17 09:41:17 +00:00
|
|
|
[dependencies.xenevtchn]
|
|
|
|
path = "../xenevtchn"
|
|
|
|
|
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]
|
|
|
|
path = "src/lib.rs"
|
|
|
|
|
2024-01-10 06:39:32 +00:00
|
|
|
[[example]]
|
|
|
|
name = "xenclient-boot"
|
|
|
|
path = "examples/boot.rs"
|