krata/crates/xen/xenevtchn/Cargo.toml

20 lines
367 B
TOML
Raw Normal View History

2024-01-09 01:07:00 +00:00
[package]
name = "krata-xenevtchn"
version.workspace = true
2024-01-09 01:07:00 +00:00
edition = "2021"
resolver = "2"
2024-01-11 20:21:33 +00:00
[dependencies]
libc = { workspace = true }
2024-03-07 18:04:22 +00:00
log = { workspace = true }
2024-01-30 10:05:37 +00:00
thiserror = { workspace = true }
2024-03-07 18:04:22 +00:00
nix = { workspace = true, features = ["ioctl"] }
tokio = { workspace = true }
2024-01-09 01:07:00 +00:00
[lib]
2024-03-07 18:04:22 +00:00
name = "xenevtchn"
2024-01-09 01:07:00 +00:00
[[example]]
name = "xenevtchn-simple"
path = "examples/simple.rs"