perf(ropey): enable simd feature for stdx (#12735)

This commit is contained in:
RoloEdits 2025-01-30 16:51:34 -08:00 committed by GitHub
parent 80dbe030a1
commit 025719c1d8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 3 additions and 2 deletions

View file

@ -44,6 +44,7 @@ thiserror = "2.0"
tempfile = "3.15.0" tempfile = "3.15.0"
bitflags = "2.8" bitflags = "2.8"
unicode-segmentation = "1.2" unicode-segmentation = "1.2"
ropey = { version = "1.6.1", default-features = false, features = ["simd"] }
[workspace.package] [workspace.package]
version = "25.1.1" version = "25.1.1"

View file

@ -20,7 +20,7 @@ helix-stdx = { path = "../helix-stdx" }
helix-loader = { path = "../helix-loader" } helix-loader = { path = "../helix-loader" }
helix-parsec = { path = "../helix-parsec" } helix-parsec = { path = "../helix-parsec" }
ropey = { version = "1.6.1", default-features = false, features = ["simd"] } ropey.workspace = true
smallvec = "1.13" smallvec = "1.13"
smartstring = "1.0.1" smartstring = "1.0.1"
unicode-segmentation.workspace = true unicode-segmentation.workspace = true

View file

@ -14,7 +14,7 @@ homepage.workspace = true
[dependencies] [dependencies]
dunce = "1.0" dunce = "1.0"
etcetera = "0.8" etcetera = "0.8"
ropey = { version = "1.6.1", default-features = false } ropey.workspace = true
which = "7.0" which = "7.0"
regex-cursor = "0.1.4" regex-cursor = "0.1.4"
bitflags.workspace = true bitflags.workspace = true