Skip to content

Commit

Permalink
Merge pull request #715 from reduf/replace-crate-capture-by-copypasta
Browse files Browse the repository at this point in the history
Replaced crate "clipboard" by "copypasta"
  • Loading branch information
dbr committed Mar 22, 2023
2 parents 9ff2eab + 27f7d2f commit 7bade08
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion imgui-examples/Cargo.toml
Expand Up @@ -9,7 +9,7 @@ license = "MIT/Apache-2.0"
publish = false

[dev-dependencies]
clipboard = "0.5"
copypasta = "0.8"
glium = { version = "0.32.1", default-features = true }
image = "0.23"
imgui = { path = "../imgui", features = ["tables-api"] }
Expand Down
2 changes: 1 addition & 1 deletion imgui-examples/examples/support/clipboard.rs
@@ -1,4 +1,4 @@
use clipboard::{ClipboardContext, ClipboardProvider};
use copypasta::{ClipboardContext, ClipboardProvider};
use imgui::ClipboardBackend;

pub struct ClipboardSupport(pub ClipboardContext);
Expand Down

0 comments on commit 7bade08

Please sign in to comment.