Skip to content

Commit

Permalink
Merge pull request #16 from rust-amplify/fix/timer
Browse files Browse the repository at this point in the history
Fix timer
  • Loading branch information
dr-orlovsky authored Feb 21, 2023
2 parents 0501308 + d8e2cc2 commit 1d66751
Show file tree
Hide file tree
Showing 5 changed files with 321 additions and 198 deletions.
82 changes: 53 additions & 29 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "io-reactor"
version = "0.1.0"
version = "0.1.1"
description = "Concurrent I/O resource management using reactor pattern"
authors = [
"Dr. Maxim Orlovsky <[email protected]>",
Expand All @@ -19,7 +19,7 @@ readme = "README.md"
name = "reactor"

[dependencies]
amplify = "4.0.0-beta.1"
amplify = { version = "4.0.0-beta.17", features = ["hex"] }
crossbeam-channel = "0.5.6"
popol = { version = "2.1.0", optional = true }
polling = { version = "2.4.0", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,6 @@ mod resource;
mod timeouts;

pub use resource::{Io, Resource, ResourceId, WriteAtomic, WriteError};
pub use timeouts::TimeoutManager;
pub use timeouts::{Timer, Timestamp};

pub use self::reactor::{Action, Controller, Error, Handler, Reactor, Runtime};
Loading

0 comments on commit 1d66751

Please sign in to comment.