2024-01-08 17:07:00 -08:00
|
|
|
[package]
|
2024-03-30 06:17:30 +00:00
|
|
|
name = "krata-xenevtchn"
|
2024-06-21 01:10:45 -07:00
|
|
|
description = "An implementation of Xen evtchn for krata."
|
2024-03-30 07:11:14 +00:00
|
|
|
license.workspace = true
|
2024-04-02 23:50:45 +00:00
|
|
|
version.workspace = true
|
2024-03-30 07:11:14 +00:00
|
|
|
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]
|
2024-03-27 06:28:47 +00:00
|
|
|
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"] }
|
2024-02-14 20:50:11 +00:00
|
|
|
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"
|