https://github.com/carllerche/eventual
A future & stream abstraction for Rust
https://github.com/carllerche/eventual
Last synced: about 1 year ago
JSON representation
A future & stream abstraction for Rust
- Host: GitHub
- URL: https://github.com/carllerche/eventual
- Owner: carllerche
- License: mit
- Created: 2015-03-31T19:59:54.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2016-08-24T00:40:57.000Z (over 9 years ago)
- Last Synced: 2024-10-13T13:10:44.829Z (over 1 year ago)
- Language: Rust
- Size: 1.24 MB
- Stars: 241
- Watchers: 17
- Forks: 18
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome - carllerche/eventual - A future & stream abstraction for Rust (<a name="Rust"></a>Rust)
README
# This crate is deprecated!
This crate is deprecated in favor of [futures](https://crates.io/crates/futures).
# Eventual - Futures & Streams for Rust
Eventual provides a Future & Stream abstraction for Rust as well as a
number of computation builders to operate on them.
[](https://travis-ci.org/carllerche/eventual)
- [API documentation](http://carllerche.github.io/eventual/eventual/index.html)
## Usage
To use `Eventual`, first add this to your `Cargo.toml`:
```toml
[dependencies.eventual]
git = "https://github.com/carllerche/eventual"
```
Then, add this to your crate root:
```rust
extern crate eventual;
```