wrouch 0.1.1

Wrouch is a cli tool that implements `touch` by Rust and supports Windows.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#![feature(file_set_times)]
use clap::Parser;

mod cli;

use cli::{Executor, Cli};

fn main() {
    let cli = Cli::parse();
    let mut exc = Executor::with_cli(cli);
    exc.execute();
}