Skip to content

Commit 19f50d0

Browse files
authored
Merge pull request #1929 from Prince213/fix-cargo-auditable
fix: cargo-auditable build error
2 parents 269d2da + 11bd59f commit 19f50d0

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

gix-packetline/Cargo.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@ 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+
# no `dep:` for futures-lite (https://github.com/rust-secure-code/cargo-auditable/issues/124)
28+
async-io = ["dep:futures-io", "futures-lite", "dep:pin-project-lite"]
2829

2930
#! ### Other
3031
## Data structures implement `serde::Serialize` and `serde::Deserialize`.

gix-protocol/Cargo.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,12 @@ blocking-client = [
3030
"fetch"
3131
]
3232
## As above, but provides async implementations instead.
33+
# no `dep:` for futures-lite (https://github.com/rust-secure-code/cargo-auditable/issues/124)
3334
async-client = [
3435
"gix-transport/async-client",
3536
"dep:async-trait",
3637
"dep:futures-io",
37-
"dep:futures-lite",
38+
"futures-lite",
3839
"handshake",
3940
"fetch"
4041
]

0 commit comments

Comments
 (0)