Showing with 346 additions and 379 deletions.
  1. +5 −5 Cargo.toml
  2. +2 −2 README.md
  3. +1 −0 src/lib.rs
  4. +317 −320 src/unix.rs
  5. +21 −20 src/windows.rs
  6. +0 −32 tests/signal.rs
10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
[package]
name = "tokio-signal"
version = "0.1.1"
version = "0.1.2"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
license = "MIT/Apache-2.0"
repository = "https://github.com/alexcrichton/tokio-signal"
homepage = "https://github.com/alexcrichton/tokio-signal"
documentation = "https://alexcrichton.github.io/tokio-signal"
documentation = "https://docs.rs/tokio-signal/0.1"
description = """
An implementation of an asynchronous Unix signal handling backed futures.
"""

[dependencies]
tokio-core = "0.1"
futures = "0.1"
tokio-core = "0.1.4"
futures = "0.1.7"

[target.'cfg(unix)'.dependencies]
tokio-uds = "0.1"
libc = "0.2"
mio = "0.6"
mio-uds = "0.6"

[target.'cfg(windows)'.dependencies]
winapi = "0.2"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ An implementation of Unix signal handling for Tokio

[![Build Status](https://travis-ci.org/alexcrichton/tokio-signal.svg?branch=master)](https://travis-ci.org/alexcrichton/tokio-signal)

[Documentation](https://alexcrichton.github.io/tokio-signal)
[Documentation](https://docs.rs/tokio-signal)

## Usage

First, add this to your `Cargo.toml`:

```toml
[dependencies]
tokio-signal = { git = "https://github.com/alexcrichton/tokio-signal" }
tokio-signal = "0.1"
```

Next, add this to your crate:
Expand Down
1 change: 1 addition & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
//! > It's planned that this will be bound and exported outside the
//! > `unix` module in the future!

#![doc(html_root_url = "https://docs.rs/tokio-signal/0.1")]
#![deny(missing_docs)]

#[macro_use]
Expand Down
Loading