Skip to content

Commit 17c2193

Browse files
committed
Quick changes to cargo features and deps for time
1 parent 7e150d9 commit 17c2193

File tree

8 files changed

+322
-45
lines changed

8 files changed

+322
-45
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,17 +37,17 @@ pre-release-replacements = [
3737
]
3838

3939
[features]
40-
default = ["auto-color", "humantime", "regex"]
40+
default = ["auto-color", "chrono", "regex"]
4141
color = ["dep:termcolor"]
4242
auto-color = ["dep:is-terminal", "color"]
43-
humantime = ["dep:humantime"]
43+
chrono = ["dep:chrono"]
4444
regex = ["dep:regex"]
4545

4646
[dependencies]
4747
log = { version = "0.4.8", features = ["std"] }
4848
regex = { version = "1.0.3", optional = true, default-features=false, features=["std", "perf"] }
4949
termcolor = { version = "1.1.1", optional = true }
50-
humantime = { version = "2.0.0", optional = true }
50+
chrono = { version = "0.4.23", optional = true }
5151
is-terminal = { version = "0.4.0", optional = true }
5252

5353
[[test]]

0 commit comments

Comments
 (0)