From 97396200f85ba691396c80d78d3bd7efc0707f8c Mon Sep 17 00:00:00 2001
From: Sebastian Thiel <sebastian.thiel@icloud.com>
Date: Mon, 9 Dec 2024 16:48:02 +0100
Subject: [PATCH] This tweak makes it possible to use RustRover/IntelliJ again.

---
 gix-packetline/Cargo.toml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gix-packetline/Cargo.toml b/gix-packetline/Cargo.toml
index d694ff602ee..6da58ea3c4e 100644
--- a/gix-packetline/Cargo.toml
+++ b/gix-packetline/Cargo.toml
@@ -24,7 +24,7 @@ default = []
 ## If set, all IO will become blocking. The same types will be used preventing side-by-side usage of blocking and non-blocking IO.
 blocking-io = []
 ## Implement IO traits from `futures-io`.
-async-io = ["futures-io", "futures-lite", "pin-project-lite"]
+async-io = ["dep:futures-io", "dep:futures-lite", "dep:pin-project-lite"]
 
 #! ### Other
 ## Data structures implement `serde::Serialize` and `serde::Deserialize`.