[dependencies.futures]
version = "0.3"
[dependencies.lazy_static]
version = "1.3"
[dev-dependencies.wasm-bindgen-test]
version = "0.3"
[lib]
name = "desync"
path = "src/lib.rs"
[package]
authors = ["Andrew Hunter <andrew@logicalshift.io>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["concurrency", "asynchronous", "algorithms", "data-structures"]
description = "A hassle-free data type for asynchronous programming"
documentation = "http://docs.rs/desync/"
edition = "2018"
homepage = "https://github.com/Logicalshift/desync"
keywords = ["async", "futures", "concurrency"]
license = "Apache-2.0"
name = "desync"
readme = "README.md"
repository = "https://github.com/Logicalshift/desync"
version = "0.9.0"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.num_cpus]
version = "1.10"
[[test]]
name = "desync"
path = "tests/desync.rs"
[[test]]
name = "desync_background_blocking"
path = "tests/desync_background_blocking.rs"
[[test]]
name = "pipe"
path = "tests/pipe.rs"
[[test]]
name = "races"
path = "tests/races.rs"
[[test]]
name = "timeout"
path = "tests/timeout.rs"