File workaround-cargo-bug.patch of Package gitoxide
diff --git a/gix-packetline/Cargo.toml b/gix-packetline/Cargo.toml
index d8f21b9..c2798d9 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 = ["dep:futures-io", "dep:futures-lite", "dep:pin-project-lite"]
+async-io = ["dep:futures-io", "futures-lite", "dep:pin-project-lite"]
#! ### Other
## Data structures implement `serde::Serialize` and `serde::Deserialize`.
diff --git a/gix-protocol/Cargo.toml b/gix-protocol/Cargo.toml
index 7a18fb8..badbcfa 100644
--- a/gix-protocol/Cargo.toml
+++ b/gix-protocol/Cargo.toml
@@ -34,7 +34,7 @@ async-client = [
"gix-transport/async-client",
"dep:async-trait",
"dep:futures-io",
- "dep:futures-lite",
+ "futures-lite",
"handshake",
"fetch"
]