Skip to content

Commit

Permalink
Update futures-preview to 0.3.0-alpha.19 (#74)
Browse files Browse the repository at this point in the history
  • Loading branch information
taiki-e committed Oct 1, 2019
1 parent 91dcb21 commit 29ca24a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Expand Up @@ -20,7 +20,7 @@ wasm-client = ["js-sys", "web-sys", "wasm-bindgen", "wasm-bindgen-futures"]
middleware-logger = []

[dependencies]
futures-preview = { version = "0.3.0-alpha.18", features = ["compat", "io-compat"] }
futures-preview = { version = "0.3.0-alpha.19", features = ["compat", "io-compat"] }
http = "0.1.17"
log = { version = "0.4.7", features = ["kv_unstable"] }
mime = "0.3.13"
Expand Down
2 changes: 1 addition & 1 deletion src/http_client/mod.rs
Expand Up @@ -61,7 +61,7 @@ impl Body {
/// Create a new empty body.
pub fn empty() -> Self {
Self {
reader: Box::new(std::io::empty()),
reader: Box::new(futures::io::empty()),
}
}

Expand Down

0 comments on commit 29ca24a

Please sign in to comment.