diff options
author | Blaž Hrastnik | 2021-05-06 05:33:53 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2021-05-06 05:33:53 +0000 |
commit | 1ad0581ddd2d1fc6eb8b96b495eb4e546d4bdd28 (patch) | |
tree | 94a707fb924c70b86905752c00f9dcbe97f73f08 /helix-lsp | |
parent | 355ad3cb8289611b06cd42fa62ddfe0a5c716e83 (diff) |
Eliminate a few more futures dependencies.
Diffstat (limited to 'helix-lsp')
-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" |