Skip to content

Commit

Permalink
Update MSRV to 1.81.0 (#523)
Browse files Browse the repository at this point in the history
A few AWS SDK crates had been held back for this MSRV, and are updated
here as well.
  • Loading branch information
djmitche authored Jan 3, 2025
1 parent 0b4090c commit e704dda
Show file tree
Hide file tree
Showing 5 changed files with 28 additions and 40 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:

- uses: actions-rs/toolchain@v1
with:
toolchain: "1.78.0" # MSRV
toolchain: "1.81.0" # MSRV
override: true
components: clippy

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rust-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
strategy:
matrix:
rust:
- "1.78.0" # MSRV
- "1.81.0" # MSRV
- "stable"
os:
- ubuntu-latest
Expand Down
55 changes: 23 additions & 32 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ repository = "https://github.com/GothenburgBitFactory/taskchampion"
readme = "src/crate-doc.md"
license = "MIT"
edition = "2021"
rust-version = "1.78.0"
rust-version = "1.81.0"

[workspace]
members = [ "xtask" ]
Expand Down
7 changes: 2 additions & 5 deletions xtask/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,8 @@ const MSRV_PATH_REGEX: &[(&str, &str)] = &[
r#"toolchain: "[0-9.]+*" # MSRV"#,
),
(".github/workflows/rust-tests.yml", r#""[0-9.]+" # MSRV"#),
(
"taskchampion/src/lib.rs",
r#"Rust version [0-9.]* and higher"#,
),
("taskchampion/Cargo.toml", r#"^rust-version = "[0-9.]"#),
("src/lib.rs", r#"Rust version [0-9.]* and higher"#),
("Cargo.toml", r#"^rust-version = "[0-9.]"#),
];

pub fn main() -> anyhow::Result<()> {
Expand Down

0 comments on commit e704dda

Please sign in to comment.