2021-04-14 10:51:22 +00:00
|
|
|
[package]
|
|
|
|
name = "qemu-rdw"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Marc-André Lureau <marcandre.lureau@redhat.com>"]
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
2022-10-18 13:44:43 +00:00
|
|
|
[features]
|
|
|
|
qmp = ["qemu-display/qmp"]
|
2021-04-14 10:51:22 +00:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
log = "0.4"
|
|
|
|
pretty_env_logger = "0.4"
|
2024-05-23 14:54:14 +00:00
|
|
|
once_cell = "1.19"
|
2024-01-17 13:02:36 +00:00
|
|
|
zbus.workspace = true
|
|
|
|
qemu-display.workspace = true
|
|
|
|
keycodemap.workspace = true
|
2022-01-18 19:08:46 +00:00
|
|
|
futures-util = "0.3"
|
|
|
|
futures = "0.3"
|
|
|
|
async-trait = "0.1"
|
2024-05-23 14:54:14 +00:00
|
|
|
tracing-subscriber = { version = "0.3.18", features = ["env-filter" , "fmt"], default-features = false }
|
2022-11-16 18:58:51 +00:00
|
|
|
|
2023-07-22 08:51:33 +00:00
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
|
|
rdw = { package = "rdw4", version = "0.1", features = ["bindings"] }
|
|
|
|
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
2024-05-23 14:54:14 +00:00
|
|
|
uds_windows = "1.1.0"
|
2022-11-16 18:58:51 +00:00
|
|
|
windows = { version = "0.43.0", features = ["Win32_System_Memory", "Win32_Foundation"] }
|
2023-07-22 08:51:33 +00:00
|
|
|
rdw = { package = "rdw4", version = "0.1", features = ["bindings"], default-features = false }
|