sourcemap 0.9.1

Basic sourcemap handling for Rust
Documentation
#[cfg(not(feature="serde_derive"))]
mod inner {
    extern crate serde_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/jsontypes.rs.in");
        let dst = Path::new(&out_dir).join("jsontypes.rs");

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

#[cfg(feature="serde_derive")]
mod inner {
    pub fn main() {}
}

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