From bf72d326620978b7ffe59e7982bc48de74b16a0d Mon Sep 17 00:00:00 2001 From: Manish Goregaokar Date: Sat, 28 Nov 2015 15:54:43 +0530 Subject: [PATCH 1/2] Upgrade rust to rustc 1.6.0-nightly (1727dee16 2015-11-26) --- regex_macros/src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/regex_macros/src/lib.rs b/regex_macros/src/lib.rs index 83197644dd..ff41c71b7b 100644 --- a/regex_macros/src/lib.rs +++ b/regex_macros/src/lib.rs @@ -19,7 +19,7 @@ extern crate regex; extern crate syntax; -extern crate rustc; +extern crate rustc_plugin; use syntax::ast; use syntax::codemap; @@ -30,7 +30,7 @@ use syntax::print::pprust; use syntax::fold::Folder; use syntax::ptr::P; -use rustc::plugin::Registry; +use rustc_plugin::Registry; use regex::Regex; use regex::internal::{ From 575b4127f49e634c494e4ad8bd3de48a2576f872 Mon Sep 17 00:00:00 2001 From: Manish Goregaokar Date: Sat, 28 Nov 2015 15:55:01 +0530 Subject: [PATCH 2/2] Bump regex_macros to 0.1.24 --- regex_macros/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/regex_macros/Cargo.toml b/regex_macros/Cargo.toml index 2410beda98..b4cc5c7a67 100644 --- a/regex_macros/Cargo.toml +++ b/regex_macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "regex_macros" -version = "0.1.23" +version = "0.1.24" authors = ["The Rust Project Developers"] license = "MIT/Apache-2.0" repository = "https://github.com/rust-lang/regex"