manual_future 0.1.1

A future that must be manually completed, similar to Java's CompletableFuture
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
[package]
name = "manual_future"
description = "A future that must be manually completed, similar to Java's CompletableFuture"
version = "0.1.1"
authors = ["Dominic Marcuse <dominic@marcuse.us>"]
edition = "2018"
repository = "https://github.com/dmarcuse/manual_future.git"
homepage = "https://github.com/dmarcuse/manual_future"
readme = "README.md"
license = "MIT"
keywords = [ "async", "await", "future", "completablefuture", "complete" ]
categories = [ "asynchronous", "concurrency" ]

[dependencies]
futures = { version = "0.3.1", features = [ "unstable", "bilock" ] }

[dev-dependencies]
tokio = { version = "0.2.1", features = [ "macros", "time", "rt-core" ] }