Skip to content

Commit

Permalink
Re-export udev::EventType.
Browse files Browse the repository at this point in the history
Signed-off-by: Jean Pierre Dudey <jeandudey@hotmail.com>
  • Loading branch information
jeandudey committed May 25, 2018
1 parent 22c4818 commit cb4f9b2
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion mio-udev/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mio-udev"
version = "0.1.0"
version = "0.1.1"
authors = ["Jean Pierre Dudey <jeandudey@hotmail.com>"]
license = "Apache-2.0/MIT"
description = "MIO support for udev device events."
Expand Down
4 changes: 2 additions & 2 deletions mio-udev/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ extern crate udev;
extern crate mio;
extern crate libc;

pub use udev::{Attribute, Attributes, Context, Device, Event, Property,
Properties, Error as UdevError};
pub use udev::{Attribute, Attributes, Context, Device, Event, EventType,
Property, Properties, Error as UdevError};

mod util;

Expand Down
4 changes: 2 additions & 2 deletions tokio-udev/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tokio-udev"
version = "0.1.0"
version = "0.1.1"
authors = ["Jean Pierre Dudey <jeandudey@hotmail.com>"]
license = "Apache-2.0/MIT"
description = "Tokio support for udev device events."
Expand All @@ -12,7 +12,7 @@ documentation = "https://docs.rs/tokio-udev"
libc = "0.2"

mio = "0.6"
mio-udev = { path = "../mio-udev", version = "0.1" }
mio-udev = { path = "../mio-udev", version = "0.1.1" }

futures = "0.1"
tokio-reactor = "0.1"
Expand Down
4 changes: 2 additions & 2 deletions tokio-udev/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ extern crate mio_udev;
extern crate futures;
extern crate tokio_reactor;

pub use mio_udev::{Attribute, Attributes, Context, Device, Event, Property,
Properties, UdevError};
pub use mio_udev::{Attribute, Attributes, Context, Device, Event, EventType,
Property, Properties, UdevError};

use std::io;
use std::ffi::OsStr;
Expand Down

0 comments on commit cb4f9b2

Please sign in to comment.