yup-oauth2 1.0.3

An oauth2 implementation, providing the 'device', 'service account' and 'installed' authorization flows
Documentation
#[cfg(feature = "with-serde-codegen")]
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/lib.rs.in");
        let dst = Path::new(&out_dir).join("lib.rs");

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

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

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