#![recursion_limit = "1024"]
#[macro_use]
extern crate error_chain;
extern crate backtrace;
extern crate regex;
#[macro_use]
extern crate serde_derive;
extern crate serde;
extern crate serde_json;
extern crate bincode;
extern crate term_painter;
extern crate num_cpus;
#[macro_use]
extern crate lazy_static;
pub extern crate toml;
pub mod log;
pub mod errors;
pub mod file_utils;
pub mod string_utils;
pub mod utils;
pub mod cpp_build_config;
pub mod cpp_lib_builder;
pub mod target;
#[derive(Debug, Clone)]
#[derive(Serialize, Deserialize)]
pub struct BuildScriptData {
pub cpp_build_config: cpp_build_config::CppBuildConfig,
pub cpp_lib_version: Option<String>,
pub cpp_wrapper_lib_name: String,
}
#[cfg(test)]
mod tests;