Files
tokio/tokio-timer/Cargo.toml
T

30 lines
702 B
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:
# - Update html_root_url.
# - Update CHANGELOG.md.
# - Create "v0.2.x" git tag.
2018-08-06 20:36:50 -07:00
version = "0.2.5"
2018-03-28 22:26:47 -07:00
authors = ["Carl Lerche <[email protected]>"]
license = "MIT"
readme = "README.md"
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
documentation = "https://docs.rs/tokio-timer"
description = """
Timer facilities for Tokio
"""
[dependencies]
futures = "0.1.19"
tokio-executor = { version = "0.1.1", path = "../tokio-executor" }
2018-08-21 21:48:40 -07:00
crossbeam-utils = "0.5.0"
2018-03-28 22:26:47 -07:00
# Backs `DelayQueue`
slab = "0.4.1"
2018-03-28 22:26:47 -07:00
[dev-dependencies]
2018-08-10 21:37:45 +02:00
rand = "0.5"
tokio-mock-task = "0.1.0"
tokio = { version = "0.1.7", path = "../" }