diff options
Diffstat (limited to 'helix-lsp/Cargo.toml')
-rw-r--r-- | helix-lsp/Cargo.toml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/helix-lsp/Cargo.toml b/helix-lsp/Cargo.toml index 24bb2080..09351f97 100644 --- a/helix-lsp/Cargo.toml +++ b/helix-lsp/Cargo.toml @@ -21,7 +21,8 @@ glob = "0.3" anyhow = "1" serde_json = "1.0" serde = { version = "1.0", features = ["derive"] } -jsonrpc-core = "17.0" -futures-util = "0.3" +# jsonrpc-core = { version = "17.1", default-features = false } # don't pull in all of futures +jsonrpc-core = { git = "https://github.com/paritytech/jsonrpc", default-features = false } # don't pull in all of futures +futures-util = { version = "0.3", features = ["std", "async-await"] } thiserror = "1.0" log = "~0.4" |