Skip to content

Rollup of 17 pull requests #48104

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

Closed
wants to merge 37 commits into from
Closed
Show file tree
Hide file tree
Changes from 3 commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
838ddbf
derive PartialEq and Eq for `ParseCharError`
tinaun Jan 26, 2018
505ef7b
Remove unused blake2b implementation
Mark-Simulacrum Jan 22, 2018
caa42e1
Remove VecCell
Mark-Simulacrum Jan 22, 2018
79d85da
Create a directory for --out-dir if it does not already exist
varkor Jan 29, 2018
7be8e2f
Add build.tools option to manage installation of extended rust tools.
o01eg Feb 5, 2018
daaa9a4
Fix ICE for mismatched args on target without span
etaoins Feb 7, 2018
528d6b6
rustdoc: Hide `-> ()` in cross crate inlined Fn* bounds
ollie27 Feb 7, 2018
78a0b7f
Refactor checks on list of extended tools.
o01eg Feb 7, 2018
37b5af2
Update binaryen to fix -Werror with GCC 8
cuviper Feb 7, 2018
04fde1c
intra-doc-links: bail early for linky things
Manishearth Feb 8, 2018
35dca7e
Add `rustc_args_required_const` to the feature whitelist
alexcrichton Feb 8, 2018
7a20fc1
Disallow function pointers to #[rustc_args_required_const]
alexcrichton Feb 8, 2018
e9bcb4e
Hide theme button under menu in mobile mode and fix top margin issue …
GuillaumeGomez Feb 8, 2018
64a8730
rustbuild: Pass `ccache` to build scripts
alexcrichton Feb 7, 2018
bb0df96
Update the dlmalloc submodule
alexcrichton Feb 9, 2018
774997d
Fix visitation order of calls so that it matches execution order. Fix…
Zoxc Feb 9, 2018
b521c77
Forcibly disable optimizations in backtrace-debuginfo
alexcrichton Feb 9, 2018
866d13a
Don't cross-compile Emscripten's LLVM
alexcrichton Feb 9, 2018
9c05bab
ci: Actually bootstrap on i686 dist
alexcrichton Feb 9, 2018
fe8e0d9
Update books for next release
Mark-Simulacrum Feb 9, 2018
270e6aa
Rollup merge of #47790 - tinaun:patch-1, r=sfackler
kennytm Feb 9, 2018
df1c16c
Rollup merge of #47835 - Mark-Simulacrum:remove-data-structs, r=nikom…
kennytm Feb 9, 2018
7c17ac8
Rollup merge of #47854 - varkor:create-out-dir, r=pnkfelix
kennytm Feb 9, 2018
ebbc35b
Rollup merge of #48015 - o01eg:disableable-installation, r=alexcrichton
kennytm Feb 9, 2018
67d4800
Rollup merge of #48047 - etaoins:fix-ice-for-mismatched-args-on-targe…
kennytm Feb 9, 2018
f3ee01e
Rollup merge of #48051 - ollie27:rustdoc_fn_unit_return, r=QuietMisdr…
kennytm Feb 9, 2018
b7f8fa6
Rollup merge of #48058 - cuviper:binaryen-gcc8, r=alexcrichton
kennytm Feb 9, 2018
b182bf1
Rollup merge of #48059 - alexcrichton:sccachebs, r=Mark-Simulacrum
kennytm Feb 9, 2018
ec01b28
Rollup merge of #48064 - Manishearth:intra-doc-bail, r=QuietMisdreavus
kennytm Feb 9, 2018
6747b17
Rollup merge of #48078 - alexcrichton:fix-required-const-and-proc-mac…
kennytm Feb 9, 2018
cbc3b8c
Rollup merge of #48080 - GuillaumeGomez:mobile-docs-fixes, r=QuietMis…
kennytm Feb 9, 2018
1ef535e
Rollup merge of #48085 - alexcrichton:update-dlmalloc, r=Mark-Simulacrum
kennytm Feb 9, 2018
4ed1ba6
Rollup merge of #48086 - Zoxc:gen-fix, r=nikomatsakis
kennytm Feb 9, 2018
671206b
Rollup merge of #48090 - alexcrichton:disable-opt-test, r=nikomatsakis
kennytm Feb 9, 2018
e471747
Rollup merge of #48093 - alexcrichton:dont-cross-emscripten, r=Mark-S…
kennytm Feb 9, 2018
258be62
Rollup merge of #48098 - alexcrichton:fix-i686-dist-bootstrap, r=Mark…
kennytm Feb 9, 2018
878e701
Rollup merge of #48101 - Mark-Simulacrum:new-books, r=steveklabnik Up…
kennytm Feb 9, 2018
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
363 changes: 0 additions & 363 deletions src/librustc_data_structures/blake2b.rs

This file was deleted.

2 changes: 0 additions & 2 deletions src/librustc_data_structures/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@ pub mod small_vec;
pub mod base_n;
pub mod bitslice;
pub mod bitvec;
pub mod blake2b;
pub mod graph;
pub mod indexed_set;
pub mod indexed_vec;
Expand All @@ -70,7 +69,6 @@ pub mod transitive_relation;
pub mod unify;
pub mod fx;
pub mod tuple_slice;
pub mod veccell;
pub mod control_flow_graph;
pub mod flock;
pub mod sync;
Expand Down
Loading