async-timer 0.2.10

Timers for Rust async story
Documentation
[package]
name = "async-timer"
version = "0.2.10"
authors = ["Douman <douman@gmx.se>"]
edition = "2018"
description = "Timers for Rust async story"
readme = "README.md"
repository = "https://github.com/DoumanAsh/async-timer"
license = "Apache-2.0"
keywords = ["timer", "async", "wasm"]
include = [
    "**/*.rs",
    "Cargo.toml",
    "README.md"
]

[features]
default = []
# Requires alloc
no_std = []
# Enables usage of romio
romio_on = ["mio", "romio", "nix"]

[target.'cfg(any(target_os = "macos", target_os = "ios", unix))'.dependencies]
libc = "0.2.60"
mio = { version = "0.6", optional = true }
romio = { version = "0.3.0-alpha.5", optional = true }

#kqueue needs nix
[target.'cfg(any(target_os = "bitrig", target_os = "dragonfly", target_os = "freebsd", target_os = "ios", target_os = "macos", target_os = "netbsd", target_os = "openbsd"))'.dependencies]
nix = { version = "0.14", optional = true }

[target.'cfg(any(target_arch = "wasm32"))'.dependencies]
wasm-bindgen = "0.2"

[target.'cfg(windows)'.dependencies.winapi]
version = "0.3"
features = ["threadpoolapiset"]

[dev-dependencies.futures-preview]
version = "0.3.0-alpha.16"