Skip to content

Commit 32c7bdc

Browse files
committed
Fix the travis build on nightly
As of rust-lang/rust#30043, `rustc::plugin` is now `rustc_plugin`.
1 parent 9e3b7f8 commit 32c7bdc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

quickcheck_macros/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
#![feature(plugin_registrar, rustc_private)]
99

1010
extern crate syntax;
11-
extern crate rustc;
11+
extern crate rustc_plugin;
1212

1313
use syntax::abi;
1414
use syntax::ast;
@@ -20,7 +20,7 @@ use syntax::ext::base::{ExtCtxt, MultiModifier, Annotatable};
2020
use syntax::ext::build::AstBuilder;
2121
use syntax::ptr::P;
2222

23-
use rustc::plugin::Registry;
23+
use rustc_plugin::Registry;
2424

2525
/// For the `#[quickcheck]` attribute. Do not use.
2626
#[plugin_registrar]

0 commit comments

Comments
 (0)