krata/crates/xen/xenevtchn/Cargo.toml
Alex Zenla 1cf03a460e
fix(idm): reimplement packet processing algorithm (#330)
* chore(xen): rewrite event channel code

* fix(idm): repair idm bugs on the file backend
2024-08-13 23:18:27 +00:00

25 lines
538 B
TOML

[package]
name = "krata-xenevtchn"
description = "An implementation of Xen evtchn for krata."
license.workspace = true
version.workspace = true
homepage.workspace = true
repository.workspace = true
edition = "2021"
resolver = "2"
[dependencies]
byteorder = { workspace = true }
libc = { workspace = true }
log = { workspace = true }
thiserror = { workspace = true }
nix = { workspace = true, features = ["ioctl"] }
tokio = { workspace = true }
[lib]
name = "xenevtchn"
[[example]]
name = "xenevtchn-simple"
path = "examples/simple.rs"