-
Notifications
You must be signed in to change notification settings - Fork 13.3k
Speed up path searching with find_library_crate
.
#70837
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
Conversation
(rust_highfive has picked a reviewer for you, use r? to override) |
Some local
|
f15e0da
to
0390978
Compare
@bors try @rust-timer queue |
Awaiting bors try build completion |
⌛ Trying commit 039097859933f58313fdd0cefd53e09ef47e70ef with merge 186ff748381dd717c360a47d917c16107f2f580e... |
☀️ Try build successful - checks-azure |
Queued 186ff748381dd717c360a47d917c16107f2f580e with parent 733f104, future comparison URL. |
r=me if the perf results are good. |
The perf results aren't quite as good as what I saw locally, but are a clear improvement. In particular, |
0390978
to
690cf86
Compare
@bors rollup=never Because it affects performance. |
@bors r=petrochenkov |
📌 Commit 690cf86c6f22d80757f83abec99dfc33334b7b89 has been approved by |
By doing prefix and suffix checking on a `String` copy of each relevant `PathBuf`, rather than the `PathBuf` itself.
@bors p=1 |
The job Click to expand the log.
I'm a bot! I can only do what humans tell me to, so if this was not helpful or you have suggestions for improvements, please ping or otherwise contact |
690cf86
to
a932616
Compare
@bors r=petrochenkov |
📌 Commit a932616 has been approved by |
☀️ Test successful - checks-azure |
By doing prefix and suffix checking on a
String
copy of each relevantPathBuf
, rather than thePathBuf
itself.