Files
tokio/tokio-timer/Cargo.toml
T

47 lines
1.2 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.
2019-08-29 12:59:10 -07:00
version = "0.3.0-alpha.4"
2019-05-14 10:27:36 -07:00
edition = "2018"
authors = ["Tokio Contributors <[email protected]>"]
2018-03-28 22:26:47 -07:00
license = "MIT"
readme = "README.md"
2019-08-29 12:59:10 -07:00
documentation = "https://docs.rs/tokio-timer/0.3.0-alpha.4/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-06-24 12:34:30 -07:00
[features]
async-traits = []
2019-06-24 12:34:30 -07:00
2018-03-28 22:26:47 -07:00
[dependencies]
2019-08-29 12:59:10 -07:00
tokio-executor = { version = "=0.2.0-alpha.4", path = "../tokio-executor" }
tokio-sync = { version = "=0.2.0-alpha.4", path = "../tokio-sync" }
futures-core-preview = "=0.3.0-alpha.18"
futures-util-preview = "=0.3.0-alpha.18"
2018-03-28 22:26:47 -07:00
2019-06-30 08:48:53 -07:00
crossbeam-utils = "0.6.0"
# Backs `DelayQueue`
slab = "0.4.1"
2019-06-24 12:34:30 -07:00
# optionals
2018-03-28 22:26:47 -07:00
[dev-dependencies]
2019-08-29 12:59:10 -07:00
tokio = { version = "0.2.0-alpha.4", path = "../tokio" }
tokio-sync = { version = "0.2.0-alpha.4", path = "../tokio-sync", features = ["async-traits"] }
tokio-test = { version = "0.2.0-alpha.4", path = "../tokio-test" }
rand = "0.7"
[package.metadata.docs.rs]
all-features = true