From 44bddf51b76eab8b4096448e52a33964a52f7d2e Mon Sep 17 00:00:00 2001
From: Michael Davis <mcarsondavis@gmail.com>
Date: Thu, 13 Mar 2025 12:43:32 -0400
Subject: [PATCH] minor: Use parking_lot workspace dependency in helix-vcs

This is a follow-up from the parent commit - I accidentally didn't write
the buffer with this change before committing.
---
 helix-vcs/Cargo.toml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/helix-vcs/Cargo.toml b/helix-vcs/Cargo.toml
index 289c334a..c0812242 100644
--- a/helix-vcs/Cargo.toml
+++ b/helix-vcs/Cargo.toml
@@ -16,7 +16,7 @@ helix-core = { path = "../helix-core" }
 helix-event = { path = "../helix-event" }
 
 tokio = { version = "1", features = ["rt", "rt-multi-thread", "time", "sync", "parking_lot", "macros"] }
-parking_lot = "0.12"
+parking_lot.workspace = true
 arc-swap = { version = "1.7.1" }
 
 gix = { version = "0.70.0", features = ["attributes", "status"], default-features = false, optional = true }