Skip to content

Update to futures 0.3.0-alpha.17 #10

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 9, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
language: rust
sudo: false
rust:
- nightly-2019-06-27
- nightly-2019-07-06

os:
- linux
Expand All @@ -12,7 +12,7 @@ script:
matrix:
include:
- os: linux
rust: nightly-2019-06-27
rust: nightly-2019-07-06
sudo: required
name: coverage
addons: # needed for `cargo install cargo-travis`
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ edition = "2018"
pin-utils = "=0.1.0-alpha.4"

[dependencies.futures]
version = "=0.3.0-alpha.16"
version = "=0.3.0-alpha.17"
package = "futures-preview"
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ like `FutureExt::map`, `TryFutureExt::and_then`...

# Requirements

Rust nightly-2019-06-27 for async_await, await_macro...
Rust nightly-2019-07-06 for async_await, await_macro...

# State

Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#![feature(async_await, gen_future, generators)]
#![feature(async_await, async_closure, gen_future, generators)]

pub mod future;
pub mod stream;