Skip to content

Commit ab42c92

Browse files
committed
uucore: Remove custom_tz_fmt, cleanup dependencies
Nobody needs it anymore.
1 parent 61eac86 commit ab42c92

File tree

9 files changed

+6
-200
lines changed

9 files changed

+6
-200
lines changed

Cargo.lock

Lines changed: 0 additions & 32 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,6 @@ chrono = { version = "0.4.41", default-features = false, features = [
282282
"alloc",
283283
"clock",
284284
] }
285-
chrono-tz = "0.10.0"
286285
clap = { version = "4.5", features = ["wrap_help", "cargo"] }
287286
clap_complete = "4.4"
288287
clap_mangen = "0.2"
@@ -301,7 +300,6 @@ gcd = "2.3"
301300
glob = "0.3.1"
302301
half = "2.4.1"
303302
hostname = "0.4"
304-
iana-time-zone = "0.1.57"
305303
indicatif = "0.17.8"
306304
itertools = "0.14.0"
307305
jiff = { version = "0.2.10", default-features = false, features = [

fuzz/Cargo.lock

Lines changed: 5 additions & 97 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/uu/date/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jiff = { workspace = true, features = [
2626
"tzdb-zoneinfo",
2727
"tzdb-concatenated",
2828
] }
29-
uucore = { workspace = true, features = ["custom-tz-fmt", "parser"] }
29+
uucore = { workspace = true, features = ["parser"] }
3030
parse_datetime = { workspace = true }
3131

3232
[target.'cfg(unix)'.dependencies]

src/uu/ls/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ terminal_size = { workspace = true }
3737
thiserror = { workspace = true }
3838
uucore = { workspace = true, features = [
3939
"colors",
40-
"custom-tz-fmt",
4140
"entries",
4241
"format",
4342
"fs",

src/uucore/Cargo.toml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,13 @@ path = "src/lib/lib.rs"
2121

2222
[dependencies]
2323
chrono = { workspace = true, optional = true }
24-
chrono-tz = { workspace = true, optional = true }
2524
clap = { workspace = true }
2625
uucore_procs = { workspace = true }
2726
number_prefix = { workspace = true }
2827
dns-lookup = { workspace = true, optional = true }
2928
dunce = { version = "1.0.4", optional = true }
3029
wild = "2.2.1"
3130
glob = { workspace = true, optional = true }
32-
iana-time-zone = { workspace = true, optional = true }
3331
itertools = { workspace = true, optional = true }
3432
time = { workspace = true, optional = true, features = [
3533
"formatting",
@@ -138,6 +136,5 @@ utf8 = []
138136
utmpx = ["time", "time/macros", "libc", "dns-lookup"]
139137
version-cmp = []
140138
wide = []
141-
custom-tz-fmt = ["chrono", "chrono-tz", "iana-time-zone"]
142139
tty = []
143140
uptime = ["chrono", "libc", "windows-sys", "utmpx", "utmp-classic"]

src/uucore/src/lib/features.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@ pub mod buf_copy;
1414
pub mod checksum;
1515
#[cfg(feature = "colors")]
1616
pub mod colors;
17-
#[cfg(feature = "custom-tz-fmt")]
18-
pub mod custom_tz_fmt;
1917
#[cfg(feature = "encoding")]
2018
pub mod encoding;
2119
#[cfg(feature = "extendedbigdecimal")]

src/uucore/src/lib/features/custom_tz_fmt.rs

Lines changed: 0 additions & 60 deletions
This file was deleted.

src/uucore/src/lib/lib.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,6 @@ pub use crate::features::buf_copy;
4141
pub use crate::features::checksum;
4242
#[cfg(feature = "colors")]
4343
pub use crate::features::colors;
44-
#[cfg(feature = "custom-tz-fmt")]
45-
pub use crate::features::custom_tz_fmt;
4644
#[cfg(feature = "encoding")]
4745
pub use crate::features::encoding;
4846
#[cfg(feature = "extendedbigdecimal")]

0 commit comments

Comments
 (0)