implement evtchn support

This commit is contained in:
Alex Zenla
2024-01-08 17:07:00 -08:00
parent 7ca32dd413
commit 47b924d618
11 changed files with 179 additions and 6 deletions

19
xenstore/Cargo.toml Normal file
View File

@ -0,0 +1,19 @@
[package]
name = "xenstore"
version = "0.0.1"
edition = "2021"
resolver = "2"
[lib]
path = "src/lib.rs"
[dependencies]
libc = "0.2"
[dependencies.bytemuck]
version = "1.14.0"
features = ["derive"]
[[example]]
name = "xenstore-ls"
path = "examples/list.rs"