Merge pull request #483 from fufesou/refact/crate_libloading_x11

refact(crate): libloading x11
This commit is contained in:
RustDesk
2026-01-21 17:26:55 +08:00
committed by GitHub
2 changed files with 5 additions and 0 deletions

View File

@@ -66,6 +66,7 @@ rustls-native-certs = "0.8"
webpki-roots = "1.0.4"
async-recursion = "1.1"
webrtc = { version = "0.14.0", optional = true }
libloading = "0.8"
[target.'cfg(not(any(target_os = "android", target_os = "ios")))'.dependencies]
mac_address = "1.1"
@@ -96,3 +97,4 @@ sctk = { package = "smithay-client-toolkit", version = "0.20.0", default-feature
"calloop",
] }
users = { version = "0.11" }
x11 = "2.21"

View File

@@ -70,6 +70,9 @@ pub mod verifier;
pub use async_recursion;
#[cfg(target_os = "linux")]
pub use users;
pub use libloading;
#[cfg(target_os = "linux")]
pub use x11;
pub type SessionID = uuid::Uuid;