Ship tera templates in a crate without embedding them into the binary

251 Views Asked by At

I am using tera and want to make a CLI that acts as a new project generator (think rails scaffold). There will be quite a few templates and I would like to ship them in my crate as an asset file and read from disk instead of using include_str! and embedding the strings directly in the resulting binary.

Are there any crates that use this strategy that I could maybe reference? Is it possible to ship non-rust assets in a crate and have the referenced on disk later?

0

There are 0 best solutions below