garcon 0.2.3

A collection of trait and classes to make your thread or async function wait.
Documentation
[package]
name = "garcon"
version = "0.2.3"
authors = ["Hans Larsen <hans@larsen.online>"]
edition = "2018"
description = "A collection of trait and classes to make your thread or async function wait."
homepage = "https://github.com/hansl/rs-delay"
repository = "https://github.com/hansl/rs-delay"
documentation = "https://docs.rs/garcon"

license = "Apache-2.0"
readme = "README.md"
categories = ["asynchronous", "no-std"]
keywords = ["delay", "waiter", "thread", "sleep", "timeout"]
include = ["Cargo.toml", "src", "README.md", "LICENSE"]

[dependencies]
futures-util = { version = "0.3.13", optional = true }

[dev-dependencies]
tokio = { version = "1.5.0", features = ["macros", "rt", "sync"] }

[features]
async = ["futures-util"]
no_std = []