diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2020-01-26 13:17:19 +0000 |
---|---|---|
committer | GitHub <[email protected]> | 2020-01-26 13:17:19 +0000 |
commit | d1330a4a65f0113c687716a5a679239af4df9c11 (patch) | |
tree | e32c7483d541e3d38668f44d2ed61a21151dbed8 /crates/ra_lsp_server/Cargo.toml | |
parent | 13743d10734018b1765b26993044cd4f455fff5a (diff) | |
parent | 9faebd9d646e54aaec81a36ff08b45389344e23b (diff) |
Merge #2906
2906: Fix thread priority problems on windows r=matklad a=matklad
Co-authored-by: Aleksey Kladov <[email protected]>
Diffstat (limited to 'crates/ra_lsp_server/Cargo.toml')
-rw-r--r-- | crates/ra_lsp_server/Cargo.toml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/crates/ra_lsp_server/Cargo.toml b/crates/ra_lsp_server/Cargo.toml index 5df0496dd..fdf81ed87 100644 --- a/crates/ra_lsp_server/Cargo.toml +++ b/crates/ra_lsp_server/Cargo.toml | |||
@@ -30,6 +30,9 @@ env_logger = { version = "0.7.1", default-features = false } | |||
30 | ra_cargo_watch = { path = "../ra_cargo_watch" } | 30 | ra_cargo_watch = { path = "../ra_cargo_watch" } |
31 | either = "1.5" | 31 | either = "1.5" |
32 | 32 | ||
33 | [target.'cfg(windows)'.dependencies] | ||
34 | winapi = "0.3" | ||
35 | |||
33 | [dev-dependencies] | 36 | [dev-dependencies] |
34 | tempfile = "3" | 37 | tempfile = "3" |
35 | test_utils = { path = "../test_utils" } | 38 | test_utils = { path = "../test_utils" } |