Skip to content

Commit

Permalink
Bump the MSRV
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael-F-Bryan committed May 9, 2024
1 parent d8d734e commit 2967661
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ jobs:
rust:
- nightly
- stable
# MSRV - Required for "an unknown tool name found in scoped lint: `rustdoc::broken_intra_doc_links`"
- 1.52.1
# MSRV - Required by the build-info crate
- 1.70.0
os:
- ubuntu-latest
- windows-latest
Expand Down
3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,11 @@ version = "0.7.7"
authors = ["Michael Bryan <[email protected]>"]
description = "A backend for `mdbook` which will check your links for you."
license = "MIT"
edition = "2018"
edition = "2021"
documentation = "https://docs.rs/mdbook-linkcheck"
repository = "https://github.com/Michael-F-Bryan/mdbook-linkcheck"
readme = "README.md"
rust-version = "1.70"

[[bin]]
name = "mdbook-linkcheck"
Expand Down
2 changes: 2 additions & 0 deletions src/config.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#![allow(clippy::mutable_key_type)]

use crate::hashed_regex::HashedRegex;
use anyhow::Error;
use http::header::{HeaderName, HeaderValue};
Expand Down
2 changes: 1 addition & 1 deletion xtask/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "xtask"
version = "0.1.0"
authors = ["Michael-F-Bryan <[email protected]>"]
edition = "2018"
edition = "2021"
publish = false
build = "build.rs"

Expand Down

0 comments on commit 2967661

Please sign in to comment.