File tree 2 files changed +4
-2
lines changed
2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,8 @@ default = []
24
24
# # If set, all IO will become blocking. The same types will be used preventing side-by-side usage of blocking and non-blocking IO.
25
25
blocking-io = []
26
26
# # 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" ]
28
29
29
30
# ! ### Other
30
31
# # Data structures implement `serde::Serialize` and `serde::Deserialize`.
Original file line number Diff line number Diff line change @@ -30,11 +30,12 @@ blocking-client = [
30
30
" fetch"
31
31
]
32
32
# # As above, but provides async implementations instead.
33
+ # no `dep:` for futures-lite (https://github.com/rust-secure-code/cargo-auditable/issues/124)
33
34
async-client = [
34
35
" gix-transport/async-client" ,
35
36
" dep:async-trait" ,
36
37
" dep:futures-io" ,
37
- " dep: futures-lite" ,
38
+ " futures-lite" ,
38
39
" handshake" ,
39
40
" fetch"
40
41
]
You can’t perform that action at this time.
0 commit comments