From b0eab8a9e1ffd2fe502c1a7f621c7df9860986b1 Mon Sep 17 00:00:00 2001
From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com>
Date: Fri, 20 Oct 2023 11:14:48 +0000
Subject: [PATCH] chore(deps): update msrv to v1.67

---
 .clippy.toml             | 2 +-
 .github/workflows/ci.yml | 6 +++---
 Cargo.toml               | 2 +-
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/.clippy.toml b/.clippy.toml
index ea0d9fbb..63079bd8 100644
--- a/.clippy.toml
+++ b/.clippy.toml
@@ -1,4 +1,4 @@
-msrv = "1.66.0"  # MSRV
+msrv = "1.67"  # MSRV
 warn-on-all-wildcard-imports = true
 allow-expect-in-tests = true
 allow-unwrap-in-tests = true
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 558638eb..dca16305 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -59,7 +59,7 @@ jobs:
     - name: toml (no-default features)
       run: cargo test -p toml --no-default-features
   msrv:
-    name: "Check MSRV: 1.66.0"
+    name: "Check MSRV: 1.67"
     runs-on: ubuntu-latest
     steps:
     - name: Checkout repository
@@ -67,7 +67,7 @@ jobs:
     - name: Install Rust
       uses: dtolnay/rust-toolchain@stable
       with:
-        toolchain: "1.66"  # MSRV
+        toolchain: "1.67"  # MSRV
     - uses: Swatinem/rust-cache@v2
     - name: Default features
       run: cargo check --workspace --all-targets
@@ -129,7 +129,7 @@ jobs:
     - name: Install Rust
       uses: dtolnay/rust-toolchain@stable
       with:
-        toolchain: "1.66"  # MSRV
+        toolchain: "1.67"  # MSRV
         components: clippy
     - uses: Swatinem/rust-cache@v2
     - name: Install SARIF tools
diff --git a/Cargo.toml b/Cargo.toml
index 73a1f61c..3148a01e 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -7,7 +7,7 @@ homepage = "https://github.com/toml-rs/toml"
 repository = "https://github.com/toml-rs/toml"
 license = "MIT OR Apache-2.0"
 edition = "2021"
-rust-version = "1.66.0"  # MSRV
+rust-version = "1.67"  # MSRV
 include = [
   "build.rs",
   "src/**/*",