2021-01-23 16:03:56 +00:00
|
|
|
[package]
|
|
|
|
name = "qemu-display-listener"
|
|
|
|
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
|
|
|
|
|
|
|
|
[dependencies]
|
2021-02-28 19:34:52 +00:00
|
|
|
derivative = "2.2.0"
|
2021-01-23 16:03:56 +00:00
|
|
|
zbus = "2.0.0-beta"
|
2021-02-28 19:34:52 +00:00
|
|
|
zvariant = { version = "2.4.0", features = ["serde_bytes"] }
|
2021-01-23 16:03:56 +00:00
|
|
|
libc = "0.2.86"
|
|
|
|
glib = { git = "https://github.com/gtk-rs/gtk-rs", optional = true }
|
2021-02-09 20:53:06 +00:00
|
|
|
enumflags2 = { version = "0.6.4", features = ["serde"] }
|
2021-02-28 19:34:52 +00:00
|
|
|
serde = { version = "1.0.123", features = ["derive"] }
|
2021-02-09 20:53:06 +00:00
|
|
|
serde_repr = "0.1.6"
|
2021-02-28 19:34:52 +00:00
|
|
|
serde_bytes = "0.11.5"
|