Skip to content

Commit 51c8dea

Browse files
authored
Merge pull request #16 from kpp/update_rustc
Update rustc to nightly-2019-08-12
2 parents debc474 + 17de83d commit 51c8dea

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.travis.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
language: rust
22
sudo: false
33
rust:
4-
- nightly-2019-07-06
4+
- nightly-2019-08-12
55

66
os:
77
- linux
@@ -12,7 +12,7 @@ script:
1212
matrix:
1313
include:
1414
- os: linux
15-
rust: nightly-2019-07-06
15+
rust: nightly-2019-08-12
1616
sudo: required
1717
name: coverage
1818
addons: # needed for `cargo install cargo-travis`

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ like `FutureExt::map`, `TryFutureExt::and_then`...
1010

1111
# Requirements
1212

13-
Rust nightly-2019-07-06 for async_await, await_macro...
13+
Rust nightly-2019-08-12 for async_await.
1414

1515
# State
1616

examples/future.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![feature(async_await, await_macro)]
1+
#![feature(async_await)]
22

33
use futures_async_combinators::future::*;
44
use futures::executor;

examples/stream.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![feature(async_await, await_macro)]
1+
#![feature(async_await)]
22

33
use futures_async_combinators::stream::*;
44
use futures::executor;

0 commit comments

Comments
 (0)