mirror of
https://github.com/cargo-bins/cargo-binstall.git
synced 2025-05-08 13:10:03 +00:00
* Fix #728: fallback to copy when symlinking on windows * Signature hmm? * Squash warnings on windows * Just don’t use generics here
This commit is contained in:
parent
f2fc37eea5
commit
6bc1fb4983
3 changed files with 11 additions and 9 deletions
|
@ -1,4 +1,4 @@
|
|||
use std::{future::pending, io};
|
||||
use std::io;
|
||||
|
||||
use super::tasks::AutoAbortJoinHandle;
|
||||
use crate::errors::BinstallError;
|
||||
|
@ -73,7 +73,7 @@ mod unix {
|
|||
Ok(())
|
||||
} else {
|
||||
// Use pending() here for the same reason as above.
|
||||
pending().await
|
||||
std::future::pending().await
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue