thumbor 0.1.1

A Rust client for the Thumbor image service
1
2
3
4
5
6
7
8
fn main() {
    // Copy the images to the output when generating documentation
    println!("cargo:rerun-if-changed=assets/doc");
    std::fs::create_dir_all("target/doc")
        .expect("Failed to create target/doc directory when building documentation.");
    std::fs::copy("assets/doc/logo.svg", "target/doc/logo.svg")
        .expect("Failed to copy crate logo when building documentation.");
}