Files
tokio/tokio-signal/Cargo.toml
T

44 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:
# - Remove path dependencies
2018-10-23 22:00:49 -07:00
# - Update html_root_url.
# - Update doc url
# - Cargo.toml
# - README.md
2018-10-23 22:00:49 -07:00
# - Update CHANGELOG.md.
# - Create "v0.2.x" git tag.
2019-03-22 13:55:48 -07:00
version = "0.2.8"
authors = ["Tokio Contributors <[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"
2019-03-22 13:55:48 -07:00
documentation = "https://docs.rs/tokio-signal/0.2.8/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"
tokio-reactor = "0.1.0"
tokio-executor = "0.1.0"
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"
2019-04-29 04:12:40 +02:00
signal-hook-registry = "~1"
2016-09-08 17:13:18 -07:00
[dev-dependencies]
tokio = "0.1.8"
2018-01-03 08:41:41 -08:00
[target.'cfg(windows)'.dependencies.winapi]
version = "0.3"
features = ["consoleapi", "minwindef", "wincon"]