serde_codegen 0.7.11

Macros to auto-generate implementations for the serde framework
Documentation
#[cfg(feature = "with-syntex")]
mod inner {
    extern crate quasi_codegen;

    use std::env;
    use std::path::Path;

    pub fn main() {
        let out_dir = env::var_os("OUT_DIR").unwrap();

        let src = Path::new("src/lib.rs.in");
        let dst = Path::new(&out_dir).join("lib.rs");

        quasi_codegen::expand(&src, &dst).unwrap();
    }
}

#[cfg(not(feature = "with-syntex"))]
mod inner {
    pub fn main() {}
}

fn main() {
    inner::main();
}