mirror of
https://github.com/uutils/coreutils
synced 2025-01-10 20:29:19 +00:00
ca670148f2
Bumps [time](https://github.com/time-rs/time) from 0.1.43 to 0.3.9. - [Release notes](https://github.com/time-rs/time/releases) - [Changelog](https://github.com/time-rs/time/blob/main/CHANGELOG.md) - [Commits](https://github.com/time-rs/time/compare/v0.1.43...v0.3.9) --- updated-dependencies: - dependency-name: time dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
28 lines
836 B
TOML
28 lines
836 B
TOML
[package]
|
|
name = "uu_touch"
|
|
version = "0.0.13"
|
|
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.1"
|
|
clap = { version = "3.1", features = ["wrap_help", "cargo"] }
|
|
time = { version = "0.3", features = ["parsing", "formatting", "local-offset", "macros"] }
|
|
uucore = { version=">=0.0.11", package="uucore", path="../../uucore", features=["libc"] }
|
|
|
|
[target.'cfg(target_os = "windows")'.dependencies]
|
|
winapi = { version = "0.3" }
|
|
|
|
[[bin]]
|
|
name = "touch"
|
|
path = "src/main.rs"
|