Files
tokio/Cargo.toml
T

36 lines
881 B
TOML
Raw Normal View History

2016-09-06 23:00:17 -07:00
[package]
name = "tokio-signal"
2018-08-25 11:16:54 -07:00
version = "0.2.4"
2016-09-06 23:00:17 -07:00
authors = ["Alex Crichton <[email protected]>"]
license = "MIT/Apache-2.0"
repository = "https://github.com/alexcrichton/tokio-signal"
homepage = "https://github.com/alexcrichton/tokio-signal"
2018-08-12 17:17:25 -07:00
documentation = "https://docs.rs/tokio-signal/0.2"
2016-09-06 23:00:17 -07:00
description = """
An implementation of an asynchronous Unix signal handling backed futures.
"""
2017-01-24 11:04:45 -08:00
categories = ["asynchronous"]
[badges]
travis-ci = { repository = "alexcrichton/tokio-signal" }
appveyor = { repository = "alexcrichton/tokio-signal" }
2016-09-06 23:00:17 -07:00
[dependencies]
2017-03-09 09:06:37 -08:00
futures = "0.1.11"
2018-06-28 23:57:27 +01:00
mio = "0.6.14"
tokio-reactor = "0.1.0"
tokio-executor = "0.1.0"
2017-03-09 09:06:37 -08:00
tokio-io = "0.1"
2016-09-06 23:00:17 -07:00
[target.'cfg(unix)'.dependencies]
libc = "0.2"
2017-01-24 10:02:42 -08:00
mio-uds = "0.6"
2016-09-08 17:13:18 -07:00
[dev-dependencies]
tokio-core = "0.1.17"
2018-08-19 10:57:44 -06:00
tokio = "0.1.6"
2018-01-03 08:41:41 -08:00
[target.'cfg(windows)'.dependencies.winapi]
version = "0.3"
features = ["minwindef", "wincon"]