Skip to content

Commit 1220cb7

Browse files
authored
Merge pull request #9 from jwodder/lint-1.80
Update lints for Rust 1.80
2 parents 867e816 + 5a989c4 commit 1220cb7

3 files changed

Lines changed: 6 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
v0.3.0 (in development)
22
-----------------------
33
- Changed the receiver of `InPlace::open()` from `&mut self` to `&self`
4+
- Increased MSRV to 1.74
45

56
v0.2.0 (2023-12-22)
67
-------------------

Cargo.toml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "in-place"
33
version = "0.3.0-dev"
44
edition = "2021"
5-
rust-version = "1.70"
5+
rust-version = "1.74"
66
description = "In-place file processing"
77
authors = ["John Thorvald Wodder II <in-place-rs@varonathe.org>"]
88
repository = "https://github.com/jwodder/in-place-rs"
@@ -74,6 +74,7 @@ irrefutable_let_patterns = "deny"
7474
mixed_script_confusables = "deny"
7575
named_arguments_used_positionally = "deny"
7676
no_mangle_generic_items = "deny"
77+
non_contiguous_range_endpoints = "deny"
7778
non_fmt_panics = "deny"
7879
non_shorthand_field_patterns = "deny"
7980
noop_method_call = "deny"
@@ -90,8 +91,8 @@ trivial_bounds = "deny"
9091
type_alias_bounds = "deny"
9192
unconditional_recursion = "deny"
9293
undefined_naked_function_abi = "deny"
94+
unexpected_cfgs = "deny"
9395
ungated_async_fn_track_caller = "deny"
94-
unknown_lints = "deny"
9596
unused_associated_type_bounds = "deny"
9697
unused_comparisons = "deny"
9798
useless_ptr_null_checks = "deny"
@@ -206,6 +207,7 @@ rest_pat_in_fully_bound_structs = "deny"
206207
same_functions_in_if_condition = "deny"
207208
semicolon_if_nothing_returned = "deny"
208209
should_panic_without_expect = "deny"
210+
single_char_pattern = "deny"
209211
single_match_else = "deny"
210212
stable_sort_primitive = "deny"
211213
string_add_assign = "deny"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[![Project Status: Active – The project has reached a stable, usable state and is being actively developed.](https://www.repostatus.org/badges/latest/active.svg)](https://www.repostatus.org/#active)
22
[![CI Status](https://github.com/jwodder/in-place-rs/actions/workflows/test.yml/badge.svg)](https://github.com/jwodder/in-place-rs/actions/workflows/test.yml)
33
[![codecov.io](https://codecov.io/gh/jwodder/in-place-rs/branch/master/graph/badge.svg)](https://codecov.io/gh/jwodder/in-place-rs)
4-
[![Minimum Supported Rust Version](https://img.shields.io/badge/MSRV-1.70-orange)](https://www.rust-lang.org)
4+
[![Minimum Supported Rust Version](https://img.shields.io/badge/MSRV-1.74-orange)](https://www.rust-lang.org)
55
[![MIT License](https://img.shields.io/github/license/jwodder/in-place-rs.svg)](https://opensource.org/licenses/MIT)
66

77
[GitHub](https://github.com/jwodder/in-place-rs) | [crates.io](https://crates.io/crates/in-place) | [Documentation](https://docs.rs/in-place) | [Issues](https://github.com/jwodder/in-place-rs/issues) | [Changelog](https://github.com/jwodder/in-place-rs/blob/master/CHANGELOG.md)

0 commit comments

Comments
 (0)