futures-locks 0.3.1

Futures-aware lock primitives
Documentation
[package]
name = "futures-locks"
version = "0.3.1"
authors = ["Alan Somers <asomers@gmail.com>"]
license = "MIT/Apache-2.0"
readme = "README.md"
repository = "https://github.com/asomers/futures-locks"
description = """
Futures-aware lock primitives
"""
categories = ["asynchronous"]
documentation = "https://docs.rs/futures-locks"
exclude = [
	".gitignore",
	".travis.yml",
	"release.toml"
]
autotests = false

[features]
default = ["tokio"]
tokio = ["tokio-current-thread", "tokio-executor"]

[dependencies]
futures = "0.1.20"
tokio-current-thread = { version = "0.1.4", optional = true }
tokio-executor = { version = "0.1.5", optional = true }

[dev-dependencies]
# features, dependencies, dev-dependencies, and build-dependencies all share
# the same namespace. To avoid a clash with the `tokio` feature, rename the
# `tokio` dev-dependency. See https://github.com/rust-lang/cargo/issues/4866.
tokio_ = { version = "0.1.8", package = "tokio" }

[[test]]
name = "functional"
path = "tests/test.rs"