Files
krata/crates/xen/xenevtchn/Cargo.toml

24 lines
497 B
TOML
Raw Normal View History

2024-01-08 17:07:00 -08:00
[package]
name = "krata-xenevtchn"
description = "An implementation of xen evtchn for krata."
license.workspace = true
version= "0.0.1"
homepage.workspace = true
repository.workspace = true
2024-01-08 17:07:00 -08:00
edition = "2021"
resolver = "2"
2024-01-11 12:21:33 -08:00
[dependencies]
libc = { workspace = true }
2024-03-07 18:04:22 +00:00
log = { workspace = true }
2024-01-30 02:05:37 -08:00
thiserror = { workspace = true }
2024-03-07 18:04:22 +00:00
nix = { workspace = true, features = ["ioctl"] }
tokio = { workspace = true }
2024-01-08 17:07:00 -08:00
[lib]
2024-03-07 18:04:22 +00:00
name = "xenevtchn"
2024-01-08 17:07:00 -08:00
[[example]]
name = "xenevtchn-simple"
path = "examples/simple.rs"