mirror of
https://github.com/tokio-rs/tokio.git
synced 2025-10-01 12:20:39 +00:00
signal: Link tokio-signal and tokio crates
References in the Cargo.toml, various links.
This commit is contained in:
parent
462882b356
commit
7e12f5c39e
@ -31,6 +31,7 @@ members = [
|
|||||||
"tokio-fs",
|
"tokio-fs",
|
||||||
"tokio-io",
|
"tokio-io",
|
||||||
"tokio-reactor",
|
"tokio-reactor",
|
||||||
|
"tokio-signal",
|
||||||
"tokio-threadpool",
|
"tokio-threadpool",
|
||||||
"tokio-timer",
|
"tokio-timer",
|
||||||
"tokio-tcp",
|
"tokio-tcp",
|
||||||
|
@ -3,8 +3,8 @@ name = "tokio-signal"
|
|||||||
version = "0.2.5"
|
version = "0.2.5"
|
||||||
authors = ["Alex Crichton <alex@alexcrichton.com>"]
|
authors = ["Alex Crichton <alex@alexcrichton.com>"]
|
||||||
license = "MIT/Apache-2.0"
|
license = "MIT/Apache-2.0"
|
||||||
repository = "https://github.com/alexcrichton/tokio-signal"
|
repository = "https://github.com/tokio-rs/tokio"
|
||||||
homepage = "https://github.com/alexcrichton/tokio-signal"
|
homepage = "https://github.com/tokio-rs/tokio"
|
||||||
documentation = "https://docs.rs/tokio-signal/0.2"
|
documentation = "https://docs.rs/tokio-signal/0.2"
|
||||||
description = """
|
description = """
|
||||||
An implementation of an asynchronous Unix signal handling backed futures.
|
An implementation of an asynchronous Unix signal handling backed futures.
|
||||||
@ -12,15 +12,15 @@ An implementation of an asynchronous Unix signal handling backed futures.
|
|||||||
categories = ["asynchronous"]
|
categories = ["asynchronous"]
|
||||||
|
|
||||||
[badges]
|
[badges]
|
||||||
travis-ci = { repository = "alexcrichton/tokio-signal" }
|
travis-ci = { repository = "tokio-rs/tokio" }
|
||||||
appveyor = { repository = "alexcrichton/tokio-signal" }
|
appveyor = { repository = "carllerche/tokio", id = "s83yxhy9qeb58va7" }
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
futures = "0.1.11"
|
futures = "0.1.11"
|
||||||
mio = "0.6.14"
|
mio = "0.6.14"
|
||||||
tokio-reactor = "0.1.0"
|
tokio-reactor = { version = "0.1.0", path = "../tokio-reactor" }
|
||||||
tokio-executor = "0.1.0"
|
tokio-executor = { version = "0.1.0", path = "../tokio-executor" }
|
||||||
tokio-io = "0.1"
|
tokio-io = { version = "0.1", path = "../tokio-io" }
|
||||||
|
|
||||||
[target.'cfg(unix)'.dependencies]
|
[target.'cfg(unix)'.dependencies]
|
||||||
libc = "0.2"
|
libc = "0.2"
|
||||||
@ -29,7 +29,7 @@ signal-hook = "0.1"
|
|||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
tokio-core = "0.1.17"
|
tokio-core = "0.1.17"
|
||||||
tokio = "0.1.6"
|
tokio = { version = "0.1.6", path = ".." }
|
||||||
|
|
||||||
[target.'cfg(windows)'.dependencies.winapi]
|
[target.'cfg(windows)'.dependencies.winapi]
|
||||||
version = "0.3"
|
version = "0.3"
|
||||||
|
@ -2,7 +2,13 @@
|
|||||||
|
|
||||||
An implementation of Unix signal handling for Tokio
|
An implementation of Unix signal handling for Tokio
|
||||||
|
|
||||||
[](https://travis-ci.org/alexcrichton/tokio-signal)
|
[![Travis Build Status][travis-badge]][travis-url]
|
||||||
|
[![Appveyor Build Status][appveyor-badge]][appveyor-url]
|
||||||
|
|
||||||
|
[travis-badge]: https://travis-ci.org/tokio-rs/tokio.svg?branch=master
|
||||||
|
[travis-url]: https://travis-ci.org/tokio-rs/tokio
|
||||||
|
[appveyor-badge]: https://ci.appveyor.com/api/projects/status/s83yxhy9qeb58va7/branch/master?svg=true
|
||||||
|
[appveyor-url]: https://ci.appveyor.com/project/carllerche/tokio/branch/master
|
||||||
|
|
||||||
[Documentation](https://docs.rs/tokio-signal)
|
[Documentation](https://docs.rs/tokio-signal)
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user