Skip to content

Commit

Permalink
Merge pull request #75 from nicokoch/target-deps
Browse files Browse the repository at this point in the history
Simplify target dependencies in Cargo.toml
  • Loading branch information
passcod committed Jun 5, 2016
2 parents 5359fa4 + f0468a4 commit 7c21b50
Showing 1 changed file with 3 additions and 31 deletions.
34 changes: 3 additions & 31 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,43 +37,15 @@ time = "^0.1.34"
filetime = "^0.1.9"
walkdir = "^0.1.5"

[target.x86_64-unknown-linux-gnu.dependencies]
[target.'cfg(target_os="linux")'.dependencies]
inotify = "^0.2.3"
mio = "^0.5.0"

[target.i686-unknown-linux-gnu.dependencies]
inotify = "^0.2.3"
mio = "^0.5.0"

[target.x86_64-unknown-linux-musl.dependencies]
inotify = "^0.2.3"
mio = "^0.5.0"

[target.i686-unknown-linux-musl.dependencies]
inotify = "^0.2.3"
mio = "^0.5.0"

[target.i686-apple-darwin.dependencies]
[target.'cfg(target_os="macos")'.dependencies]
fsevent = "^0.2.11"
fsevent-sys = "^0.1.3"

[target.x86_64-apple-darwin.dependencies]
fsevent = "^0.2.11"
fsevent-sys = "^0.1.3"

[target.i686-pc-windows-gnu.dependencies]
winapi = "^0.2.5"
kernel32-sys = "^0.2.1"

[target.x86_64-pc-windows-gnu.dependencies]
winapi = "^0.2.5"
kernel32-sys = "^0.2.1"

[target.i686-pc-windows-msvc.dependencies]
winapi = "^0.2.5"
kernel32-sys = "^0.2.1"

[target.x86_64-pc-windows-msvc.dependencies]
[target.'cfg(windows)'.dependencies]
winapi = "^0.2.5"
kernel32-sys = "^0.2.1"

Expand Down

0 comments on commit 7c21b50

Please sign in to comment.