1
0
Fork 0
mirror of https://github.com/helix-editor/helix synced 2024-06-03 08:26:10 +02:00

Update regex-cursor (#9891)

This commit is contained in:
Mike Trinkala 2024-03-15 12:44:08 -07:00 committed by GitHub
parent 0c51ab16d0
commit b961acf746
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

4
Cargo.lock generated
View File

@ -1950,9 +1950,9 @@ dependencies = [
[[package]] [[package]]
name = "regex-cursor" name = "regex-cursor"
version = "0.1.3" version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a43718aa0040434d45728c43f56bd53bda75a91c46954cdf0f2ff4dbc8aabbe7" checksum = "ae4327b5fde3ae6fda0152128d3d59b95a5aad7be91c405869300091720f7169"
dependencies = [ dependencies = [
"log", "log",
"memchr", "memchr",

View File

@ -16,7 +16,7 @@ dunce = "1.0"
etcetera = "0.8" etcetera = "0.8"
ropey = { version = "1.6.1", default-features = false } ropey = { version = "1.6.1", default-features = false }
which = "6.0" which = "6.0"
regex-cursor = "0.1.3" regex-cursor = "0.1.4"
[dev-dependencies] [dev-dependencies]
tempfile = "3.10" tempfile = "3.10"