diff options
author | Blaž Hrastnik | 2021-05-08 02:51:18 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2021-05-08 02:51:18 +0000 |
commit | 570c253ffba2dcfb2749548f40896f2b1d787442 (patch) | |
tree | aca44c363a075f157b685425b017b91979fcd2c7 /helix-lsp | |
parent | f0712479cbdff239347049461be1901e13950044 (diff) |
Disable default features on futures-util to drop proc macros.
Diffstat (limited to 'helix-lsp')
-rw-r--r-- | helix-lsp/Cargo.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-lsp/Cargo.toml b/helix-lsp/Cargo.toml index 0fae9cb2..ee16ebfb 100644 --- a/helix-lsp/Cargo.toml +++ b/helix-lsp/Cargo.toml @@ -24,6 +24,6 @@ serde_json = "1.0" serde = { version = "1.0", features = ["derive"] } # 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"] } +futures-util = { version = "0.3", features = ["std", "async-await"], default-features = false } thiserror = "1.0" log = "~0.4" |