Skip to content

Commit

Permalink
Merge pull request #9 from jwodder/lint-1.80
Browse files Browse the repository at this point in the history
Update lints for Rust 1.80
  • Loading branch information
jwodder authored Jul 25, 2024
2 parents 867e816 + 5a989c4 commit 1220cb7
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
v0.3.0 (in development)
-----------------------
- Changed the receiver of `InPlace::open()` from `&mut self` to `&self`
- Increased MSRV to 1.74

v0.2.0 (2023-12-22)
-------------------
Expand Down
6 changes: 4 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "in-place"
version = "0.3.0-dev"
edition = "2021"
rust-version = "1.70"
rust-version = "1.74"
description = "In-place file processing"
authors = ["John Thorvald Wodder II <in-place-rs@varonathe.org>"]
repository = "https://github.com/jwodder/in-place-rs"
Expand Down Expand Up @@ -74,6 +74,7 @@ irrefutable_let_patterns = "deny"
mixed_script_confusables = "deny"
named_arguments_used_positionally = "deny"
no_mangle_generic_items = "deny"
non_contiguous_range_endpoints = "deny"
non_fmt_panics = "deny"
non_shorthand_field_patterns = "deny"
noop_method_call = "deny"
Expand All @@ -90,8 +91,8 @@ trivial_bounds = "deny"
type_alias_bounds = "deny"
unconditional_recursion = "deny"
undefined_naked_function_abi = "deny"
unexpected_cfgs = "deny"
ungated_async_fn_track_caller = "deny"
unknown_lints = "deny"
unused_associated_type_bounds = "deny"
unused_comparisons = "deny"
useless_ptr_null_checks = "deny"
Expand Down Expand Up @@ -206,6 +207,7 @@ rest_pat_in_fully_bound_structs = "deny"
same_functions_in_if_condition = "deny"
semicolon_if_nothing_returned = "deny"
should_panic_without_expect = "deny"
single_char_pattern = "deny"
single_match_else = "deny"
stable_sort_primitive = "deny"
string_add_assign = "deny"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[![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)
[![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)
[![codecov.io](https://codecov.io/gh/jwodder/in-place-rs/branch/master/graph/badge.svg)](https://codecov.io/gh/jwodder/in-place-rs)
[![Minimum Supported Rust Version](https://img.shields.io/badge/MSRV-1.70-orange)](https://www.rust-lang.org)
[![Minimum Supported Rust Version](https://img.shields.io/badge/MSRV-1.74-orange)](https://www.rust-lang.org)
[![MIT License](https://img.shields.io/github/license/jwodder/in-place-rs.svg)](https://opensource.org/licenses/MIT)

[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)
Expand Down

0 comments on commit 1220cb7

Please sign in to comment.