Skip to content

Commit 8c09d18

Browse files
committed
Other minor changes to purge humantime
1 parent eb0fd4d commit 8c09d18

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

ci/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ mod permute;
22
mod task;
33

44
fn main() {
5-
let features = ["color", "humantime", "auto-color", "regex"];
5+
let features = ["color", "chrono", "auto-color", "regex"];
66

77
// Run a default build
88
if !task::test(Default::default()) {

examples/custom_format.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ $ export MY_LOG_STYLE=never
1717
If you want to control the logging output completely, see the `custom_logger` example.
1818
*/
1919

20-
#[cfg(all(feature = "color", feature = "humantime"))]
20+
#[cfg(all(feature = "color", feature = "chrono"))]
2121
fn main() {
2222
use env_logger::{fmt::Color, Builder, Env};
2323

@@ -50,5 +50,5 @@ fn main() {
5050
log::info!("a log from `MyLogger`");
5151
}
5252

53-
#[cfg(not(all(feature = "color", feature = "humantime")))]
53+
#[cfg(not(all(feature = "color", feature = "chrono")))]
5454
fn main() {}

0 commit comments

Comments
 (0)