-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
Fix array-size-threshold config deserialization error #10423
Conversation
r? @Manishearth (rustbot has picked a reviewer for you, use r? to override) |
That will need to be backported to beta, else the next version will be broken |
Thanks! @bors r+ I'll deal with the backports on Thursday. |
Fix array-size-threshold config deserialization error changelog: Fix error when providing an `array-size-threshold` in `clippy.toml` Not entirely sure why it doesn't want to deserialize a u128, but converting it after the fact is an easy enough fix Fixes #10422
💔 Test failed - checks-action_test |
53375ca
to
2cadea5
Compare
@bors r+ |
☀️ Test successful - checks-action_dev_test, checks-action_remark_test, checks-action_test |
1 similar comment
☀️ Test successful - checks-action_dev_test, checks-action_remark_test, checks-action_test |
[beta] stage0 bump and backports - Bump stage0 to stable - Revert to using `RtlGenRandom` as a fallback rust-lang#108060 - Fix `VecDeque::shrink_to` and add tests. rust-lang#108475 - Fix `VecDeque::append` capacity overflow for ZSTs rust-lang#108462 - Clippy: Fix array-size-threshold config deserialization error rust-lang#108673 / rust-lang/rust-clippy#10423 - Yeet point_at_expr_source_of_inferred_type for now rust-lang#108703 r? `@ghost`
changelog: Fix error when providing an
array-size-threshold
inclippy.toml
Not entirely sure why it doesn't want to deserialize a u128, but converting it after the fact is an easy enough fix
Fixes #10422