2024-01-08 23:23:26 -08:00
|
|
|
[package]
|
2024-01-09 15:40:17 -08:00
|
|
|
name = "xenclient"
|
2024-01-29 07:56:56 -08:00
|
|
|
version.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-30 17:42:55 -08:00
|
|
|
thiserror = { workspace = true }
|
2024-01-29 07:53:35 -08: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-02-23 04:37:53 +00:00
|
|
|
tokio = { workspace = true }
|
2024-01-09 22:39:32 -08:00
|
|
|
|
2024-01-09 15:40:17 -08:00
|
|
|
[dependencies.xencall]
|
|
|
|
path = "../xencall"
|
|
|
|
|
2024-01-08 23:23:26 -08:00
|
|
|
[dependencies.xenstore]
|
|
|
|
path = "../xenstore"
|
|
|
|
|
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]
|
|
|
|
path = "src/lib.rs"
|
|
|
|
|
2024-01-09 22:39:32 -08:00
|
|
|
[[example]]
|
|
|
|
name = "xenclient-boot"
|
|
|
|
path = "examples/boot.rs"
|