Skip to content

Commit

Permalink
clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
A1-Triard committed Sep 8, 2024
1 parent a657a30 commit 8c04ccd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
edition = "2021"
name = "dyn-fmt"
version = "0.4.0"
version = "0.4.1"
rust-version = "1.71"
authors = ["warlock <internalmike@gmail.com>"]
description = "Provides dynamic string format."
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 8c04ccd

Please sign in to comment.