Rename serde_internals to serde_codegen_internals

This commit is contained in:
David Tolnay
2016-06-30 19:53:57 -07:00
parent c6b6e2a5d9
commit 2d5a26dfc0
10 changed files with 29 additions and 23 deletions
+17
View File
@@ -0,0 +1,17 @@
#![cfg_attr(feature = "nightly-testing", plugin(clippy))]
#![cfg_attr(feature = "nightly-testing", feature(plugin))]
#![cfg_attr(not(feature = "with-syntex"), feature(rustc_private, plugin))]
#[cfg(feature = "with-syntex")]
#[macro_use]
extern crate syntex_syntax as syntax;
#[cfg(not(feature = "with-syntex"))]
#[macro_use]
extern crate syntax;
pub mod ast;
pub mod attr;
mod error;
pub use error::Error;