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 10 pull requests #90067

Merged
merged 30 commits into from
Oct 20, 2021
Merged
Changes from 1 commit
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
8731d4d
Automatic exponential formatting in Debug
ExpHP Jun 19, 2021
4b743bf
remove unnecessary bound on Zip specialization impl
the8472 Sep 9, 2021
947a33b
Add support for artifact size profiling
rylev Jul 23, 2021
757f76e
Update to measureme v10
rylev Oct 7, 2021
7936ecf
Make more `From` impls `const`
lilasta Oct 18, 2021
8b7a2dd
* Remove left margin on items declaration at the top of their documen…
GuillaumeGomez Oct 18, 2021
809330b
Prevent documentation page title to grow too big
GuillaumeGomez Oct 18, 2021
20c286e
Add GUI overflow tests for constant and typedef
GuillaumeGomez Oct 18, 2021
77c2929
Add test to ensure that the docblock elements left margin is as expected
GuillaumeGomez Oct 18, 2021
e2453dc
Revert "Rollup merge of #86011 - tlyu:correct-sized-bound-spans, r=es…
JohnTitor Oct 18, 2021
101a81b
Add a regression test for #89935
JohnTitor Oct 18, 2021
9aec3a0
Remove border-bottom from most docblocks.
jsha Oct 19, 2021
e399343
Reduce margin on h5 and h6
jsha Oct 19, 2021
e0c5ed0
Sort and categorize #![feature]s in alloc.
m-ou-se Aug 4, 2021
4ddc1f2
Remove unused library #![feature]s from alloc.
m-ou-se Aug 4, 2021
2104ac5
Remove unused language #![feature]s from alloc.
m-ou-se Aug 4, 2021
6fdcedc
Reenable feature(nll) in alloc.
m-ou-se Oct 19, 2021
9370156
Deduplicate panic_fmt
nbdd0121 Sep 11, 2021
7bd93df
Remove begin_panic_fmt from clippy
nbdd0121 Oct 19, 2021
3b53c8e
Update RELEASES.md
vincentdephily Oct 19, 2021
ca6798a
Rollup merge of #86479 - exphp-forks:float-debug-exponential, r=yaahc
JohnTitor Oct 19, 2021
3d95330
Rollup merge of #87404 - rylev:artifact-size-profiling, r=wesleywiser
JohnTitor Oct 19, 2021
71fcb72
Rollup merge of #87769 - m-ou-se:alloc-features-cleanup, r=yaahc,dtolnay
JohnTitor Oct 19, 2021
84fe598
Rollup merge of #88789 - the8472:rm-zip-bound, r=JohnTitor
JohnTitor Oct 19, 2021
f702499
Rollup merge of #88860 - nbdd0121:panic, r=m-ou-se
JohnTitor Oct 19, 2021
9f2ad0a
Rollup merge of #90009 - woppopo:const_from_more, r=dtolnay
JohnTitor Oct 19, 2021
7ceab9e
Rollup merge of #90018 - GuillaumeGomez:too-long-item-names, r=jsha
JohnTitor Oct 19, 2021
d8b3764
Rollup merge of #90025 - JohnTitor:revert-86011, r=estebank
JohnTitor Oct 19, 2021
570b999
Rollup merge of #90036 - jsha:less-rule, r=GuillaumeGomez
JohnTitor Oct 19, 2021
e54ebe9
Rollup merge of #90060 - vincentdephily:patch-1, r=Mark-Simulacrum
JohnTitor Oct 19, 2021
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
Prev Previous commit
Next Next commit
Remove unused language #![feature]s from alloc.
  • Loading branch information
m-ou-se committed Oct 19, 2021
commit 2104ac5706df99777d7bb7bebc264d3f439fba9f
5 changes: 0 additions & 5 deletions library/alloc/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -131,16 +131,12 @@
// Language features:
#![feature(allocator_internals)]
#![feature(allow_internal_unstable)]
#![feature(arbitrary_self_types)]
#![feature(associated_type_bounds)]
#![feature(auto_traits)]
#![feature(box_patterns)]
#![feature(box_syntax)]
#![feature(cfg_sanitize)]
#![feature(cfg_target_has_atomic)]
#![feature(const_fn_trait_bound)]
#![feature(const_trait_impl)]
#![feature(decl_macro)]
#![feature(destructuring_assignment)]
#![feature(dropck_eyepatch)]
#![feature(exclusive_range_pattern)]
Expand All @@ -150,7 +146,6 @@
#![feature(min_specialization)]
#![feature(negative_impls)]
#![feature(never_type)]
#![feature(nll)]
#![feature(rustc_allow_const_fn_unstable)]
#![feature(rustc_attrs)]
#![feature(staged_api)]
Expand Down