mirror of
https://github.com/uutils/coreutils
synced 2025-01-25 11:25:26 +00:00
33 lines
859 B
TOML
33 lines
859 B
TOML
# spell-checker:ignore datetime
|
|
[package]
|
|
name = "uu_touch"
|
|
version = "0.0.24"
|
|
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 = { workspace = true }
|
|
clap = { workspace = true }
|
|
chrono = { workspace = true }
|
|
parse_datetime = { workspace = true }
|
|
uucore = { workspace = true, features = ["libc"] }
|
|
|
|
[target.'cfg(target_os = "windows")'.dependencies]
|
|
windows-sys = { workspace = true, features = [
|
|
"Win32_Storage_FileSystem",
|
|
"Win32_Foundation",
|
|
] }
|
|
|
|
[[bin]]
|
|
name = "touch"
|
|
path = "src/main.rs"
|