From ff24a392147fbef99042adbec0e74704d87bfda2 Mon Sep 17 00:00:00 2001 From: Richard Acayan Date: Thu, 17 Oct 2024 21:17:35 -0400 Subject: [PATCH] Cargo.toml: add remotedesktop support The ashpd and reis dependencies are required for using an xdg-desktop-portal to connect to an Emulated Input Server. Add them to prepare for better support on KDE. --- Cargo.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 97cd8e8..9e82e3b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,6 +5,7 @@ edition = "2018" license = "GPL-3.0-only" [dependencies] +ashpd = { version = "0.9", features = ["wayland"] } fontconfig = "0.9" # Disable freetype-sys, as it vendors libfreetype2 while fontconfig dynamically # links to it. Large dependencies should not be duplicated. @@ -13,6 +14,7 @@ imgref = "1.10" libc = "0.2" memmap2 = "0.9" polling = "3.7" +reis = "0.3" rgb = "0.8" tokio = { version = "1.40", features = ["macros", "rt"] } wayland-backend = "0.3"