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

Update Rust to 1.12.0-nightly (1deb02ea6 2016-08-12) #12846

Merged
merged 3 commits into from Aug 13, 2016
Merged
Changes from 1 commit
Commits
File filter...
Filter file types
Jump to…
Jump to file
Failed to load files.

Always

Just for now

Next

Remove rust_tenacious

We don't use it anymore since #11872.
  • Loading branch information
nox committed Aug 13, 2016
commit f12fad7953e67970733f7310224aa332e3165c0e
@@ -10,9 +10,6 @@ name = "plugins"
path = "lib.rs"
plugin = true

[dependencies]
tenacious = "0.2.0"

[dependencies.clippy_lints]
version = "0.0.77"
optional = true
@@ -25,7 +25,6 @@ extern crate rustc_plugin;
#[macro_use]
extern crate syntax;
extern crate syntax_ext;
extern crate tenacious;

use rustc_plugin::Registry;
use syntax::ext::base::*;
@@ -53,7 +52,6 @@ pub fn plugin_registrar(reg: &mut Registry) {
reg.register_late_lint_pass(box lints::inheritance_integrity::InheritancePass);
reg.register_late_lint_pass(box lints::transmute_type::TransmutePass);
reg.register_early_lint_pass(box lints::ban::BanPass);
reg.register_late_lint_pass(box tenacious::TenaciousPass);
reg.register_attribute("must_root".to_string(), Whitelisted);
reg.register_attribute("servo_lang".to_string(), Whitelisted);
reg.register_attribute("allow_unrooted_interior".to_string(), Whitelisted);

Some generated files are not rendered by default. Learn more.

Some generated files are not rendered by default. Learn more.

ProTip! Use n and p to navigate between commits in a pull request.
You can’t perform that action at this time.