-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The async-std crate didn't had a release for 1 1/2 years. It also pulls in a lot of dependencies that are usually not needed. The Path::exists() feature of async-std is just using spawn_blocking around the std metadata function and therefore settling on a specific executor and spawning a bunch of threads that might not be needed. Therefore I replaced all uses of async-std with the crates from which async-std is build and that are well maintained.
- Loading branch information
1 parent
dbf9b65
commit 430eea2
Showing
3 changed files
with
10 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters