mirror of
https://gitlab.com/marcandre.lureau/qemu-display.git
synced 2025-01-30 15:25:15 +00:00
qemu-vnc: fix build, use workspace deps
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
This commit is contained in:
parent
aa10b12bcb
commit
67b334e5bb
@ -10,6 +10,11 @@ members = [
|
||||
default-members = ["qemu-rdw"]
|
||||
resolver = "2"
|
||||
|
||||
[workspace.dependencies]
|
||||
qemu-display = { path = "qemu-display", version = "0.1" }
|
||||
keycodemap = { path = "keycodemap", version = "0.1" }
|
||||
zbus = "4"
|
||||
|
||||
[patch.crates-io]
|
||||
zbus = { git = "https://github.com/dbus2/zbus.git" }
|
||||
zvariant = { git = "https://github.com/dbus2/zbus.git" }
|
||||
|
@ -13,7 +13,7 @@ qmp = ["dep:qapi", "dep:base64"]
|
||||
cfg-if = "1.0"
|
||||
log = "0.4"
|
||||
derivative = "2.2.0"
|
||||
zbus = "4"
|
||||
zbus.workspace = true
|
||||
zvariant = { version = "4", features = ["serde_bytes"] }
|
||||
libc = "0.2.86"
|
||||
enumflags2 = { version = "0.7", features = ["serde"] }
|
||||
|
@ -7,11 +7,11 @@ edition = "2018"
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[dependencies]
|
||||
qemu-display = { path = "../qemu-display" }
|
||||
keycodemap = { path ="../keycodemap" }
|
||||
qemu-display.workspace = true
|
||||
keycodemap.workspace = true
|
||||
vnc = "0.4.0"
|
||||
clap = { version = "3.2", features = ["derive"] }
|
||||
zbus = { version = "3.0" }
|
||||
zbus.workspace = true
|
||||
libc = "0.2.86"
|
||||
image = "0.23.14"
|
||||
derivative = "2.2.0"
|
||||
|
@ -287,6 +287,10 @@ impl ConsoleListenerHandler for ConsoleListener {
|
||||
fn disconnected(&mut self) {
|
||||
dbg!();
|
||||
}
|
||||
|
||||
fn interfaces(&self) -> Vec<String> {
|
||||
vec![]
|
||||
}
|
||||
}
|
||||
|
||||
#[derive(Debug)]
|
||||
|
Loading…
x
Reference in New Issue
Block a user