conductor 0.0.7

Faraday Conductor: Develop and orchestrate multi-pod docker-compose apps
Documentation
//! This script is run automatically before building any source code.  It
//! can include 3rd-party Rust dependencies and use them to generate Rust
//! source code for us to compile.

extern crate includedir_codegen;
extern crate glob;

use includedir_codegen::Compression;

fn main() {
    // Don't re-run this script unless one of the inputs has changed.
    for entry in glob::glob("data/**/*").expect("Failed to read glob pattern") {
        println!("cargo:rerun-if-changed={}", entry.unwrap().display());
    }

    // Based on example build.rs: https://github.com/tilpner/includedir
    includedir_codegen::start("DATA")
        .dir("data", Compression::None)
        .build("data.rs")
        .unwrap();
}