tmpl-resolver 0.0.14

A lightweight template resolution engine with conditional logic support
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use std::io;

use tap::Pipe;
use testutils::os_cmd::{Runner, presets::CargoFmt};

#[ignore]
#[test]
fn fmt() -> io::Result<()> {
  CargoFmt::default()
    .pipe(Runner::from)
    .run()
}