iftree 1.0.7

Include many files in your Rust code for self-contained binaries
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#[iftree::include_file_tree(
    "
paths = '/examples/assets/**'
template.identifiers = false
"
)]
pub struct Asset;

fn main() {
    assert_eq!(ASSETS.len(), 6);

    // No module `base` is generated.
    // use base::*;
}