We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Describe the bug When cargo build is run on a project that depends on delay-timer, it will always rebuild, even if no changes have been made.
cargo build
To Reproduce Steps to reproduce the behavior:
cargo new --bin test_proj
delay_timer = "0.9.0"
dependencies
Cargo.toml
Every time cargo build is run, both delay_timer and the test_proj itself are recompiled.
delay_timer
test_proj
Expected behavior cargo build should not recompile anything if there have been no changes since the last compile.
Screenshots N/A
Desktop (please complete the following information):
The text was updated successfully, but these errors were encountered:
I've include a PR #23 which I think fixes the problem.
Sorry, something went wrong.
Hi, friends @chaaz
Thanks a lot for your feedback!
This may be caused by the fact that Cargo works differently on different operating systems, I did not see any abnormalities with the Mac-OS test.
But after testing, modifying build.rs also doesn't cause any problems with the existing compilation.
I decided to adopt PR, thanks for your feedback, this can affect Ubutun users a lot!
If there are any more questions or any suggestions on the project, feel free to contact me, thanks for your support suggestions!
Successfully merging a pull request may close this issue.
Describe the bug
When
cargo build
is run on a project that depends on delay-timer, it will always rebuild, even if no changes have been made.To Reproduce
Steps to reproduce the behavior:
cargo new --bin test_proj
delay_timer = "0.9.0"
to thedependencies
section ofCargo.toml
cargo build
multiple times in successionEvery time
cargo build
is run, bothdelay_timer
and thetest_proj
itself are recompiled.Expected behavior
cargo build
should not recompile anything if there have been no changes since the last compile.Screenshots
N/A
Desktop (please complete the following information):
The text was updated successfully, but these errors were encountered: