mirror of
https://gitlab.com/marcandre.lureau/qemu-display.git
synced 2025-04-14 08:44:46 +00:00
tosquash: use zbus from qemu-display
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
This commit is contained in:
parent
28241a3f88
commit
1e2cf6472a
@ -15,7 +15,6 @@ rustls-pemfile = "1.0"
|
||||
tokio = { version = "1.28", features = ["full"] }
|
||||
tokio-rustls = "0.24"
|
||||
anyhow = "1.0"
|
||||
zbus = { version = "3.0" }
|
||||
clap = { version = "3.2", features = ["derive"] }
|
||||
async-trait = "0.1"
|
||||
ironrdp = { git = "https://github.com/Devolutions/IronRDP", features = ["server"] }
|
||||
|
@ -1,3 +1,5 @@
|
||||
use qemu_display::zbus;
|
||||
|
||||
mod args;
|
||||
mod server;
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
use anyhow::Result;
|
||||
use ironrdp::connector::DesktopSize;
|
||||
use qemu_display::{Console, ConsoleListenerHandler, Cursor, MouseSet, Scanout, Update};
|
||||
use qemu_display::{zbus, Console, ConsoleListenerHandler, Cursor, MouseSet, Scanout, Update};
|
||||
|
||||
use ironrdp::server::{BitmapUpdate, DisplayUpdate, PixelFormat, PixelOrder, RdpServerDisplay};
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
use qemu_display::{Console, KeyboardProxy, MouseButton, MouseProxy};
|
||||
use qemu_display::{zbus, Console, KeyboardProxy, MouseButton, MouseProxy};
|
||||
|
||||
use ironrdp::server::{KeyboardEvent, MouseEvent, RdpServerInputHandler};
|
||||
|
||||
|
@ -1,11 +1,11 @@
|
||||
mod display;
|
||||
mod input;
|
||||
|
||||
use std::{fs::File, io::BufReader, sync::Arc};
|
||||
|
||||
use anyhow::Error;
|
||||
use qemu_display::zbus;
|
||||
use rustls::ServerConfig;
|
||||
use rustls_pemfile::{certs, pkcs8_private_keys};
|
||||
use std::{fs::File, io::BufReader, sync::Arc};
|
||||
use tokio_rustls::TlsAcceptor;
|
||||
|
||||
use ironrdp::server::RdpServer;
|
||||
|
Loading…
x
Reference in New Issue
Block a user