1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
/* * Copyright (C) 2021 Aravinth Manivannan <realaravinth@batsense.net> * * Use of this source code is governed by the Apache 2.0 and/or the MIT * License. */ #![warn(missing_docs, missing_debug_implementations, rust_2018_idioms)] //! ```no_run //! use cache_buster::BusterBuilder; //! //! fn main() { //! // note: add error checking yourself. //! // println!("cargo:rustc-env=GIT_process={}", git_process); //! let types = vec![ //! mime::IMAGE_PNG, //! mime::IMAGE_SVG, //! mime::IMAGE_JPEG, //! mime::IMAGE_GIF, //! ]; //! //! let config = BusterBuilder::default() //! .source("./dist") //! .result("./prod") //! .mime_types(types) //! .copy(true) //! .follow_links(true) //! .build() //! .unwrap(); //! //! config.process().unwrap(); //! } //! ``` pub mod processor; pub use processor::BusterBuilder; pub mod filemap; pub use filemap::Files; /// file to which filemap is written during compilation /// include this to `.gitignore` pub const CACHE_BUSTER_DATA_FILE: &str = "./src/cache_buster_data.json";