1
0
mirror of https://github.com/emilk/egui.git synced 2026-09-02 06:40:06 -04:00

Update arboard, fixing copy-paste on X11 (#2238)

* Revert "Fix copy-paste on Windows (#2120)"

This reverts commit f61044cef7.

* Update arboard to 3.2
This commit is contained in:
Emil Ernerfeldt
2022-11-07 09:54:42 +01:00
committed by GitHub
parent 22a917c00a
commit 17501d7e3e
3 changed files with 13 additions and 6 deletions

View File

@@ -46,7 +46,9 @@ wayland = ["winit/wayland"]
egui = { version = "0.19.0", path = "../egui", default-features = false, features = [
"tracing",
] }
instant = { version = "0.1", features = ["wasm-bindgen"] } # We use instant so we can (maybe) compile for web
instant = { version = "0.1", features = [
"wasm-bindgen",
] } # We use instant so we can (maybe) compile for web
tracing = { version = "0.1", default-features = false, features = ["std"] }
winit = { version = "0.27.2", default-features = false }
@@ -67,4 +69,4 @@ webbrowser = { version = "0.8", optional = true }
smithay-clipboard = { version = "0.6.3", optional = true }
[target.'cfg(not(target_os = "android"))'.dependencies]
arboard = { version = "3.0", optional = true, default-features = false }
arboard = { version = "3.2", optional = true, default-features = false }