From 4bd0f74db59e0bbaa765eb4753817071f3c8a97b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A9ctor=20Ram=C3=B3n=20Jim=C3=A9nez?= Date: Tue, 13 Feb 2024 02:48:08 +0100 Subject: [PATCH] Require new patched dependencies in root crate --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index dfe530f..d0fb561 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -22,8 +22,8 @@ clipboard-win = { version = "5.0", features = ["std"] } clipboard_macos = { version = "0.1", path = "./macos" } [target.'cfg(all(unix, not(any(target_os="macos", target_os="android", target_os="emscripten", target_os="ios", target_os="redox"))))'.dependencies] -clipboard_x11 = { version = "0.4", path = "./x11" } -clipboard_wayland = { version = "0.2", path = "./wayland" } +clipboard_x11 = { version = "0.4.2", path = "./x11" } +clipboard_wayland = { version = "0.2.2", path = "./wayland" } [dev-dependencies] rand = "0.8"