Cargo changes

ropey2
Michael Davis 2025-06-06 17:54:34 -04:00
parent f4b488e380
commit 5f4a1ca31f
No known key found for this signature in database
4 changed files with 41 additions and 17 deletions

47
Cargo.lock generated
View File

@ -1417,13 +1417,14 @@ dependencies = [
"parking_lot", "parking_lot",
"quickcheck", "quickcheck",
"regex", "regex",
"regex-cursor", "regex-cursor 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
"ropey", "ropey 2.0.0-alpha.3",
"serde", "serde",
"serde_json", "serde_json",
"slotmap", "slotmap",
"smallvec", "smallvec",
"smartstring", "smartstring",
"str_indices",
"textwrap", "textwrap",
"toml", "toml",
"tree-house", "tree-house",
@ -1525,8 +1526,8 @@ dependencies = [
"etcetera", "etcetera",
"once_cell", "once_cell",
"regex-automata", "regex-automata",
"regex-cursor", "regex-cursor 0.1.5 (git+https://github.com/cessen/regex-cursor.git?branch=ropey2)",
"ropey", "ropey 2.0.0-alpha.3",
"rustix 1.0.7", "rustix 1.0.7",
"tempfile", "tempfile",
"unicode-segmentation", "unicode-segmentation",
@ -2331,7 +2332,20 @@ dependencies = [
"memchr", "memchr",
"regex-automata", "regex-automata",
"regex-syntax", "regex-syntax",
"ropey", "ropey 1.6.1",
]
[[package]]
name = "regex-cursor"
version = "0.1.5"
source = "git+https://github.com/cessen/regex-cursor.git?branch=ropey2#7b8facc3b184da133f86f7c46de3d18d16708bcc"
dependencies = [
"log",
"memchr",
"regex-automata",
"regex-syntax",
"ropey 1.6.1",
"ropey 2.0.0-alpha.3",
] ]
[[package]] [[package]]
@ -2350,6 +2364,15 @@ dependencies = [
"str_indices", "str_indices",
] ]
[[package]]
name = "ropey"
version = "2.0.0-alpha.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1a6bae11a8c92fe67ffe2817f38315372f113617978665635147fd5eb6b789c4"
dependencies = [
"str_indices",
]
[[package]] [[package]]
name = "rustc-demangle" name = "rustc-demangle"
version = "0.1.24" version = "0.1.24"
@ -2801,16 +2824,15 @@ checksum = "bfb942dfe1d8e29a7ee7fcbde5bd2b9a25fb89aa70caea2eba3bee836ff41076"
[[package]] [[package]]
name = "tree-house" name = "tree-house"
version = "0.2.0" version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "git+https://github.com/helix-editor/tree-house?branch=ropey2#d24f15c081faf4b78eb5c9161818f2aaeeaf64f1"
checksum = "679e3296e503901cd9f6e116be5a43a9270222215bf6c78b4b1f4af5c3dcc62d"
dependencies = [ dependencies = [
"arc-swap", "arc-swap",
"hashbrown 0.15.3", "hashbrown 0.15.3",
"kstring", "kstring",
"once_cell", "once_cell",
"regex", "regex",
"regex-cursor", "regex-cursor 0.1.5 (git+https://github.com/cessen/regex-cursor.git?branch=ropey2)",
"ropey", "ropey 2.0.0-alpha.3",
"slab", "slab",
"tree-house-bindings", "tree-house-bindings",
] ]
@ -2818,13 +2840,12 @@ dependencies = [
[[package]] [[package]]
name = "tree-house-bindings" name = "tree-house-bindings"
version = "0.2.0" version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "git+https://github.com/helix-editor/tree-house?branch=ropey2#d24f15c081faf4b78eb5c9161818f2aaeeaf64f1"
checksum = "690809022f44e3d2329882649724b6e0027ade3fada65e4631d303e744dc32b4"
dependencies = [ dependencies = [
"cc", "cc",
"libloading", "libloading",
"regex-cursor", "regex-cursor 0.1.5 (git+https://github.com/cessen/regex-cursor.git?branch=ropey2)",
"ropey", "ropey 2.0.0-alpha.3",
"thiserror 2.0.12", "thiserror 2.0.12",
] ]

View File

@ -37,16 +37,18 @@ package.helix-tui.opt-level = 2
package.helix-term.opt-level = 2 package.helix-term.opt-level = 2
[workspace.dependencies] [workspace.dependencies]
tree-house = { version = "0.2.0", default-features = false } tree-house = { git = "https://github.com/helix-editor/tree-house", branch = "ropey2", default-features = false }
nucleo = "0.5.0" nucleo = "0.5.0"
slotmap = "1.0.7" slotmap = "1.0.7"
thiserror = "2.0" thiserror = "2.0"
tempfile = "3.20.0" tempfile = "3.20.0"
bitflags = "2.9" bitflags = "2.9"
unicode-segmentation = "1.2" unicode-segmentation = "1.2"
ropey = { version = "1.6.1", default-features = false, features = ["simd"] } ropey = { version = "2.0.0-alpha.3", default-features = false, features = ["metric_chars", "metric_utf16", "metric_lines_lf_cr"] }
str_indices = "0.4"
foldhash = "0.1" foldhash = "0.1"
parking_lot = "0.12" parking_lot = "0.12"
regex-cursor = { git = "https://github.com/cessen/regex-cursor.git", branch = "ropey2", features = ["ropey2"] }
[workspace.package] [workspace.package]
version = "25.1.1" version = "25.1.1"

View File

@ -12,7 +12,7 @@ repository.workspace = true
homepage.workspace = true homepage.workspace = true
[features] [features]
unicode-lines = ["ropey/unicode_lines"] unicode-lines = ["ropey/metric_lines_unicode"]
integration = [] integration = []
[dependencies] [dependencies]
@ -21,6 +21,7 @@ helix-loader = { path = "../helix-loader" }
helix-parsec = { path = "../helix-parsec" } helix-parsec = { path = "../helix-parsec" }
ropey.workspace = true ropey.workspace = true
str_indices.workspace = true
smallvec = "1.15" smallvec = "1.15"
smartstring = "1.0.1" smartstring = "1.0.1"
unicode-segmentation.workspace = true unicode-segmentation.workspace = true

View File

@ -16,7 +16,7 @@ dunce = "1.0"
etcetera = "0.10" etcetera = "0.10"
ropey.workspace = true ropey.workspace = true
which = "7.0" which = "7.0"
regex-cursor = "0.1.5" regex-cursor.workspace = true
bitflags.workspace = true bitflags.workspace = true
once_cell = "1.21" once_cell = "1.21"
regex-automata = "0.4.9" regex-automata = "0.4.9"