mirror of
https://github.com/OMGeeky/yup-oauth2.git
synced 2026-01-07 03:31:31 +01:00
It doesn't yet work on nightly due to a panic in https://goo.gl/RyM4GT Might have something to do with me being on nightly, and some cargo-related hickoup.
28 lines
600 B
Rust
28 lines
600 B
Rust
#[cfg(feature = "with_syntex")]
|
|
mod inner {
|
|
extern crate syntex;
|
|
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");
|
|
|
|
let mut registry = syntex::Registry::new();
|
|
serde_codegen::register(&mut registry);
|
|
registry.expand("yup-oauth2", &src, &dst).unwrap();
|
|
}
|
|
}
|
|
|
|
#[cfg(not(feature = "with_syntex"))]
|
|
mod inner {
|
|
pub fn main() {}
|
|
}
|
|
|
|
pub fn main() {
|
|
inner::main()
|
|
} |