Skip to content

Commit

Permalink
[Renovate] Update dependency rust to v1.73.0 (#773)
Browse files Browse the repository at this point in the history
* [Renovate] Update dependency rust to v1.73.0

* Update cffreference.rs

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Kevin Matthes <[email protected]>
  • Loading branch information
renovate[bot] and kevinmatthes authored Oct 6, 2023
1 parent 312c05f commit c231359
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .clippy.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,6 @@
################################################################################

# The minimal supported Rust version.
msrv = "1.72.1"
msrv = "1.73.0"

################################################################################
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,5 @@ license = "GPL-3.0"
name = "aeruginous"
readme = "README.md"
repository = "https://github.com/kevinmatthes/aeruginous-rs"
rust-version = "1.72.1"
rust-version = "1.73.0"
version = "3.1.1"
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
[lcns]: https://img.shields.io/github/license/kevinmatthes/aeruginous-rs
[lcnss]: https://github.com/kevinmatthes/aeruginous-rs/tree/main/LICENSEs
[lst]: https://img.shields.io/github/last-commit/kevinmatthes/aeruginous-rs
[msrv]: https://img.shields.io/badge/MSRV-1.72.1-brightgreen
[msrv]: https://img.shields.io/badge/MSRV-1.73.0-brightgreen
[release]: https://github.com/kevinmatthes/aeruginous-rs/releases/latest
[renovate]: https://img.shields.io/badge/renovate-enabled-brightgreen.svg
[repository]: https://github.com/kevinmatthes/aeruginous-rs
Expand Down
4 changes: 2 additions & 2 deletions src/cffreference.rs
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ impl Logic {
lines
.next()
.map_or_else(String::new, |l| format!(" - {}\n", l.trim()))
+ &lines.map(|l| format!("{l}\n")).collect::<String>()
+ &lines.fold(String::new(), |s, l| s + l + "\n")
} else {
let mut lines = self.cff_data.lines();

Expand All @@ -111,7 +111,7 @@ impl Logic {
.map_or_else(String::new, |l| format!(" - {}\n", l.trim()))
} else {
" - type: software\n".to_string()
}) + &lines.map(|l| format!(" {l}\n")).collect::<String>()
}) + &lines.fold(String::new(), |s, l| s + " " + l + "\n")
}
}

Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
//! [lcns]: https://img.shields.io/github/license/kevinmatthes/aeruginous-rs
//! [lcnss]: https://github.com/kevinmatthes/aeruginous-rs/tree/main/LICENSEs
//! [lst]: https://img.shields.io/github/last-commit/kevinmatthes/aeruginous-rs
//! [msrv]: https://img.shields.io/badge/MSRV-1.72.1-brightgreen
//! [msrv]: https://img.shields.io/badge/MSRV-1.73.0-brightgreen
//! [release]: https://github.com/kevinmatthes/aeruginous-rs/releases/latest
//! [renovate]: https://img.shields.io/badge/renovate-enabled-brightgreen.svg
//! [repository]: https://github.com/kevinmatthes/aeruginous-rs
Expand Down

0 comments on commit c231359

Please sign in to comment.