uu_touch 0.0.15

touch ~ (uutils) change FILE timestamps
Documentation
[package]
name = "uu_touch"
version = "0.0.15"
authors = ["uutils developers"]
license = "MIT"
description = "touch ~ (uutils) change FILE timestamps"

homepage = "https://github.com/uutils/coreutils"
repository = "https://github.com/uutils/coreutils/tree/main/src/uu/touch"
keywords = ["coreutils", "uutils", "cross-platform", "cli", "utility"]
categories = ["command-line-utilities"]
edition = "2021"

[lib]
path = "src/touch.rs"

[dependencies]
filetime = "0.2.17"
clap = { version = "3.2", features = ["wrap_help", "cargo"] }
time = { version = "0.3", features = ["parsing", "formatting", "local-offset", "macros"] }
uucore = { version=">=0.0.15", package="uucore", path="../../uucore", features=["libc"] }

[target.'cfg(target_os = "windows")'.dependencies]
winapi = { version = "0.3" }

[[bin]]
name = "touch"
path = "src/main.rs"