Skip to content
Navigation Menu
Sign in
Appearance settings
Platform
AI CODE CREATION
GitHub Copilot
Write better code with AI
GitHub Copilot app
Direct agents from issue to merge
MCP Registry
Integrate external tools
DEVELOPER WORKFLOWS
Actions
Automate any workflow
Codespaces
Instant dev environments
Issues
Plan and track work
Code Review
Manage code changes
Code Quality
Enforce quality at merge
APPLICATION SECURITY
GitHub Advanced Security
Find and fix vulnerabilities
Code security
Secure your code as you build
Secret protection
Stop leaks before they start
EXPLORE
Why GitHub
Documentation
Blog
Changelog
Marketplace
View all features
Solutions
BY COMPANY SIZE
Enterprises
Small and medium teams
Startups
Nonprofits
BY USE CASE
App Modernization
DevSecOps
DevOps
CI/CD
View all use cases
BY INDUSTRY
Healthcare
Financial services
Manufacturing
Government
View all industries
View all solutions
Resources
EXPLORE BY TOPIC
AI
Software Development
DevOps
Security
View all topics
EXPLORE BY TYPE
Customer stories
Events & webinars
Ebooks & reports
Business insights
GitHub Skills
SUPPORT & SERVICES
Documentation
Customer support
Community forum
Trust center
Partners
View all resources
Open Source
COMMUNITY
GitHub Sponsors
Fund open source developers
PROGRAMS
Security Lab
Maintainer Community
GitHub Stars
Archive Program
REPOSITORIES
Topics
Trending
Collections
Enterprise
ENTERPRISE SOLUTIONS
Enterprise platform
AI-powered developer platform
AVAILABLE ADD-ONS
GitHub Advanced Security
Enterprise-grade security features
Copilot for Business
Enterprise-grade AI features
Premium Support
Enterprise-grade 24/7 support
Pricing
Search
/
Sign in
Sign up
Appearance settings
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
rust-lang
/
rust
Public
Uh oh!
There was an error while loading.
Please reload this page
.
Notifications
You must be signed in to change notification settings
Fork
16.2k
Star
119k
Code
Issues
5k+
Pull requests
1.4k
Actions
Projects
Security and quality
6
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Rollup of 12 pull requests
- #81748
#81748
Closed
m-ou-se
wants to merge 33 commits into
rust-lang:master
rust-lang/rust:master
from
m-ou-se:rollup-gtwdrzm
m-ou-se/rust:rollup-gtwdrzm
Copy head branch name to clipboard
Conversation
Commits
33
(33)
Checks
Files changed
Closed
Rollup of 12 pull requests
#81748
m-ou-se
wants to merge 33 commits into
rust-lang:master
rust-lang/rust:master
from
m-ou-se:rollup-gtwdrzm
m-ou-se/rust:rollup-gtwdrzm
Copy head branch name to clipboard
Commits
Commits on Jan 26, 2021
tidy: Run tidy style against markdown files.
ehuss
committed
8909830
View commit details
Copy full SHA for 8909830
Browse repository at this point
Elaborate on rustdoc example reason for being ignored.
ehuss
committed
07cd499
View commit details
Copy full SHA for 07cd499
Browse repository at this point
Commits on Jan 28, 2021
Fix rustc sysroot in systems using CAS
Show description for 3f679fe
rcvalle
committed
3f679fe
View commit details
Copy full SHA for 3f679fe
Browse repository at this point
Commits on Jan 29, 2021
Fix has_body for trait methods
CraftSpider
committed
a2f5c72
View commit details
Copy full SHA for a2f5c72
Browse repository at this point
Remove leading newline
CraftSpider
committed
1c60d27
View commit details
Copy full SHA for 1c60d27
Browse repository at this point
rustdoc: Move `display_fn` struct inside `display_fn`
Show description for c34faad
camelid
committed
c34faad
View commit details
Copy full SHA for c34faad
Browse repository at this point
Commits on Feb 2, 2021
introduce future-compatibility warning for forbidden lint groups
Show description for b6b897b
nikomatsakis
committed
b6b897b
View commit details
Copy full SHA for b6b897b
Browse repository at this point
Add additional benchmarks to bit_set
JulianKnodt
committed
6e6608d
View commit details
Copy full SHA for 6e6608d
Browse repository at this point
Commits on Feb 3, 2021
OsStr eq_ignore_ascii_case takes arg by value
Show description for 4d1efb7
TyPR124
authored
4d1efb7
View commit details
Copy full SHA for 4d1efb7
Browse repository at this point
Add more information to the error code for 'crate not found'
Show description for 82914a5
jyn514
committed
82914a5
View commit details
Copy full SHA for 82914a5
Browse repository at this point
move test to be with the others
mark-i-m
committed
3719247
View commit details
Copy full SHA for 3719247
Browse repository at this point
Revert stabilizing integer::BITS.
m-ou-se
committed
8988238
View commit details
Copy full SHA for 8988238
Browse repository at this point
Add lint for `panic!(123)` which is not accepted in Rust 2021.
Show description for a616f82
m-ou-se
committed
a616f82
View commit details
Copy full SHA for a616f82
Browse repository at this point
Make panic/assert calls in rustc compatible with Rust 2021.
m-ou-se
committed
34d5ac2
View commit details
Copy full SHA for 34d5ac2
Browse repository at this point
Allow/fix non_fmt_panic in tests.
m-ou-se
committed
e9ad5be
View commit details
Copy full SHA for e9ad5be
Browse repository at this point
Update panic!() documentation about non-string panics.
m-ou-se
committed
753b0b0
View commit details
Copy full SHA for 753b0b0
Browse repository at this point
Fix/allow non_fmt_panic in clippy tests.
m-ou-se
committed
3f3eb89
View commit details
Copy full SHA for 3f3eb89
Browse repository at this point
Suggest panic!("{}", ..) instead of panic!(..) clippy::expect_fun_call.
m-ou-se
committed
0870c15
View commit details
Copy full SHA for 0870c15
Browse repository at this point
Commits on Feb 4, 2021
Rename Iterator::fold_first to reduce.
m-ou-se
committed
5c056ed
View commit details
Copy full SHA for 5c056ed
Browse repository at this point
Improve documentation of Iterator::{fold, reduce}.
m-ou-se
committed
26af55f
View commit details
Copy full SHA for 26af55f
Browse repository at this point
Stabilize feature(iterator_fold_self): Iterator::reduce
m-ou-se
committed
24e0940
View commit details
Copy full SHA for 24e0940
Browse repository at this point
Rollup merge of #79253 - rcvalle:fix-rustc-sysroot-cas, r=nagisa
Show description for e390c63
m-ou-se
authored
e390c63
View commit details
Copy full SHA for e390c63
Browse repository at this point
Rollup merge of #79805 - m-ou-se:iterator-reduce, r=KodrAus
Show description for 08b4289
m-ou-se
authored
08b4289
View commit details
Copy full SHA for 08b4289
Browse repository at this point
Rollup merge of #81318 - CraftSpider:json-trait-fix, r=jyn514
Show description for e16b0bf
m-ou-se
authored
e16b0bf
View commit details
Copy full SHA for e16b0bf
Browse repository at this point
Rollup merge of #81402 - ehuss:md-tidy, r=jyn514
Show description for 93d5b5f
m-ou-se
authored
93d5b5f
View commit details
Copy full SHA for 93d5b5f
Browse repository at this point
Rollup merge of #81497 - camelid:rustdoc-display_fn-remove-cell, r=jyn514
Show description for e044c57
m-ou-se
authored
e044c57
View commit details
Copy full SHA for e044c57
Browse repository at this point
Rollup merge of #81556 - nikomatsakis:forbidden-lint-groups-lint, r=pnkfelix
Show description for ed4d311
m-ou-se
authored
ed4d311
View commit details
Copy full SHA for ed4d311
Browse repository at this point
Rollup merge of #81645 - m-ou-se:panic-lint, r=estebank,flip1995
Show description for aa197c3
m-ou-se
authored
aa197c3
View commit details
Copy full SHA for aa197c3
Browse repository at this point
Rollup merge of #81676 - jyn514:crate-not-found, r=oli-obk
Show description for 36e28a2
m-ou-se
authored
36e28a2
View commit details
Copy full SHA for 36e28a2
Browse repository at this point
Rollup merge of #81682 - JulianKnodt:bit_set_iter_benchmarks, r=oli-obk
Show description for 0f22b9f
m-ou-se
authored
0f22b9f
View commit details
Copy full SHA for 0f22b9f
Browse repository at this point
Rollup merge of #81710 - TyPR124:patch-2, r=m-ou-se
Show description for 6072a3a
m-ou-se
authored
6072a3a
View commit details
Copy full SHA for 6072a3a
Browse repository at this point
Rollup merge of #81725 - mark-i-m:mv-test, r=Mark-Simulacrum
Show description for e213c7c
m-ou-se
authored
e213c7c
View commit details
Copy full SHA for e213c7c
Browse repository at this point
Rollup merge of #81727 - m-ou-se:unstabilize-bits, r=Mark-Simulacrum
Show description for 0e2c370
m-ou-se
authored
0e2c370
View commit details
Copy full SHA for 0e2c370
Browse repository at this point
You can’t perform that action at this time.