Skip to content
This repository was archived by the owner on Oct 30, 2019. It is now read-only.

Commit 796f8b9

Browse files
authored
Update dependencies (#117)
1 parent 3182ccb commit 796f8b9

File tree

6 files changed

+11
-14
lines changed

6 files changed

+11
-14
lines changed

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ default = ["native"]
1717
native = ["runtime-attributes/native", "runtime-native"]
1818

1919
[dependencies]
20-
futures-preview = "0.3.0-alpha.18"
20+
futures-preview = "0.3.0-alpha.19"
2121
runtime-attributes = { path = "runtime-attributes", version = "0.3.0-alpha.6", default-features = false }
2222
runtime-raw = { path = "runtime-raw", version = "0.3.0-alpha.5" }
2323
runtime-native = { path = "runtime-native", version = "0.3.0-alpha.6", optional = true }
@@ -26,8 +26,8 @@ pin-project = "0.4"
2626
[dev-dependencies]
2727
failure = "0.1.5"
2828
futures01 = { package = "futures", version = "0.1" }
29-
futures-preview = { version = "0.3.0-alpha.18", features = ["nightly", "async-await"] }
30-
juliex = "0.3.0-alpha.6"
29+
futures-preview = { version = "0.3.0-alpha.19", features = ["async-await"] }
30+
juliex = "0.3.0-alpha.8"
3131
mio = "0.6.16"
3232
rand = "0.7.0"
3333
runtime-tokio = { path = "runtime-tokio", version = "0.3.0-alpha.5" }

runtime-attributes/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ native = []
2121

2222
[dependencies]
2323
syn = { version = "1.0.1", features = ["full"] }
24-
proc-macro2 = { version = "1.0.0", features = ["nightly"] }
24+
proc-macro2 = "1.0.0"
2525
quote = "1.0.0"
2626

2727
[dev-dependencies]

runtime-native/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,17 @@ categories = ["asynchronous", "network-programming", "filesystem", "concurrency"
1313
edition = "2018"
1414

1515
[dependencies]
16-
futures-preview = { version = "0.3.0-alpha.18", features = ["compat"] }
16+
futures-preview = { version = "0.3.0-alpha.19", features = ["compat"] }
1717
runtime-raw = { path = "../runtime-raw", version = "0.3.0-alpha.5" }
1818

1919
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
2020
async-datagram = "3.0.0"
21-
juliex = "0.3.0-alpha.6"
21+
juliex = "0.3.0-alpha.8"
2222
lazy_static = "1.3.0"
23-
romio = "0.3.0-alpha.9"
24-
futures-timer = "0.4.0"
23+
romio = "0.3.0-alpha.10"
24+
futures-timer = "0.5.0"
2525

2626
[target.'cfg(target_arch = "wasm32")'.dependencies]
2727
futures01 = { package = "futures", version = "0.1" }
2828
wasm-bindgen = "0.2.43"
29-
wasm-bindgen-futures = "0.3.20"
29+
wasm-bindgen-futures = "0.4.1"

runtime-native/src/wasm32.rs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
use futures::prelude::*;
21
use futures::{future::BoxFuture, task::SpawnError};
3-
// use futures::compat::*;
42

53
use std::io;
64
use std::net::SocketAddr;
@@ -13,7 +11,6 @@ pub struct Native;
1311

1412
impl runtime_raw::Runtime for Native {
1513
fn spawn_boxed(&self, fut: BoxFuture<'static, ()>) -> Result<(), SpawnError> {
16-
let fut = fut.unit_error().compat();
1714
wasm_bindgen_futures::spawn_local(fut);
1815
Ok(())
1916
}

runtime-raw/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ categories = ["asynchronous", "network-programming", "filesystem", "concurrency"
1313
edition = "2018"
1414

1515
[dependencies]
16-
futures-preview = "0.3.0-alpha.18"
16+
futures-preview = "0.3.0-alpha.19"

runtime-tokio/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ categories = ["asynchronous", "network-programming", "filesystem", "concurrency"
1313
edition = "2018"
1414

1515
[dependencies]
16-
futures-preview = { version = "0.3.0-alpha.18", features = ["compat", "io-compat"] }
16+
futures-preview = { version = "0.3.0-alpha.19", features = ["compat", "io-compat"] }
1717
futures01 = { package = "futures", version = "0.1" }
1818
lazy_static = "1.3.0"
1919
mio = "0.6.16"

0 commit comments

Comments
 (0)