Skip to content

Commit

Permalink
Merge pull request #14 from piegamesde/master
Browse files Browse the repository at this point in the history
Update dependencies
  • Loading branch information
allie-wake-up authored Dec 8, 2022
2 parents dbb6bb0 + 4e256c3 commit 5d4e1a1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ edition = "2018"
readme = "README.md"

[target.'cfg(windows)'.dependencies]
clipboard-win = {version = "4.0.2", features=["std"]}
clipboard-win = {version = "4.4", features=["std"]}

[target.'cfg(target_os = "macos")'.dependencies]
objc = "0.2"
objc_id = "0.1"
objc-foundation = "0.1"

[target.'cfg(all(unix, not(any(target_os="macos", target_os="android", target_os="emscripten"))))'.dependencies]
wl-clipboard-rs = "0.6"
x11-clipboard = "0.6"
wl-clipboard-rs = "0.7"
x11-clipboard = "0.7"
3 changes: 1 addition & 2 deletions src/x11_clipboard.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,8 @@ use crate::common::*;
use crate::Result;
use std::marker::PhantomData;
use std::time::Duration;
use x11_clipboard_crate::xcb::x::Atom;
use x11_clipboard_crate::Atoms;
use x11_clipboard_crate::Clipboard as X11Clipboard;
use x11_clipboard_crate::{Atom, Atoms};

pub trait Selection {
fn atom(atoms: &Atoms) -> Atom;
Expand Down

0 comments on commit 5d4e1a1

Please sign in to comment.