Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

use threads instead of futures in build.rs #484

Merged
merged 2 commits into from
Jan 19, 2025

Conversation

Freax13
Copy link
Member

@Freax13 Freax13 commented Jan 19, 2025

There's no inherent reason why we should use future-based concurrency in build.rs. We don't spawn many futures and we don't make use of any of the nice structures made possible by structured concurrency. The downside of using futures is that we have to pull in a bunch of dependencies. Switching to sync code and removing the dependencies resulted in a nice performance improvement (35s -> 30s). Also, it's just good practice to reduce the number of unneeded dependencies especially if some of them are unmaintained.

Closes #483

There's no inherent reason why we should use future-based concurrency
in build.rs. We don't spawn many futures and we don't make use of any
of the nice patterns made possible by structured concurrency. The
downside of using futures is that we have to pull in a bunch of
dependencies. Switching to sync code and removing the dependencies
resulted in a nice performance improvement (35s -> 30s). Also, it's just
good practice to reduce the number of unneeded dependencies especially
if some of them are unmaintained.
@Freax13 Freax13 requested a review from phil-opp January 19, 2025 10:07
macos-12 has been removed from GitHub actions.
@Freax13
Copy link
Member Author

Freax13 commented Jan 19, 2025

@phil-opp please remove the "Test (macos-12)" required check in the repository settings. The macos-12 platform no longer exists. I don't have access to these settings for this repo.

@phil-opp
Copy link
Member

Done! I also gave you full access to the repo now.

Copy link
Member

@phil-opp phil-opp left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks good, thanks a lot!

@phil-opp phil-opp merged commit 8165441 into rust-osdev:main Jan 19, 2025
7 of 8 checks passed
@phil-opp phil-opp mentioned this pull request Feb 10, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Dependency instant is unmaintained
2 participants