pub static CRATE_CARGO_TOML: &str = include_str!(concat!(
env!("CARGO_MANIFEST_DIR"),
"/assets/crate/Cargo.toml.template"
));
pub static CRATE_LIB_RS: &str = include_str!(concat!(
env!("CARGO_MANIFEST_DIR"),
"/assets/crate/src/lib.rs"
));
pub static DEMO_HTML: &str = include_str!(concat!(env!("CARGO_MANIFEST_DIR"), "/assets/demo.html"));
pub static STOP_WORDS: &str =
include_str!(concat!(env!("CARGO_MANIFEST_DIR"), "/assets/stopwords"));
pub static JS_LOADER: &str = include_str!(concat!(
env!("CARGO_MANIFEST_DIR"),
"/assets/tinysearch_loader.js"
));