diff --git a/Cargo.toml b/Cargo.toml index 6f60830..6ad3012 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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" diff --git a/src/lib.rs b/src/lib.rs index bf7bbf3..d9713b9 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -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;