Files
tokio/tokio-signal/Cargo.toml
T

42 lines
1.1 KiB
TOML
Raw Normal View History

2016-09-06 23:00:17 -07:00
[package]
name = "tokio-signal"
2018-10-23 22:00:49 -07:00
# When releasing to crates.io:
# - Update html_root_url.
# - Update CHANGELOG.md.
# - Update doc URL.
# - Create "v0.2.x" git tag.
2018-11-21 17:11:31 -08:00
version = "0.2.7"
2016-09-06 23:00:17 -07:00
authors = ["Alex Crichton <[email protected]>"]
2018-09-07 09:56:40 +02:00
license = "MIT"
2018-09-01 11:18:51 +02:00
repository = "https://github.com/tokio-rs/tokio"
homepage = "https://github.com/tokio-rs/tokio"
2018-11-21 17:11:31 -08:00
documentation = "https://docs.rs/tokio-signal/0.2.7/tokio_signal"
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]
2018-09-01 11:18:51 +02:00
travis-ci = { repository = "tokio-rs/tokio" }
appveyor = { repository = "carllerche/tokio", id = "s83yxhy9qeb58va7" }
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"
2018-09-01 11:18:51 +02:00
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" }
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"
signal-hook = "0.1"
2016-09-08 17:13:18 -07:00
[dev-dependencies]
2018-09-02 11:32:50 +02:00
tokio = { version = "0.1.8", path = ".." }
2018-01-03 08:41:41 -08:00
[target.'cfg(windows)'.dependencies.winapi]
version = "0.3"
features = ["minwindef", "wincon"]