aboutsummaryrefslogtreecommitdiff
path: root/crates/flycheck/Cargo.toml
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2021-04-21 22:56:54 +0100
committerGitHub <[email protected]>2021-04-21 22:56:54 +0100
commit32491c09787fa3b386d067f0ce95d744c1480e0b (patch)
treeb34adf250a8f7b43b7bfc2ecda2fb1f8f5614917 /crates/flycheck/Cargo.toml
parentb21701c5ee77f30d3d5f2e69980c6d03618390d6 (diff)
parentb3a7953cae4f14f74934cc64ba7ccf7b3eb6cd08 (diff)
Merge #8570
8570: Flycheck tries to parse both Cargo and Rustc messages. r=rickvanprim a=rickvanprim This change allows non-Cargo build systems to be used for Flycheck provided they call `rustc` with `--error-format=json` and emit those JSON messages to `stdout`. Co-authored-by: James Leitch <[email protected]>
Diffstat (limited to 'crates/flycheck/Cargo.toml')
-rw-r--r--crates/flycheck/Cargo.toml1
1 files changed, 1 insertions, 0 deletions
diff --git a/crates/flycheck/Cargo.toml b/crates/flycheck/Cargo.toml
index 2a1a21b28..18b9ce7df 100644
--- a/crates/flycheck/Cargo.toml
+++ b/crates/flycheck/Cargo.toml
@@ -13,6 +13,7 @@ doctest = false
13crossbeam-channel = "0.5.0" 13crossbeam-channel = "0.5.0"
14log = "0.4.8" 14log = "0.4.8"
15cargo_metadata = "0.13" 15cargo_metadata = "0.13"
16serde = { version = "1.0.106", features = ["derive"] }
16serde_json = "1.0.48" 17serde_json = "1.0.48"
17jod-thread = "0.1.1" 18jod-thread = "0.1.1"
18 19