From 025719c1d82fd32a82d8d8a4a138842ed92480c1 Mon Sep 17 00:00:00 2001 From: RoloEdits Date: Thu, 30 Jan 2025 16:51:34 -0800 Subject: [PATCH] perf(ropey): enable `simd` feature for `stdx` (#12735) --- Cargo.toml | 1 + helix-core/Cargo.toml | 2 +- helix-stdx/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index acca8732f..762ec8fea 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -44,6 +44,7 @@ thiserror = "2.0" tempfile = "3.15.0" bitflags = "2.8" unicode-segmentation = "1.2" +ropey = { version = "1.6.1", default-features = false, features = ["simd"] } [workspace.package] version = "25.1.1" diff --git a/helix-core/Cargo.toml b/helix-core/Cargo.toml index eff794e73..6903141b7 100644 --- a/helix-core/Cargo.toml +++ b/helix-core/Cargo.toml @@ -20,7 +20,7 @@ helix-stdx = { path = "../helix-stdx" } helix-loader = { path = "../helix-loader" } helix-parsec = { path = "../helix-parsec" } -ropey = { version = "1.6.1", default-features = false, features = ["simd"] } +ropey.workspace = true smallvec = "1.13" smartstring = "1.0.1" unicode-segmentation.workspace = true diff --git a/helix-stdx/Cargo.toml b/helix-stdx/Cargo.toml index 708971140..e56f9f206 100644 --- a/helix-stdx/Cargo.toml +++ b/helix-stdx/Cargo.toml @@ -14,7 +14,7 @@ homepage.workspace = true [dependencies] dunce = "1.0" etcetera = "0.8" -ropey = { version = "1.6.1", default-features = false } +ropey.workspace = true which = "7.0" regex-cursor = "0.1.4" bitflags.workspace = true