either-future 1.0.0

An implementation of Future for Either<impl Future, impl Future>.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
either-future
=============

`EitherFuture` is a	`no_std` implementation of `Future` for `Either<impl Future, impl Future>`.

It is both implemented for `futures::Future` (0.1) and `core::future::Future`.

The minimum supported rust version is 1.15.0 if default features are disabled and only `futures01` is enabled.
Once `std_futue` is enabled, the minimum version is 1.36.0 which is where `core::future::Future` was introduced.

## Features
`futures01`: Implement `futures::Future` with version 0.1 of the `futures` library
`std_future`: Implement `core::future::Future`, enabled by default