Update to serde 1.0

This commit is contained in:
Oliver Schneider
2017-05-09 15:23:10 +02:00
parent 0683ca6ec1
commit 8225c23a33
4 changed files with 8 additions and 8 deletions

View File

@@ -124,7 +124,7 @@ pub mod ranges;
pub mod reference;
pub mod regex;
pub mod returns;
pub mod serde;
pub mod serde_api;
pub mod shadow;
pub mod should_assert_eq;
pub mod strings;
@@ -202,7 +202,7 @@ pub fn register_plugins(reg: &mut rustc_plugin::Registry) {
);
// end deprecated lints, do not remove this comment, its used in `update_lints`
reg.register_late_lint_pass(box serde::Serde);
reg.register_late_lint_pass(box serde_api::Serde);
reg.register_early_lint_pass(box utils::internal_lints::Clippy);
reg.register_late_lint_pass(box utils::internal_lints::LintWithoutLintPass::default());
reg.register_late_lint_pass(box utils::inspector::Pass);