senax 0.1.6

SenaX ORM for Rust
1
2
3
4
5
6
7
8
9
10
use includedir_codegen::Compression;

fn main() {
    println!("cargo:rerun-if-changed=templates");

    includedir_codegen::start("TEMPLATES")
        .dir("templates", Compression::Gzip)
        .build("templates.rs")
        .unwrap();
}