Merge pull request #715 from reduf/replace-crate-capture-by-copypasta

Replaced crate "clipboard" by "copypasta"
This commit is contained in:
dbr/Ben 2023-03-22 23:13:29 +10:30 committed by GitHub
commit 7bade088b1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -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"] }

View File

@ -1,4 +1,4 @@
use clipboard::{ClipboardContext, ClipboardProvider};
use copypasta::{ClipboardContext, ClipboardProvider};
use imgui::ClipboardBackend;
pub struct ClipboardSupport(pub ClipboardContext);