Skip to content

Commit

Permalink
Fix watchexec/cargo-watch#4: forgot to cfg(linux) a pub use
Browse files Browse the repository at this point in the history
  • Loading branch information
passcod committed Dec 20, 2014
1 parent f14e83f commit 55c8d7b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "notify"
version = "1.0.1"
authors = ["Félix Saparelli <felix@passcod.name>"]
version = "1.0.2"
authors = ["Félix Saparelli <me@passcod.name>"]

description = "Cross-platform filesystem notification library"
homepage = "/~https://github.com/passcod/rsnotify"
Expand Down
1 change: 1 addition & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

use std::io::IoError;
pub use self::op::Op;
#[cfg(target_os="linux")]
pub use self::inotify::INotifyWatcher;
pub use self::poll::PollWatcher;

Expand Down

0 comments on commit 55c8d7b

Please sign in to comment.