2017-03-27 03:43:29 +00:00
|
|
|
[package]
|
2020-05-04 06:25:36 +00:00
|
|
|
name = "uu_date"
|
2017-03-27 03:43:29 +00:00
|
|
|
version = "0.0.1"
|
2020-05-25 04:43:59 +00:00
|
|
|
authors = ["uutils developers"]
|
2020-04-08 14:20:53 +00:00
|
|
|
license = "MIT"
|
2020-05-24 17:15:34 +00:00
|
|
|
description = "date ~ (uutils) display or set the current time"
|
|
|
|
|
|
|
|
homepage = "https://github.com/uutils/coreutils"
|
|
|
|
repository = "https://github.com/uutils/coreutils/tree/master/src/date"
|
|
|
|
keywords = ["coreutils", "uutils", "cross-platform", "core", "cli", "util", "utility"]
|
|
|
|
categories = ["command-line-utilities"]
|
|
|
|
edition = "2018"
|
2017-03-27 03:43:29 +00:00
|
|
|
|
|
|
|
[lib]
|
2020-04-14 16:59:25 +00:00
|
|
|
path = "src/date.rs"
|
2017-03-27 03:43:29 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2018-06-25 07:25:17 +00:00
|
|
|
chrono = "0.4.4"
|
2020-05-21 20:18:13 +00:00
|
|
|
clap = "2.32"
|
2020-05-27 06:01:07 +00:00
|
|
|
uucore = { version="0.0.4", package="uucore", git="https://github.com/uutils/uucore.git", branch="canary" }
|
|
|
|
uucore_procs = { version="0.0.4", package="uucore_procs", git="https://github.com/uutils/uucore.git", branch="canary" }
|
2017-03-27 03:43:29 +00:00
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "date"
|
2020-05-04 06:25:36 +00:00
|
|
|
path = "src/main.rs"
|