diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index e9761a2..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 }} @@ -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: 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: //!