ci

CI for all possible combinations of features in Cargo.toml.
git clone https://git.philomathiclife.com/repos/ci
Log | Files | Refs | README

commit 7d3a9f3b8de69683b9cfc0a3dc86ce0d574bdf69
parent cf5518c3a3843b1bc4a166b4c600eed406a562f1
Author: Zack Newman <zack@philomathiclife.com>
Date:   Thu,  3 Apr 2025 13:50:52 -0600

msrv

Diffstat:
MCargo.toml | 6+++---
Msrc/main.rs | 1+
2 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/Cargo.toml b/Cargo.toml @@ -9,11 +9,11 @@ license = "MIT OR Apache-2.0" name = "ci" readme = "README.md" repository = "https://git.philomathiclife.com/repos/ci/" -rust-version = "1.85.0" -version = "0.2.2" +rust-version = "1.86.0" +version = "0.2.3" [dependencies] -serde = { version = "1.0.218", default-features = false } +serde = { version = "1.0.219", default-features = false } toml = { version = "0.8.20", default-features = false, features = ["parse"] } [profile.release] diff --git a/src/main.rs b/src/main.rs @@ -70,6 +70,7 @@ clippy::missing_trait_methods, clippy::question_mark_used, clippy::ref_patterns, + clippy::return_and_then, clippy::single_call_fn, clippy::single_char_lifetime_names, clippy::unseparated_literal_suffix,