From 8c04ccdcff1e9740bb4d799235b6ffb4a6dbe8e4 Mon Sep 17 00:00:00 2001 From: Warlock Date: Sun, 8 Sep 2024 21:33:07 +0300 Subject: [PATCH] clippy --- .github/workflows/ci.yml | 4 +--- Cargo.toml | 2 +- src/lib.rs | 2 +- 3 files changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c41517d..ea03507 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,7 +16,7 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu-latest, windows-latest, macOS-latest] + os: [ubuntu-latest, windows-latest] rust: ["1.71", stable, beta, nightly] runs-on: ${{ matrix.os }} steps: @@ -42,8 +42,6 @@ jobs: triple: x86_64-unknown-linux-gnu - os: windows-latest triple: x86_64-pc-windows-msvc - - os: macOS-latest - triple: x86_64-apple-darwin runs-on: ${{ matrix.os }} steps: - uses: actions-rs/toolchain@v1 diff --git a/Cargo.toml b/Cargo.toml index cc2f0a5..55a9d38 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] edition = "2021" name = "dyn-fmt" -version = "0.4.0" +version = "0.4.1" rust-version = "1.71" authors = ["warlock "] description = "Provides dynamic string format." diff --git a/src/lib.rs b/src/lib.rs index b94e816..d93008d 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -10,7 +10,7 @@ //! **Crate features** //! //! * `"std"` -//! Enabled by default. Disable to make the library `#![no_std]`. +//! Enabled by default. Disable to make the library `#![no_std]`. #[cfg(feature = "std")] extern crate core;