Skip to content

Commit

Permalink
Fix up Cargo.toml, remove unnecessary user32-sys dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
vvuk committed Oct 6, 2016
1 parent 18faf08 commit d40aa23
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
5 changes: 2 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,5 @@ uuid = {version = "0.3", features = ["v4"]}
crossbeam = "0.2"

[target.'cfg(target_os = "windows")'.dependencies]
winapi = "*"
user32-sys = "*"
kernel32-sys = "*"
winapi = "0.2"
kernel32-sys = "0.2"
2 changes: 0 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,6 @@ extern crate uuid;
extern crate winapi;
#[cfg(all(not(feature = "force-inprocess"), target_os = "windows"))]
extern crate kernel32;
#[cfg(all(not(feature = "force-inprocess"), target_os = "windows"))]
extern crate user32;

pub mod ipc;
pub mod platform;
Expand Down

0 comments on commit d40aa23

Please sign in to comment.