diff options
author | veetaha <[email protected]> | 2020-05-10 16:35:33 +0100 |
---|---|---|
committer | Veetaha <[email protected]> | 2020-06-18 12:50:56 +0100 |
commit | 76c1160ffa626fc5f07b309420e6666eb79a3311 (patch) | |
tree | faa1e1bab885988042fb735f89c7bc5c59127a12 /crates/ra_progress/Cargo.toml | |
parent | 2f8126fcace3c5e7db01c755b91eb45a9c632cfd (diff) |
Migrate flycheck to fully-lsp-compatible progress reports (introduce ra_progress crate)
Diffstat (limited to 'crates/ra_progress/Cargo.toml')
-rw-r--r-- | crates/ra_progress/Cargo.toml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/crates/ra_progress/Cargo.toml b/crates/ra_progress/Cargo.toml new file mode 100644 index 000000000..c7f7c6dd3 --- /dev/null +++ b/crates/ra_progress/Cargo.toml | |||
@@ -0,0 +1,8 @@ | |||
1 | [package] | ||
2 | name = "ra_progress" | ||
3 | version = "0.1.0" | ||
4 | authors = ["rust-analyzer developers"] | ||
5 | edition = "2018" | ||
6 | |||
7 | [dependencies] | ||
8 | crossbeam-channel = { version = "0.4" } | ||