Skip to content

Commit

Permalink
rust-fmt applied
Browse files Browse the repository at this point in the history
  • Loading branch information
AW14Saurabh committed Aug 7, 2020
1 parent 3a74de1 commit 5d16678
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/bin.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,15 @@ use image::DynamicImage;
use structopt::StructOpt;
use syntect::easy::HighlightLines;
use syntect::util::LinesWithEndings;
#[cfg(target_os = "windows")]
use {
clipboard_win::{formats::RawData, set_clipboard},
image::ImageOutputFormat,
};
#[cfg(target_os = "macos")]
use {image::ImageOutputFormat, pasteboard::Pasteboard};
#[cfg(target_os = "linux")]
use {image::ImageOutputFormat, std::process::Command};
#[cfg(target_os = "windows")]
use {image::ImageOutputFormat, clipboard_win::{set_clipboard, formats::RawData}};

pub mod blur;
pub mod config;
Expand Down

0 comments on commit 5d16678

Please sign in to comment.