Skip to content

Commit

Permalink
Normalise dependency specifications
Browse files Browse the repository at this point in the history
  • Loading branch information
passcod committed Dec 6, 2015
1 parent 85c8532 commit d3af0af
Showing 1 changed file with 19 additions and 17 deletions.
36 changes: 19 additions & 17 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,29 +37,31 @@ time = "*"
filetime = "*"
walker = "^1.0.0"

[target.x86_64-unknown-linux-gnu.dependencies.inotify]
version = "^0.1"
[target.x86_64-unknown-linux-gnu.dependencies]
inotify = "^0.1"

[target.x86_64-unknown-linux-musl.dependencies.inotify]
version = "^0.1"
[target.x86_64-unknown-linux-musl.dependencies]
inotify = "^0.1"

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

[target.x86_64-apple-darwin.dependencies.fsevent-sys]
version = "^0.1"
[target.i686-pc-windows-gnu.dependencies]
winapi = "^0.2"
kernel32-sys = "^0.2.1"

[target.i686-pc-windows-gnu]
dependencies = { winapi = "0.2", kernel32-sys = "0.2.1" }
[target.x86_64-pc-windows-gnu.dependencies]
winapi = "^0.2"
kernel32-sys = "^0.2.1"

[target.x86_64-pc-windows-gnu]
dependencies = { winapi = "0.2", kernel32-sys = "0.2.1" }
[target.i686-pc-windows-msvc.dependencies]
winapi = "^0.2"
kernel32-sys = "^0.2.1"

[target.i686-pc-windows-msvc]
dependencies = { winapi = "0.2", kernel32-sys = "0.2.1" }

[target.x86_64-pc-windows-msvc]
dependencies = { winapi = "0.2", kernel32-sys = "0.2.1" }
[target.x86_64-pc-windows-msvc.dependencies]
winapi = "^0.2"
kernel32-sys = "^0.2.1"

[dev-dependencies]
tempfile = "^1.1.0"
Expand Down

0 comments on commit d3af0af

Please sign in to comment.