-
Notifications
You must be signed in to change notification settings - Fork 12.7k
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
Update Clippy - temporary_cstring_as_ptr deprecation #78505
Commits on Oct 17, 2020
-
Configuration menu - View commit details
-
Copy full SHA for bb0ce32 - Browse repository at this point
Copy the full SHA bb0ce32View commit details -
Configuration menu - View commit details
-
Copy full SHA for 915ce36 - Browse repository at this point
Copy the full SHA 915ce36View commit details
Commits on Oct 19, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 114cb21 - Browse repository at this point
Copy the full SHA 114cb21View commit details -
Add linter for a single element for loop
Signed-off-by: Patrick José Pereira <patrickelectric@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for ec23db9 - Browse repository at this point
Copy the full SHA ec23db9View commit details -
tests: if_same_then_else2: Ignore single_element_loop lint
Signed-off-by: Patrick José Pereira <patrickelectric@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for ba1ca19 - Browse repository at this point
Copy the full SHA ba1ca19View commit details -
Configuration menu - View commit details
-
Copy full SHA for 65b52d8 - Browse repository at this point
Copy the full SHA 65b52d8View commit details
Commits on Oct 21, 2020
-
Add lint for holding RefCell Ref across an await
Daniel Smith committedOct 21, 2020 Configuration menu - View commit details
-
Copy full SHA for 57bf80f - Browse repository at this point
Copy the full SHA 57bf80fView commit details -
Daniel Smith committed
Oct 21, 2020 Configuration menu - View commit details
-
Copy full SHA for 8727169 - Browse repository at this point
Copy the full SHA 8727169View commit details -
Daniel Smith committed
Oct 21, 2020 Configuration menu - View commit details
-
Copy full SHA for 070a751 - Browse repository at this point
Copy the full SHA 070a751View commit details -
Daniel Smith committed
Oct 21, 2020 Configuration menu - View commit details
-
Copy full SHA for 0f4abbf - Browse repository at this point
Copy the full SHA 0f4abbfView commit details -
Daniel Smith committed
Oct 21, 2020 Configuration menu - View commit details
-
Copy full SHA for b3a427d - Browse repository at this point
Copy the full SHA b3a427dView commit details -
Move existing lint into shared file
Daniel Smith committedOct 21, 2020 Configuration menu - View commit details
-
Copy full SHA for 3ed69cd - Browse repository at this point
Copy the full SHA 3ed69cdView commit details -
Move refcell lint into shared module
Daniel Smith committedOct 21, 2020 Configuration menu - View commit details
-
Copy full SHA for ee20eba - Browse repository at this point
Copy the full SHA ee20ebaView commit details -
Convert the await holding lints to correctness
Daniel Smith committedOct 21, 2020 Configuration menu - View commit details
-
Copy full SHA for d8c6bce - Browse repository at this point
Copy the full SHA d8c6bceView commit details -
Daniel Smith committed
Oct 21, 2020 Configuration menu - View commit details
-
Copy full SHA for 86f2b29 - Browse repository at this point
Copy the full SHA 86f2b29View commit details -
Daniel Smith committed
Oct 21, 2020 Configuration menu - View commit details
-
Copy full SHA for 4d33225 - Browse repository at this point
Copy the full SHA 4d33225View commit details
Commits on Oct 22, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 4a4f998 - Browse repository at this point
Copy the full SHA 4a4f998View commit details -
Configuration menu - View commit details
-
Copy full SHA for e70817e - Browse repository at this point
Copy the full SHA e70817eView commit details -
Configuration menu - View commit details
-
Copy full SHA for c693de3 - Browse repository at this point
Copy the full SHA c693de3View commit details -
Configuration menu - View commit details
-
Copy full SHA for f2da0c7 - Browse repository at this point
Copy the full SHA f2da0c7View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6533d8b - Browse repository at this point
Copy the full SHA 6533d8bView commit details -
Configuration menu - View commit details
-
Copy full SHA for e8f12d2 - Browse repository at this point
Copy the full SHA e8f12d2View commit details -
Configuration menu - View commit details
-
Copy full SHA for 02f0110 - Browse repository at this point
Copy the full SHA 02f0110View commit details -
Configuration menu - View commit details
-
Copy full SHA for 30f80c3 - Browse repository at this point
Copy the full SHA 30f80c3View commit details
Commits on Oct 23, 2020
-
clippy_lints: Update empty_loop lint
We also update the documentation to note that the remediations are different for `std` and `no_std` crates. Signed-off-by: Joe Richey <joerichey@google.com>
Configuration menu - View commit details
-
Copy full SHA for 3807634 - Browse repository at this point
Copy the full SHA 3807634View commit details -
Configuration menu - View commit details
-
Copy full SHA for cdb555f - Browse repository at this point
Copy the full SHA cdb555fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 6caeed1 - Browse repository at this point
Copy the full SHA 6caeed1View commit details -
Configuration menu - View commit details
-
Copy full SHA for d46edd9 - Browse repository at this point
Copy the full SHA d46edd9View commit details
Commits on Oct 24, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 62f60e1 - Browse repository at this point
Copy the full SHA 62f60e1View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0d21ae0 - Browse repository at this point
Copy the full SHA 0d21ae0View commit details -
Configuration menu - View commit details
-
Copy full SHA for 71ac0c0 - Browse repository at this point
Copy the full SHA 71ac0c0View commit details -
Fix inconsistencies in handling of inert attributes on statements
When the 'early' and 'late' visitors visit an attribute target, they activate any lint attributes (e.g. `#[allow]`) that apply to it. This can affect warnings emitted on sibiling attributes. For example, the following code does not produce an `unused_attributes` for `#[inline]`, since the sibiling `#[allow(unused_attributes)]` suppressed the warning. ```rust trait Foo { #[allow(unused_attributes)] #[inline] fn first(); #[inline] #[allow(unused_attributes)] fn second(); } ``` However, we do not do this for statements - instead, the lint attributes only become active when we visit the struct nested inside `StmtKind` (e.g. `Item`). Currently, this is difficult to observe due to another issue - the `HasAttrs` impl for `StmtKind` ignores attributes for `StmtKind::Item`. As a result, the `unused_doc_comments` lint will never see attributes on item statements. This commit makes two interrelated fixes to the handling of inert (non-proc-macro) attributes on statements: * The `HasAttr` impl for `StmtKind` now returns attributes for `StmtKind::Item`, treating it just like every other `StmtKind` variant. The only place relying on the old behavior was macro which has been updated to explicitly ignore attributes on item statements. This allows the `unused_doc_comments` lint to fire for item statements. * The `early` and `late` lint visitors now activate lint attributes when invoking the callback for `Stmt`. This ensures that a lint attribute (e.g. `#[allow(unused_doc_comments)]`) can be applied to sibiling attributes on an item statement. For now, the `unused_doc_comments` lint is explicitly disabled on item statements, which preserves the current behavior. The exact locatiosn where this lint should fire are being discussed in PR rust-lang#78306
Configuration menu - View commit details
-
Copy full SHA for 33f3cfc - Browse repository at this point
Copy the full SHA 33f3cfcView commit details -
Add large_types_passed_by_value lint
Refactor trivially_copy_pass_by_ref and the new lint into pass_by_ref_or_value module Update stderr of conf_unknown_key test Rename lint to large_types_passed_by_value Increase `pass_by_value_size_limit` default value to 256 Improve rules for `large_types_passed_by_value` Improve tests for `large_types_passed_by_value` Improve documentation for `large_types_passed_by_value` Make minor corrections to pass_by_ref_or_value.rs suggested by clippy itself Fix `large_types_passed_by_value` example and improve docs pass_by_ref_or_value: Tweak check for mut annotation in params large_types_passed_by_value: add tests for pub trait, trait impl and inline attributes
Configuration menu - View commit details
-
Copy full SHA for e8731a9 - Browse repository at this point
Copy the full SHA e8731a9View commit details -
Auto merge of rust-lang#6135 - cauebs:master, r=ebroto
Add large_types_passed_by_value lint Creates a new lint that checks for large function parameters passed by value. ~Types that are Copy were ignored, because I understand they are explicitly marked as being cheap (or just acceptable) to copy. Arrays were excluded from that restriction because they are always Copy, independently of the size, if the elements are Copy.~ Only Copy types are considered, because if a type is not Copy it cannot be dereferenced, as pointed out by `@ebroto,` and that would require analyzing the whole function body to check if the argument is moved somewhere else. `self` and `mut` parameters are also skipped. I refactored `trivially_copy_pass_by_ref` and the new lint into a new `pass_by_ref_or_value` module, since both share most of their implementations, as was pointed out to me in rust-lang#4499. ~Some questions that remain:~ ~1. Should `self` be disregarded for this lint?~ ~2. Should we special case types like Vec and String when suggesting changes? (to slices and &str)~ ~3. What should be the default size limit?~ ~4. Are there any special cases I'm missing?~ I ask the maintainers to add the `hacktoberfest-accepted` label if this PR is decent, even if there are some minor details to work out, but I do intend to stick around and finish the job. Fixes rust-lang#4499 changelog: Add new lint [`large_types_passed_by_value`]
Configuration menu - View commit details
-
Copy full SHA for 5c78d26 - Browse repository at this point
Copy the full SHA 5c78d26View commit details -
Auto merge of rust-lang#6190 - montrivo:manual_result_unwrap_or, r=eb…
…roto manual_unwrap_or / support Result::unwrap_or Implements partially rust-lang#5923. changelog: support Result::unwrap_or in manual_unwrap_or
Configuration menu - View commit details
-
Copy full SHA for 29979ad - Browse repository at this point
Copy the full SHA 29979adView commit details -
Auto merge of rust-lang#6187 - geoffreycopin:master, r=ebroto
Lint unnecessary int-to-int and float-to-float casts This is an implementation of a lint that detects unnecessary casts of number literals, as discussed here: rust-lang/rust-clippy#6116 --- changelog: lint unnecessary as-casts of literals when they could be written using literal syntax.
Configuration menu - View commit details
-
Copy full SHA for b06856e - Browse repository at this point
Copy the full SHA b06856eView commit details
Commits on Oct 25, 2020
-
Auto merge of rust-lang#6029 - Daniel-B-Smith:refcell_ref_await, r=fl…
…ip1995 Add lint for holding RefCell Ref across an await Fixes rust-lang#6008 This introduces the lint await_holding_refcell_ref. For async functions, we iterate over all types in generator_interior_types and look for `core::cell::Ref` or `core::cell::RefMut`. If we find one then we emit a lint. Heavily cribs from: rust-lang/rust-clippy#5439 changelog: introduce the await_holding_refcell_ref lint
Configuration menu - View commit details
-
Copy full SHA for a675778 - Browse repository at this point
Copy the full SHA a675778View commit details -
Auto merge of rust-lang#6109 - patrickelectric:single_element_for_che…
…ck, r=flip1995 Add linter for a single element for loop changelog: Fixes rust-lang#1540, check for vectors that contain a single element in a for loop
Configuration menu - View commit details
-
Copy full SHA for e0e617a - Browse repository at this point
Copy the full SHA e0e617aView commit details -
Configuration menu - View commit details
-
Copy full SHA for f82f9c2 - Browse repository at this point
Copy the full SHA f82f9c2View commit details -
Auto merge of rust-lang#6181 - cgm616:undropped-manually-drops, r=fli…
…p1995 Add new lint for undropped ManuallyDrop values Adds a new lint for the following code: ```rust struct S; impl Drop for S { fn drop(&mut self) { println!("drip drop"); } } fn main() { // This will not drop the `S`!!! drop(std::mem::ManuallyDrop::new(S)); unsafe { // This will. std::mem::ManuallyDrop::drop(&mut std::mem::ManuallyDrop::new(S)); } } ``` The inner value of a `ManuallyDrop` will not be dropped unless the proper, unsafe drop function is called on it. This lint makes sure that a user does not accidently use the wrong function and forget to drop a `ManuallyDrop` value. Fixes rust-lang#5581. --- *Please keep the line below* changelog: none
Configuration menu - View commit details
-
Copy full SHA for 6b01c39 - Browse repository at this point
Copy the full SHA 6b01c39View commit details -
Configuration menu - View commit details
-
Copy full SHA for fb8a9cb - Browse repository at this point
Copy the full SHA fb8a9cbView commit details -
Configuration menu - View commit details
-
Copy full SHA for ec0c3af - Browse repository at this point
Copy the full SHA ec0c3afView commit details -
Configuration menu - View commit details
-
Copy full SHA for 77e34a6 - Browse repository at this point
Copy the full SHA 77e34a6View commit details -
Configuration menu - View commit details
-
Copy full SHA for 292cb9b - Browse repository at this point
Copy the full SHA 292cb9bView commit details -
Configuration menu - View commit details
-
Copy full SHA for e7e03b7 - Browse repository at this point
Copy the full SHA e7e03b7View commit details -
Rollup merge of rust-lang#78326 - Aaron1011:fix/min-stmt-lints, r=pet…
…rochenkov Split out statement attributes changes from rust-lang#78306 This is the same as PR rust-lang#78306, but `unused_doc_comments` is modified to explicitly ignore statement items (which preserves the current behavior). This shouldn't have any user-visible effects, so it can be landed without lang team discussion. --------- When the 'early' and 'late' visitors visit an attribute target, they activate any lint attributes (e.g. `#[allow]`) that apply to it. This can affect warnings emitted on sibiling attributes. For example, the following code does not produce an `unused_attributes` for `#[inline]`, since the sibiling `#[allow(unused_attributes)]` suppressed the warning. ```rust trait Foo { #[allow(unused_attributes)] #[inline] fn first(); #[inline] #[allow(unused_attributes)] fn second(); } ``` However, we do not do this for statements - instead, the lint attributes only become active when we visit the struct nested inside `StmtKind` (e.g. `Item`). Currently, this is difficult to observe due to another issue - the `HasAttrs` impl for `StmtKind` ignores attributes for `StmtKind::Item`. As a result, the `unused_doc_comments` lint will never see attributes on item statements. This commit makes two interrelated fixes to the handling of inert (non-proc-macro) attributes on statements: * The `HasAttr` impl for `StmtKind` now returns attributes for `StmtKind::Item`, treating it just like every other `StmtKind` variant. The only place relying on the old behavior was macro which has been updated to explicitly ignore attributes on item statements. This allows the `unused_doc_comments` lint to fire for item statements. * The `early` and `late` lint visitors now activate lint attributes when invoking the callback for `Stmt`. This ensures that a lint attribute (e.g. `#[allow(unused_doc_comments)]`) can be applied to sibiling attributes on an item statement. For now, the `unused_doc_comments` lint is explicitly disabled on item statements, which preserves the current behavior. The exact locatiosn where this lint should fire are being discussed in PR rust-lang#78306
Configuration menu - View commit details
-
Copy full SHA for df85532 - Browse repository at this point
Copy the full SHA df85532View commit details -
Auto merge of rust-lang#6162 - josephlr:empty-loop-no-std, r=flip1995
Update empty_loop documentation/message. Originally part of rust-lang#6161, but now this PR only deals with `std` crates This change: - Updates the `std` message . - Updates the docs to mention how the busy loops should be fixed - Gives examples of how to do this for `no_std` targets - Updates the tests/stderr files to test this change. changelog: Update `empty_loop` lint documentation
Configuration menu - View commit details
-
Copy full SHA for fd62c18 - Browse repository at this point
Copy the full SHA fd62c18View commit details -
Auto merge of rust-lang#6103 - FrancisMurillo:mut_mutex_lock, r=flip1995
Add lint for `&mut Mutex::lock` Fixes rust-lang#1765 changelog: Add lint [`mut_mutex_lock`] for `&mut Mutex::lock` and suggests using `&mut Mutex::get_mut` instead.
Configuration menu - View commit details
-
Copy full SHA for 399732b - Browse repository at this point
Copy the full SHA 399732bView commit details -
Configuration menu - View commit details
-
Copy full SHA for d571389 - Browse repository at this point
Copy the full SHA d571389View commit details -
Auto merge of rust-lang#6177 - rust-lang:manual-range-contains, r=fli…
…p1995 New lint: manual-range-contains This fixes rust-lang#1110, at least for the contains-suggesting part. - \[x] Followed [lint naming conventions][lint_naming] - \[x] Added passing UI tests (including committed `.stderr` file) - \[x] `cargo test` passes locally - \[x] Executed `cargo dev update_lints` - \[x] Added lint documentation - \[x] Run `cargo dev fmt` --- changelog: new lint: manual-range-contains
Configuration menu - View commit details
-
Copy full SHA for 90cb25d - Browse repository at this point
Copy the full SHA 90cb25dView commit details -
Auto merge of rust-lang#6198 - montrivo:needless-lifetime, r=flip1995
needless-lifetime / multiple where clause predicates regression Closes rust-lang#6159. changelog: fix regression in needless-lifetimes
Configuration menu - View commit details
-
Copy full SHA for 38be214 - Browse repository at this point
Copy the full SHA 38be214View commit details -
Auto merge of rust-lang#6211 - ThibsG:NeedlessBoolCfg, r=flip1995
No lint with `cfg!` and fix sugg for macro in `needless_bool` lint Don't lint if `cfg!` macro is one of the operand. Fix suggestion when the span originated from a macro, using `hir_with_macro_callsite`. Fixes: rust-lang#3973 changelog: none
Configuration menu - View commit details
-
Copy full SHA for 718bb28 - Browse repository at this point
Copy the full SHA 718bb28View commit details -
Auto merge of rust-lang#6222 - JohnTitor:redundant-local-def-id, r=fl…
…ip1995 Remove redundant `expect_local()` call The field `owner` of `HirId` is `LocalDefId` and `hir_id.owner.to_def_id().expect_local()` is redundant. I wonder they were introduced in some rustups. changelog: none
Configuration menu - View commit details
-
Copy full SHA for 9c9aa2d - Browse repository at this point
Copy the full SHA 9c9aa2dView commit details -
Configuration menu - View commit details
-
Copy full SHA for db8380c - Browse repository at this point
Copy the full SHA db8380cView commit details -
Configuration menu - View commit details
-
Copy full SHA for f5a88b6 - Browse repository at this point
Copy the full SHA f5a88b6View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0c0f8db - Browse repository at this point
Copy the full SHA 0c0f8dbView commit details -
Configuration menu - View commit details
-
Copy full SHA for e7e4b35 - Browse repository at this point
Copy the full SHA e7e4b35View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3ce820b - Browse repository at this point
Copy the full SHA 3ce820bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 2f5d418 - Browse repository at this point
Copy the full SHA 2f5d418View commit details -
Configuration menu - View commit details
-
Copy full SHA for 312bbff - Browse repository at this point
Copy the full SHA 312bbffView commit details -
Configuration menu - View commit details
-
Copy full SHA for 77746b9 - Browse repository at this point
Copy the full SHA 77746b9View commit details -
Auto merge of rust-lang#6224 - flip1995:rustup, r=flip1995
Rustup r? `@ghost` changelog: none
Configuration menu - View commit details
-
Copy full SHA for 4242ef8 - Browse repository at this point
Copy the full SHA 4242ef8View commit details -
Auto merge of rust-lang#6183 - cgm616:hex_bin_digit_grouping, r=flip1995
Hex bin digit grouping This revives and updates an old pr (rust-lang#3391) for the current API. Closes rust-lang#2538. --- *Please keep the line below* changelog: Add [`unusual_byte_groupings`] lint.
Configuration menu - View commit details
-
Copy full SHA for eceebc3 - Browse repository at this point
Copy the full SHA eceebc3View commit details -
Auto merge of rust-lang#6194 - giraffate:remove_an_extra_blank_line, …
…r=flip1995 Remove an extra blank line in doc examples It seems to be an extra blank line in doc example. changelog: none <img width="1141" alt="スクリーンショット 2020-10-19 10 32 21" src="https://user-images.githubusercontent.com/17407489/96392372-d0583200-11f6-11eb-9aab-f7e8f87eb04e.png">
Configuration menu - View commit details
-
Copy full SHA for 15f6fb9 - Browse repository at this point
Copy the full SHA 15f6fb9View commit details -
Auto merge of rust-lang#6202 - giraffate:fix_invalid_suggestion_in_ne…
…edless_collect_test, r=flip1995 Fix an invalid suggestion in `needless_collect` test A test, https://github.com/rust-lang/rust-clippy/blob/master/tests/ui/needless_collect_indirect.rs#L11-L12, suggests following codes, but the suggested codes don't work. An example is here: https://play.rust-lang.org/?version=stable&mode=debug&edition=2018&gist=6947d9f2806a83f41cc5eb8e39b09d0b. ``` error: avoid using `collect()` when not needed --> $DIR/needless_collect_indirect.rs:11:5 | LL | / let indirect_contains = sample.iter().collect::<VecDeque<_>>(); LL | | indirect_contains.contains(&&5); | |____^ | help: Check if the original Iterator contains an element instead of collecting then checking | LL | LL | sample.iter().any(|x| x == &&5); ``` changelog: none
Configuration menu - View commit details
-
Copy full SHA for 83bb5ec - Browse repository at this point
Copy the full SHA 83bb5ecView commit details -
Configuration menu - View commit details
-
Copy full SHA for 80b2168 - Browse repository at this point
Copy the full SHA 80b2168View commit details -
Auto merge of rust-lang#6225 - rust-lang:flip1995-patch-1, r=flip1995
Update triagebot.toml r? `@ghost` changelog: none
Configuration menu - View commit details
-
Copy full SHA for afbac89 - Browse repository at this point
Copy the full SHA afbac89View commit details
Commits on Oct 26, 2020
-
Configuration menu - View commit details
-
Copy full SHA for a1bb10e - Browse repository at this point
Copy the full SHA a1bb10eView commit details
Commits on Oct 27, 2020
-
Add
invalid_paths
internal lintMichael Wright committedOct 27, 2020 Configuration menu - View commit details
-
Copy full SHA for 66d56fe - Browse repository at this point
Copy the full SHA 66d56feView commit details -
Michael Wright committed
Oct 27, 2020 Configuration menu - View commit details
-
Copy full SHA for f79c4af - Browse repository at this point
Copy the full SHA f79c4afView commit details -
Auto merge of rust-lang#6244 - mikerite:invalid_paths_20201027, r=fli…
…p1995 New internal lint: Invalid paths Add a new internal lint that detects invalid paths in the `util::paths` and fix some invalid paths found. This commit partially addresses rust-lang#6047 but the lint would have to be run before running tests to close that issue. changelog: none
Configuration menu - View commit details
-
Copy full SHA for 8823684 - Browse repository at this point
Copy the full SHA 8823684View commit details -
Configuration menu - View commit details
-
Copy full SHA for 09e7053 - Browse repository at this point
Copy the full SHA 09e7053View commit details -
improve MATCH_LIKE_MATCHES_MACRO lint
- add tests - refactor match_same_arms lint - prioritize match_expr_like_matches_macro over match_same_arms
Configuration menu - View commit details
-
Copy full SHA for 2b7dd31 - Browse repository at this point
Copy the full SHA 2b7dd31View commit details -
Auto merge of rust-lang#6216 - alex-700:improve-match-like-matches-li…
…nt, r=ebroto Improve match like matches lint fixes rust-lang#6186 changelog: improve MATCH_LIKE_MATCHES_MACRO lint
Configuration menu - View commit details
-
Copy full SHA for de83f09 - Browse repository at this point
Copy the full SHA de83f09View commit details
Commits on Oct 28, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 8e988e1 - Browse repository at this point
Copy the full SHA 8e988e1View commit details -
Configuration menu - View commit details
-
Copy full SHA for dace756 - Browse repository at this point
Copy the full SHA dace756View commit details -
Configuration menu - View commit details
-
Copy full SHA for ffc2e66 - Browse repository at this point
Copy the full SHA ffc2e66View commit details -
Configuration menu - View commit details
-
Copy full SHA for c42a22d - Browse repository at this point
Copy the full SHA c42a22dView commit details -
Configuration menu - View commit details
-
Copy full SHA for a50d9e7 - Browse repository at this point
Copy the full SHA a50d9e7View commit details -
Configuration menu - View commit details
-
Copy full SHA for e83e79f - Browse repository at this point
Copy the full SHA e83e79fView commit details -
Auto merge of rust-lang#6257 - giraffate:sync-from-rust, r=ebroto
Rustup changelog: none
Configuration menu - View commit details
-
Copy full SHA for 645ef50 - Browse repository at this point
Copy the full SHA 645ef50View commit details -
Configuration menu - View commit details
-
Copy full SHA for 77da566 - Browse repository at this point
Copy the full SHA 77da566View commit details