Remove redundant dependencies

This commit is contained in:
Patrick Förster 2019-12-12 14:33:22 +01:00
parent fe2d78c47c
commit dcd021d077
4 changed files with 3 additions and 8 deletions

4
Cargo.lock generated
View file

@ -1992,11 +1992,9 @@ dependencies = [
name = "texlab"
version = "1.8.0"
dependencies = [
"bytes 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)",
"clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)",
"futures 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
"futures-boxed 0.1.0",
"itertools 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)",
"jsonrpc 0.1.0",
"jsonrpc-derive 0.1.0",
"log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
@ -2008,7 +2006,6 @@ dependencies = [
"serde_json 1.0.44 (registry+https://github.com/rust-lang/crates.io-index)",
"serde_repr 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
"stderrlog 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)",
"tempfile 3.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
"texlab-citeproc 0.1.0",
"texlab-completion 0.1.0",
"texlab-distro 0.1.0",
@ -2088,7 +2085,6 @@ dependencies = [
"futures 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
"futures-boxed 0.1.0",
"image 0.22.3 (registry+https://github.com/rust-lang/crates.io-index)",
"itertools 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)",
"log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
"tempfile 3.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
"texlab-citeproc 0.1.0",

View file

@ -26,11 +26,9 @@ members = [
"crates/texlab_workspace"]
[dependencies]
bytes = "0.5"
clap = "2.33"
futures = "0.3"
futures-boxed = { path = "crates/futures_boxed" }
itertools = "0.8.2"
jsonrpc = { path = "crates/jsonrpc" }
jsonrpc-derive = { path = "crates/jsonrpc_derive" }
log = "0.4.6"
@ -42,7 +40,6 @@ serde = { version = "1.0.103", features = ["derive", "rc"] }
serde_json = "1.0.44"
serde_repr = "0.1"
stderrlog = "0.4.1"
tempfile = "3"
texlab-citeproc = { path = "crates/texlab_citeproc" }
texlab-completion = { path = "crates/texlab_completion" }
texlab-distro = { path = "crates/texlab_distro" }

View file

@ -11,7 +11,6 @@ base64 = "0.11.0"
futures = "0.3"
futures-boxed = { path = "../futures_boxed" }
image = "0.22.3"
itertools = "0.8.2"
log = "0.4.6"
tempfile = "3"
texlab-citeproc = { path = "../texlab_citeproc" }

View file

@ -31,7 +31,10 @@ async fn main() -> Result<(), Box<dyn Error>> {
stderrlog::new()
.module(module_path!())
.module("jsonrpc")
.module("texlab-citeproc")
.module("texlab-completion")
.module("texlab-distro")
.module("texlab-hover")
.module("texlab-protocol")
.module("texlab-syntax")
.module("texlab-workspace")