From 49ae4ed41f60c473ca280d95bbc67f0abc81c8e9 Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Fri, 5 Jan 2024 11:21:07 +0000
Subject: [PATCH] chore(deps): bump clap from 4.4.12 to 4.4.13 in /2023/aoc2023

Bumps [clap](https://github.com/clap-rs/clap) from 4.4.12 to 4.4.13.
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md)
- [Commits](https://github.com/clap-rs/clap/compare/v4.4.12...v4.4.13)

---
updated-dependencies:
- dependency-name: clap
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
---
 2023/aoc2023/Cargo.lock | 4 ++--
 2023/aoc2023/Cargo.toml | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/2023/aoc2023/Cargo.lock b/2023/aoc2023/Cargo.lock
index a1b3c1a..5e8b0d7 100644
--- a/2023/aoc2023/Cargo.lock
+++ b/2023/aoc2023/Cargo.lock
@@ -67,9 +67,9 @@ checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
 
 [[package]]
 name = "clap"
-version = "4.4.12"
+version = "4.4.13"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "dcfab8ba68f3668e89f6ff60f5b205cea56aa7b769451a59f34b8682f51c056d"
+checksum = "52bdc885e4cacc7f7c9eedc1ef6da641603180c783c41a15c264944deeaab642"
 dependencies = [
  "clap_builder",
  "clap_derive",
diff --git a/2023/aoc2023/Cargo.toml b/2023/aoc2023/Cargo.toml
index 48374ea..fa7d3a3 100644
--- a/2023/aoc2023/Cargo.toml
+++ b/2023/aoc2023/Cargo.toml
@@ -34,7 +34,7 @@ authors = ["Galen Rice"]
 description = "Advent of Code 2023 solutions using Rust!"
 
 [workspace.dependencies]
-clap = { version = "4.4.12", features = ["derive"] }
+clap = { version = "4.4.13", features = ["derive"] }
 regex = "1.10.2"
 substring = "1.4.5"
 itertools = "0.12.0"