From 9ad03a3961507912cea45e09181e939fd31a4c1a Mon Sep 17 00:00:00 2001 From: David Ross Date: Sun, 15 Dec 2024 00:34:11 -0800 Subject: [PATCH 1/3] Recommend using jiff See #138. --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index ee7f293..5511aa0 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -119,7 +119,7 @@ //! //! `humantime` is a nice light dependency, but only offers this one format. //! For more custom time formatting, I recommend -//! [`chrono`](https://docs.rs/chrono/) or [`time`](https://docs.rs/time/). +//! [`jiff`](https://docs.rs/jiff/). //! //! Now, back to the [`Dispatch`] methods: //! From 11117a14ccda69f9d5c6fc6bcee400336abc2793 Mon Sep 17 00:00:00 2001 From: David Ross Date: Sun, 15 Dec 2024 00:37:08 -0800 Subject: [PATCH 2/3] fix ci --- .github/workflows/rust.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index e9761a2..bf098a4 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -171,7 +171,7 @@ jobs: - uses: actions-rs/toolchain@v1 with: profile: minimal - toolchain: 1.67.0 + toolchain: 1.67.1 override: true - run: cargo build --features syslog-6 msrv_syslog_7: @@ -187,7 +187,7 @@ jobs: - uses: actions-rs/toolchain@v1 with: profile: minimal - toolchain: 1.67.0 + toolchain: 1.67.1 override: true - run: cargo build --features syslog-7 fmt_and_clippy: From 748fb77577455e04bc99227ac02edaa418cd3104 Mon Sep 17 00:00:00 2001 From: David Ross Date: Sun, 15 Dec 2024 00:40:58 -0800 Subject: [PATCH 3/3] fix ci 2? --- .github/workflows/rust.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index bf098a4..8d41a57 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -125,8 +125,7 @@ jobs: toolchain: 1.60.0 override: true - run: cargo build - - run: cargo build --features reopen-1,reopen-03,meta-logging-in-format,syslog-3 - msrv_date_based: + msrv2: name: MSRV Compatability - fern/date-based runs-on: ${{ matrix.os }} strategy: @@ -139,9 +138,10 @@ jobs: - uses: actions-rs/toolchain@v1 with: profile: minimal - toolchain: 1.61.0 + toolchain: 1.63.0 override: true - run: cargo build --features date-based + - run: cargo build --features reopen-1,reopen-03,meta-logging-in-format,syslog-3 msrv_syslog_4: name: MSRV Compatability - fern/syslog-4 runs-on: ${{ matrix.os }}