Skip to content

Rollup of 18 pull requests #58316

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

Merged
merged 39 commits into from
Feb 9, 2019
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
3ad0aab
Transition build_helper to 2018 edition
h-michael Feb 3, 2019
fab032a
Transition compiletest to Rust 2018
phansch Feb 3, 2019
a6f2f7f
Transition rustdoc to 2018 edition
h-michael Feb 3, 2019
44b2cc0
librustc_allocator => 2018
taiki-e Feb 6, 2019
ba0fbd7
librustc_save_analysis => 2018
taiki-e Feb 6, 2019
f03704b
Transition librustc_traits to 2018 edition
h-michael Feb 7, 2019
81613ad
disable tests in Miri
RalfJung Feb 7, 2019
725af30
librustc_mir => 2018
taiki-e Feb 7, 2019
efa8fb0
error_index_generator => 2018
taiki-e Feb 8, 2019
7815c9b
Revert removed #![feature(nll)]
taiki-e Feb 8, 2019
d251452
Use real try blocks
taiki-e Feb 8, 2019
c9bc85e
Remove #[macro_use] extern crate bitflags
taiki-e Feb 8, 2019
6140134
librustc_lint => 2018
taiki-e Feb 8, 2019
bf531bd
librustc_passes => 2018
taiki-e Feb 8, 2019
7267bc2
librustc_metadata => 2018
taiki-e Feb 8, 2019
fed677e
librustc_cratesio_shim => 2018
taiki-e Feb 8, 2019
a7241c8
librustc_target => 2018
taiki-e Feb 8, 2019
0e622a8
librustc_codegen_utils => 2018
taiki-e Feb 8, 2019
a2c4a36
librustc_borrowck => 2018
taiki-e Feb 8, 2019
4f2e97e
librustc_incremental => 2018
taiki-e Feb 8, 2019
3e2b5a4
librustc_data_structures => 2018
taiki-e Feb 8, 2019
dbd73f6
Rollup merge of #58091 - phansch:compiletest2018, r=Centril
Centril Feb 8, 2019
f674779
Rollup merge of #58115 - h-michael:rustdoc-2018, r=Centril
Centril Feb 8, 2019
6f5941e
Rollup merge of #58120 - h-michael:build_helper-theme-2018, r=Centril
Centril Feb 8, 2019
5b4cf9b
Rollup merge of #58222 - taiki-e:librustc_allocator-2018, r=Centril
Centril Feb 8, 2019
2b8ed1e
Rollup merge of #58233 - taiki-e:librustc_save_analysis-2018, r=Centril
Centril Feb 8, 2019
543f457
Rollup merge of #58245 - taiki-e:librustc_lint-2018, r=Centril
Centril Feb 8, 2019
50df4d1
Rollup merge of #58247 - taiki-e:librustc_passes-2018, r=Centril
Centril Feb 8, 2019
379a048
Rollup merge of #58251 - h-michael:librustc_traits-2018, r=Centril
Centril Feb 8, 2019
8cbee1c
Rollup merge of #58255 - taiki-e:librustc_metadata-2018, r=Centril
Centril Feb 8, 2019
21509b8
Rollup merge of #58256 - taiki-e:librustc_cratesio_shim-2018, r=Centril
Centril Feb 8, 2019
869135c
Rollup merge of #58257 - taiki-e:librustc_target-2018, r=Centril
Centril Feb 8, 2019
d7a4dd1
Rollup merge of #58259 - taiki-e:librustc_codegen_utils-2018, r=Centril
Centril Feb 8, 2019
c3d365f
Rollup merge of #58260 - taiki-e:librustc_borrowck-2018, r=Centril
Centril Feb 8, 2019
4476e4f
Rollup merge of #58261 - taiki-e:librustc_incremental-2018, r=Centril
Centril Feb 8, 2019
c3b4102
Rollup merge of #58265 - taiki-e:librustc_mir-2018, r=matthewjasper
Centril Feb 8, 2019
9708644
Rollup merge of #58275 - RalfJung:miri-test-libcore, r=Mark-Simulacrum
Centril Feb 8, 2019
5e208f6
Rollup merge of #58285 - taiki-e:error_index_generator-2018, r=Centril
Centril Feb 8, 2019
068a926
Rollup merge of #58312 - taiki-e:librustc_data_structures-2018, r=Cen…
Centril Feb 8, 2019
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
1 change: 1 addition & 0 deletions src/build_helper/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
name = "build_helper"
version = "0.1.0"
authors = ["The Rust Project Developers"]
edition = "2018"

[lib]
name = "build_helper"
Expand Down
2 changes: 2 additions & 0 deletions src/build_helper/lib.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#![deny(rust_2018_idioms)]

use std::fs::File;
use std::path::{Path, PathBuf};
use std::process::{Command, Stdio};
Expand Down