2024-01-08 20:43:16 +00:00
|
|
|
[package]
|
2024-01-09 01:07:00 +00:00
|
|
|
name = "xenstore"
|
2024-01-29 15:56:56 +00:00
|
|
|
version.workspace = true
|
2024-01-08 20:43:16 +00:00
|
|
|
edition = "2021"
|
|
|
|
resolver = "2"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
path = "src/lib.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2024-01-29 15:53:35 +00:00
|
|
|
libc = { workspace = true }
|
|
|
|
log = { workspace = true }
|
2024-01-08 20:43:16 +00:00
|
|
|
|
|
|
|
[dependencies.bytemuck]
|
2024-01-29 15:53:35 +00:00
|
|
|
workspace = true
|
2024-01-08 20:43:16 +00:00
|
|
|
features = ["derive"]
|
|
|
|
|
|
|
|
[[example]]
|
2024-01-09 01:07:00 +00:00
|
|
|
name = "xenstore-ls"
|
2024-01-08 20:43:16 +00:00
|
|
|
path = "examples/list.rs"
|