From 0ea401d2d7428f1777ef4b75b6605bd443990516 Mon Sep 17 00:00:00 2001 From: Pascal Kuthe Date: Sat, 1 Feb 2025 13:03:38 -0500 Subject: [PATCH] Use the slotmap workspace dependency in helix-view This workspace dependency is already used in `helix-core` and `helix-lsp`. This change uses it in `helix-view` as well for consistency. --- helix-view/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helix-view/Cargo.toml b/helix-view/Cargo.toml index b40f25893..da9f52a21 100644 --- a/helix-view/Cargo.toml +++ b/helix-view/Cargo.toml @@ -40,7 +40,7 @@ tokio = { version = "1", features = ["rt", "rt-multi-thread", "io-util", "io-std tokio-stream = "0.1" futures-util = { version = "0.3", features = ["std", "async-await"], default-features = false } -slotmap = "1" +slotmap.workspace = true chardetng = "0.1"