krata/crates/xen/xenevtchn/Cargo.toml
2024-04-02 23:50:45 +00:00

24 lines
505 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]
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"