File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff 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.
2525blocking-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`.
Original file line number Diff line number Diff 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)
3334async-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]
You can’t perform that action at this time.
0 commit comments