Skip to content

Commit

Permalink
Update to futures alpha.17
Browse files Browse the repository at this point in the history
  • Loading branch information
cramertj committed Aug 2, 2019
1 parent 1dc7331 commit 806320d
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion examples/01_02_why_async/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ edition = "2018"
[lib]

[dev-dependencies]
futures-preview = { version = "=0.3.0-alpha.16", features = ["async-await", "nightly"] }
futures-preview = { version = "=0.3.0-alpha.17", features = ["async-await", "nightly"] }
2 changes: 1 addition & 1 deletion examples/01_04_async_await_primer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ edition = "2018"
[lib]

[dev-dependencies]
futures-preview = { version = "=0.3.0-alpha.16", features = ["async-await", "nightly"] }
futures-preview = { version = "=0.3.0-alpha.17", features = ["async-await", "nightly"] }
2 changes: 1 addition & 1 deletion examples/01_05_http_server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ edition = "2018"
# for writing async code. Enable the "compat" feature to include the
# functions for using futures 0.3 and async/await with the Hyper library,
# which use futures 0.1.
futures-preview = { version = "=0.3.0-alpha.16", features = ["compat"] }
futures-preview = { version = "=0.3.0-alpha.17", features = ["compat"] }

# Hyper is an asynchronous HTTP library. We'll use it to power our HTTP
# server and to make HTTP requests.
Expand Down
2 changes: 1 addition & 1 deletion examples/02_03_timer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ edition = "2018"
[lib]

[dependencies]
futures-preview = { version = "=0.3.0-alpha.16", features = ["async-await", "nightly"] }
futures-preview = { version = "=0.3.0-alpha.17", features = ["async-await", "nightly"] }
2 changes: 1 addition & 1 deletion examples/02_04_executor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ edition = "2018"
[lib]

[dependencies]
futures-preview = { version = "=0.3.0-alpha.16" }
futures-preview = { version = "=0.3.0-alpha.17" }
timer_future = { package = "02_03_timer", path = "../02_03_timer" }
2 changes: 1 addition & 1 deletion examples/03_01_async_await/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ edition = "2018"
[lib]

[dev-dependencies]
futures-preview = { version = "=0.3.0-alpha.16", features = ["async-await", "nightly"] }
futures-preview = { version = "=0.3.0-alpha.17", features = ["async-await", "nightly"] }
2 changes: 1 addition & 1 deletion examples/05_01_streams/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ edition = "2018"
[lib]

[dev-dependencies]
futures-preview = { version = "=0.3.0-alpha.16", features = ["async-await", "nightly"] }
futures-preview = { version = "=0.3.0-alpha.17", features = ["async-await", "nightly"] }
2 changes: 1 addition & 1 deletion examples/05_02_iteration_and_concurrency/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ edition = "2018"
[lib]

[dev-dependencies]
futures-preview = { version = "=0.3.0-alpha.16", features = ["async-await", "nightly"] }
futures-preview = { version = "=0.3.0-alpha.17", features = ["async-await", "nightly"] }
2 changes: 1 addition & 1 deletion src/02_execution/04_executor.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ authors = ["XYZ Author"]
edition = "2018"

[dependencies]
futures-preview = "=0.3.0-alpha.16"
futures-preview = "=0.3.0-alpha.17"
```

Next, we need the following imports at the top of `src/main.rs`:
Expand Down

0 comments on commit 806320d

Please sign in to comment.