1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-08-02 14:07:46 +00:00

Merge pull request #4952 from wanderinglethe/date-remove-time-dep

Remove time dependency from date
This commit is contained in:
Sylvestre Ledru 2023-06-06 22:21:38 +02:00 committed by GitHub
commit 6d6966cfb1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 21 additions and 15 deletions

15
Cargo.lock generated
View file

@ -1154,6 +1154,16 @@ dependencies = [
"time",
]
[[package]]
name = "humantime_to_duration"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1a80a233096ddccb74e62145f3a49cacea6a2669ee90f6e144e15fe28f4037c4"
dependencies = [
"chrono",
"regex",
]
[[package]]
name = "iana-time-zone"
version = "0.1.53"
@ -2528,9 +2538,8 @@ version = "0.0.19"
dependencies = [
"chrono",
"clap",
"humantime_to_duration",
"humantime_to_duration 0.3.1",
"libc",
"time",
"uucore",
"windows-sys 0.48.0",
]
@ -3224,7 +3233,7 @@ version = "0.0.19"
dependencies = [
"clap",
"filetime",
"humantime_to_duration",
"humantime_to_duration 0.2.1",
"time",
"uucore",
"windows-sys 0.48.0",