Skip to content

Commit 25b6e3d

Browse files
committed
fix: cargo-auditable build error
Use `futures-lite` instead of `dep:futures-lite` in gix-packetline and gix-protocol.
1 parent 24f40b9 commit 25b6e3d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

gix-packetline/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ default = []
2424
## If set, all IO will become blocking. The same types will be used preventing side-by-side usage of blocking and non-blocking IO.
2525
blocking-io = []
2626
## Implement IO traits from `futures-io`.
27-
async-io = ["dep:futures-io", "dep:futures-lite", "dep:pin-project-lite"]
27+
async-io = ["dep:futures-io", "futures-lite", "dep:pin-project-lite"]
2828

2929
#! ### Other
3030
## Data structures implement `serde::Serialize` and `serde::Deserialize`.

gix-protocol/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ async-client = [
3434
"gix-transport/async-client",
3535
"dep:async-trait",
3636
"dep:futures-io",
37-
"dep:futures-lite",
37+
"futures-lite",
3838
"handshake",
3939
"fetch"
4040
]

0 commit comments

Comments
 (0)