Bump futures-preview to latest version

This commit is contained in:
Eric Förster 2019-08-01 10:16:53 +02:00
parent 9950de5c9f
commit be9c72f48f
7 changed files with 51 additions and 56 deletions

View file

@ -8,7 +8,7 @@ edition = "2018"
[dependencies]
futures-boxed = { path = "../futures_boxed" }
futures-preview = { version = "0.3.0-alpha.15", features = ["compat"] }
futures-preview = { version = "0.3.0-alpha.17", features = ["compat"] }
runtime = "0.3.0-alpha.4"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"

View file

@ -5,7 +5,7 @@ use std::io;
pub trait Input = Stream<Item = io::Result<String>> + Unpin;
pub trait Output = Sink<String, SinkError = io::Error> + Unpin + Send;
pub trait Output = Sink<String, Error = io::Error> + Unpin + Send;
pub const PROTOCOL_VERSION: &str = "2.0";

View file

@ -7,7 +7,7 @@ authors = [
edition = "2018"
[dependencies]
futures-preview = { version = "0.3.0-alpha.15", features = ["compat"] }
futures-preview = { version = "0.3.0-alpha.17", features = ["compat"] }
html2md = "0.2.9"
lsp-types = { git = "https://github.com/latex-lsp/lsp-types", rev = "9fcc5d9b9d3013ce84e20ef566267754d594b268", features = ["proposed"] }
runtime = "0.3.0-alpha.4"

View file

@ -8,7 +8,7 @@ edition = "2018"
[dependencies]
futures-boxed = { path = "../futures_boxed" }
futures-preview = { version = "0.3.0-alpha.15", features = ["compat"] }
futures-preview = { version = "0.3.0-alpha.17", features = ["compat"] }
itertools = "0.8.0"
log = "0.4.6"
lsp-types = { git = "https://github.com/latex-lsp/lsp-types", rev = "9fcc5d9b9d3013ce84e20ef566267754d594b268", features = ["proposed"] }

View file

@ -8,7 +8,7 @@ edition = "2018"
[dependencies]
futures-boxed = { path = "../futures_boxed" }
futures-preview = { version = "0.3.0-alpha.15", features = ["compat"] }
futures-preview = { version = "0.3.0-alpha.17", features = ["compat"] }
log = "0.4.6"
lsp-types = { git = "https://github.com/latex-lsp/lsp-types", rev = "9fcc5d9b9d3013ce84e20ef566267754d594b268", features = ["proposed"] }
texlab-syntax = { path = "../texlab_syntax" }