Skip to content

Commit

Permalink
2.5.4
Browse files Browse the repository at this point in the history
Version-specify all crates: comply with Crates.io’s new “no *” policy.
  • Loading branch information
passcod committed Jan 22, 2016
1 parent a019f6b commit 9f44843
Showing 1 changed file with 21 additions and 21 deletions.
42 changes: 21 additions & 21 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "notify"
version = "2.5.3"
version = "2.5.4"
authors = [
"Félix Saparelli <me@passcod.name>",
"Antti Keränen <detegr@gmail.com>",
Expand Down Expand Up @@ -30,49 +30,49 @@ keywords = [
]

[dependencies]
bitflags = "*"
libc = "*"
log = "*"
time = "*"
filetime = "*"
walkdir = "^0.1"
bitflags = "^0.4.0"
libc = "^0.2.4"
log = "^0.3.4"
time = "^0.1.34"
filetime = "^0.1.9"
walkdir = "^0.1.5"

[target.x86_64-unknown-linux-gnu.dependencies]
inotify = "^0.1"
mio = "^0.5"
inotify = "^0.1.12"
mio = "^0.5.0"

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

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

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

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

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

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

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

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

[dev-dependencies]
tempfile = "^1.1.0"
tempfile = "^2.0.1"
tempdir = "^0.3.4"

0 comments on commit 9f44843

Please sign in to comment.