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-term | |
parent | f0712479cbdff239347049461be1901e13950044 (diff) |
Disable default features on futures-util to drop proc macros.
Diffstat (limited to 'helix-term')
-rw-r--r-- | helix-term/Cargo.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-term/Cargo.toml b/helix-term/Cargo.toml index 73468f4d..a86549a7 100644 --- a/helix-term/Cargo.toml +++ b/helix-term/Cargo.toml @@ -25,7 +25,7 @@ tui = { version = "0.15", default-features = false, features = ["crossterm"] } crossterm = { version = "0.19", features = ["event-stream"] } clap = { version = "3.0.0-beta.2 ", default-features = false, features = ["std", "cargo"] } -futures-util = { version = "0.3", features = ["std", "async-await"] } +futures-util = { version = "0.3", features = ["std", "async-await"], default-features = false } # Logging fern = "0.6" |