mirror of
https://gitlab.com/marcandre.lureau/qemu-display.git
synced 2024-11-09 17:40:05 +00:00
a2185be540
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
30 lines
924 B
TOML
30 lines
924 B
TOML
[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
|
|
[features]
|
|
qmp = ["qemu-display/qmp"]
|
|
|
|
[dependencies]
|
|
log = "0.4"
|
|
pretty_env_logger = "0.4"
|
|
once_cell = "1.5"
|
|
zbus.workspace = true
|
|
qemu-display.workspace = true
|
|
keycodemap.workspace = true
|
|
futures-util = "0.3"
|
|
futures = "0.3"
|
|
async-trait = "0.1"
|
|
tracing-subscriber = { version = "0.3.11", features = ["env-filter" , "fmt"], default-features = false }
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
rdw = { package = "rdw4", version = "0.1", features = ["bindings"] }
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
uds_windows = "1.0.2"
|
|
windows = { version = "0.43.0", features = ["Win32_System_Memory", "Win32_Foundation"] }
|
|
rdw = { package = "rdw4", version = "0.1", features = ["bindings"], default-features = false }
|