templatex 0.5.3

A template engine for LaTeX projects This tool allows you to create a new LaTeX project from a template. Using Templatex, you can easily scaffold LaTeX projects from you templates, with the ability to set boilerplate values. Developed by Jayan Sunil <https://github.com/jayanaxhf/templatex>
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use anyhow::Result;
use vergen_gix::{BuildBuilder, CargoBuilder, Emitter, GixBuilder};

fn main() -> Result<()> {
    let build = BuildBuilder::all_build()?;
    let gix = GixBuilder::all_git()?;
    let cargo = CargoBuilder::all_cargo()?;
    Emitter::default()
        .add_instructions(&build)?
        .add_instructions(&gix)?
        .add_instructions(&cargo)?
        .emit()
}