Skip to content

Commit

Permalink
fix(rustup): Update serde_codegen to reflect Registry move
Browse files Browse the repository at this point in the history
  • Loading branch information
erickt committed Nov 29, 2015
1 parent 966b104 commit 09822c9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions serde_macros/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
#![feature(plugin_registrar, rustc_private)]

extern crate serde_codegen;
extern crate rustc;
extern crate rustc_plugin;

#[plugin_registrar]
#[doc(hidden)]
pub fn plugin_registrar(reg: &mut rustc::plugin::Registry) {
pub fn plugin_registrar(reg: &mut rustc_plugin::Registry) {
serde_codegen::register(reg);
}

0 comments on commit 09822c9

Please sign in to comment.