diff --git a/Cargo.toml b/Cargo.toml index dfe43991..46da5fd6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -81,7 +81,7 @@ image = { version = "0.25", optional = true, default-features = false, features "tiff", ] } -[target.'cfg(all(unix, not(any(target_os="macos", target_os="android", target_os="emscripten"))))'.dependencies] +[target.'cfg(all(unix, not(any(target_os="macos", target_os="emscripten"))))'.dependencies] log = "0.4" x11rb = { version = "0.13" } wl-clipboard-rs = { version = "0.9.0", optional = true } diff --git a/src/lib.rs b/src/lib.rs index 47028273..d14bbeb8 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -20,7 +20,7 @@ mod platform; #[cfg(all( unix, - not(any(target_os = "macos", target_os = "android", target_os = "emscripten")), + not(any(target_os = "macos", target_os = "emscripten")), ))] pub use platform::{ClearExtLinux, GetExtLinux, LinuxClipboardKind, SetExtLinux}; @@ -392,7 +392,7 @@ mod tests { } #[cfg(all( unix, - not(any(target_os = "macos", target_os = "android", target_os = "emscripten")), + not(any(target_os = "macos", target_os = "emscripten")), ))] { use crate::{LinuxClipboardKind, SetExtLinux}; diff --git a/src/platform/mod.rs b/src/platform/mod.rs index 268eb47e..781c41d6 100644 --- a/src/platform/mod.rs +++ b/src/platform/mod.rs @@ -1,8 +1,8 @@ -#[cfg(all(unix, not(any(target_os = "macos", target_os = "android", target_os = "emscripten"))))] +#[cfg(all(unix, not(any(target_os = "macos", target_os = "emscripten"))))] mod linux; #[cfg(all( unix, - not(any(target_os = "macos", target_os = "android", target_os = "emscripten")) + not(any(target_os = "macos", target_os = "emscripten")) ))] pub use linux::*;