Skip to content
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

Rollup of 6 pull requests #68271

Closed
wants to merge 20 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
6d5170c
Move some queries from rustc::ty to librustc_passes.
cjgillot Jan 1, 2020
daff425
resolve: Move privacy error reporting into a separate method
petrochenkov Jan 12, 2020
4d596e8
resolve: Point at the private item definitions in privacy errors
petrochenkov Jan 12, 2020
a68334a
resolve: Say "import" when reporting private imports
petrochenkov Jan 12, 2020
9908a87
Move to new crate rustc_ty.
cjgillot Jan 13, 2020
894dc2d
Do not forget to provide queries.
cjgillot Jan 13, 2020
78bd75a
Update some of Cargo's dependencies
alexcrichton Jan 8, 2020
33bc9ef
Use 3.6 instead of 3.5 in float fract() documentation
SOF3 Jan 14, 2020
bf0a784
Fix issue number of `member_constraints`
JohnTitor Jan 16, 2020
54b9616
Update f32.rs
Stromberg90 Jan 16, 2020
3f337b3
Update f64.rs
Stromberg90 Jan 16, 2020
d0db6d5
Update f32.rs
Stromberg90 Jan 16, 2020
49d8aeb
Fix issue number of `repr128`
JohnTitor Jan 16, 2020
91c6a5a
Fix issue number of `infer_static_outlives_requirements`
JohnTitor Jan 16, 2020
6b069d6
Rollup merge of #67780 - cjgillot:passes-ty, r=Zoxc
Dylan-DPC Jan 16, 2020
30ef7e1
Rollup merge of #68012 - alexcrichton:update-some-deps, r=Mark-Simula…
Dylan-DPC Jan 16, 2020
d349273
Rollup merge of #68153 - petrochenkov:privdiag, r=estebank
Dylan-DPC Jan 16, 2020
e115881
Rollup merge of #68223 - SOF3:float-fract-doc, r=varkor
Dylan-DPC Jan 16, 2020
97e3928
Rollup merge of #68265 - JohnTitor:fix-issue-number, r=Dylan-DPC
Dylan-DPC Jan 16, 2020
54a25c8
Rollup merge of #68266 - Stromberg90:patch-2, r=Dylan-DPC
Dylan-DPC Jan 16, 2020
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
690 changes: 332 additions & 358 deletions Cargo.lock

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# `infer_static_outlives_requirements`

The tracking issue for this feature is: [#44493]
The tracking issue for this feature is: [#54185]

[#44493]: https://github.com/rust-lang/rust/issues/44493
[#54185]: https://github.com/rust-lang/rust/issues/54185

------------------------
The `infer_static_outlives_requirements` feature indicates that certain
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# `member_constraints`

The tracking issue for this feature is: [#61977]
The tracking issue for this feature is: [#61997]

[#61977]: https://github.com/rust-lang/rust/issues/61977
[#61997]: https://github.com/rust-lang/rust/issues/61997

------------------------

Expand Down
4 changes: 2 additions & 2 deletions src/doc/unstable-book/src/language-features/repr128.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# `repr128`

The tracking issue for this feature is: [#35118]
The tracking issue for this feature is: [#56071]

[#35118]: https://github.com/rust-lang/rust/issues/35118
[#56071]: https://github.com/rust-lang/rust/issues/56071

------------------------

Expand Down
Loading