Files
tokio/tokio-timer/Cargo.toml
T

54 lines
1.3 KiB
TOML
Raw Normal View History

2018-03-28 22:26:47 -07:00
[package]
name = "tokio-timer"
2018-06-06 20:14:35 -07:00
# When releasing to crates.io:
# - Remove path dependencies
2018-06-06 20:14:35 -07:00
# - Update html_root_url.
2019-01-25 10:20:09 -08:00
# - Update doc url
# - Cargo.toml
# - README.md
2018-06-06 20:14:35 -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"
2018-03-28 22:26:47 -07:00
authors = ["Carl Lerche <[email protected]>"]
license = "MIT"
readme = "README.md"
documentation = "https://docs.rs/tokio-timer/0.2.11/tokio_timer"
2018-04-02 11:06:22 -07:00
repository = "https://github.com/tokio-rs/tokio"
homepage = "https://github.com/tokio-rs/tokio"
2018-03-28 22:26:47 -07:00
description = """
Timer facilities for Tokio
"""
2019-05-14 10:27:36 -07:00
publish = false
2018-03-28 22:26:47 -07:00
2019-06-24 12:34:30 -07:00
[features]
# individual `Stream` impls if you so desire
delay-queue = ["futures-core-preview"]
interval = ["futures-core-preview"]
timeout-stream = ["futures-core-preview"]
throttle = ["futures-core-preview"]
# easily enable all `Stream` impls
streams = [
"delay-queue",
"interval",
"timeout-stream",
"throttle",
]
2018-03-28 22:26:47 -07:00
[dependencies]
2019-05-14 10:27:36 -07:00
tokio-executor = { version = "0.2.0", path = "../tokio-executor" }
2019-06-24 12:34:30 -07:00
tokio-sync = { version = "0.2.0", path = "../tokio-sync" }
2018-11-10 04:39:09 -05:00
crossbeam-utils = "0.6.0"
2018-03-28 22:26:47 -07:00
# Backs `DelayQueue`
slab = "0.4.1"
2019-06-24 12:34:30 -07:00
# optionals
futures-core-preview = { version = "0.3.0-alpha.16", optional = true }
2018-03-28 22:26:47 -07:00
[dev-dependencies]
2018-11-16 17:54:14 -05:00
rand = "0.6"
tokio-mock-task = "0.1.0"
2019-05-14 10:27:36 -07:00
tokio = { version = "0.2.0", path = "../tokio" }