Files
tokio/tokio-signal/Cargo.toml
T

51 lines
1.5 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.
2019-05-14 10:27:36 -07:00
# - Create "v0.3.x" git tag.
version = "0.3.0"
edition = "2018"
2019-03-22 13:55:48 -07:00
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"]
2019-05-14 10:27:36 -07:00
publish = false
2017-01-24 11:04:45 -08:00
[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]
futures-core-preview = "0.3.0-alpha.17"
futures-util-preview = "0.3.0-alpha.17"
lazy_static = "1"
2019-05-14 10:27:36 -07:00
tokio-reactor = { version = "0.2.0", path = "../tokio-reactor" }
tokio-executor = { version = "0.2.0", path = "../tokio-executor" }
tokio-io = { version = "0.2.0", path = "../tokio-io" }
2019-07-03 10:40:59 -07:00
tokio-sync = { version = "0.2.0", path = "../tokio-sync" }
2016-09-06 23:00:17 -07:00
[target.'cfg(unix)'.dependencies]
libc = "0.2"
mio = "0.6.14"
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]
2019-05-14 10:27:36 -07:00
tokio = { version = "0.2.0", path = "../tokio" }
tokio-timer = { version = "0.3.0", path = "../tokio-timer" }
2019-07-03 10:40:59 -07:00
tokio-sync = { version = "0.2.0", path = "../tokio-sync", features = ["async-traits"]}
2018-01-03 08:41:41 -08:00
[target.'cfg(windows)'.dependencies.winapi]
version = "0.3"
features = ["consoleapi", "minwindef", "wincon"]