mirror of
https://github.com/tokio-rs/tokio.git
synced 2025-09-25 12:00:35 +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-io",
|
||||
"tokio-reactor",
|
||||
"tokio-signal",
|
||||
"tokio-threadpool",
|
||||
"tokio-timer",
|
||||
"tokio-tcp",
|
||||
|
@ -3,8 +3,8 @@ name = "tokio-signal"
|
||||
version = "0.2.5"
|
||||
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"
|
||||
repository = "https://github.com/tokio-rs/tokio"
|
||||
homepage = "https://github.com/tokio-rs/tokio"
|
||||
documentation = "https://docs.rs/tokio-signal/0.2"
|
||||
description = """
|
||||
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"]
|
||||
|
||||
[badges]
|
||||
travis-ci = { repository = "alexcrichton/tokio-signal" }
|
||||
appveyor = { repository = "alexcrichton/tokio-signal" }
|
||||
travis-ci = { repository = "tokio-rs/tokio" }
|
||||
appveyor = { repository = "carllerche/tokio", id = "s83yxhy9qeb58va7" }
|
||||
|
||||
[dependencies]
|
||||
futures = "0.1.11"
|
||||
mio = "0.6.14"
|
||||
tokio-reactor = "0.1.0"
|
||||
tokio-executor = "0.1.0"
|
||||
tokio-io = "0.1"
|
||||
tokio-reactor = { version = "0.1.0", path = "../tokio-reactor" }
|
||||
tokio-executor = { version = "0.1.0", path = "../tokio-executor" }
|
||||
tokio-io = { version = "0.1", path = "../tokio-io" }
|
||||
|
||||
[target.'cfg(unix)'.dependencies]
|
||||
libc = "0.2"
|
||||
@ -29,7 +29,7 @@ signal-hook = "0.1"
|
||||
|
||||
[dev-dependencies]
|
||||
tokio-core = "0.1.17"
|
||||
tokio = "0.1.6"
|
||||
tokio = { version = "0.1.6", path = ".." }
|
||||
|
||||
[target.'cfg(windows)'.dependencies.winapi]
|
||||
version = "0.3"
|
||||
|
@ -2,7 +2,13 @@
|
||||
|
||||
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)
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user