diff options
author | Mike Trinkala | 2024-03-15 19:44:08 +0000 |
---|---|---|
committer | GitHub | 2024-03-15 19:44:08 +0000 |
commit | b961acf74601f0ede754d595f52ed4cba300e37f (patch) | |
tree | 21bff1875f791a5f83fe2e5f72afd56789adf0cd | |
parent | 0c51ab16d0c65505705297b89ebb1147f3cc8fee (diff) |
Update regex-cursor (#9891)
-rw-r--r-- | Cargo.lock | 4 | ||||
-rw-r--r-- | helix-stdx/Cargo.toml | 2 |
2 files changed, 3 insertions, 3 deletions
@@ -1950,9 +1950,9 @@ dependencies = [ [[package]] name = "regex-cursor" -version = "0.1.3" +version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a43718aa0040434d45728c43f56bd53bda75a91c46954cdf0f2ff4dbc8aabbe7" +checksum = "ae4327b5fde3ae6fda0152128d3d59b95a5aad7be91c405869300091720f7169" dependencies = [ "log", "memchr", diff --git a/helix-stdx/Cargo.toml b/helix-stdx/Cargo.toml index 5ac7c011..ed23f4e4 100644 --- a/helix-stdx/Cargo.toml +++ b/helix-stdx/Cargo.toml @@ -16,7 +16,7 @@ dunce = "1.0" etcetera = "0.8" ropey = { version = "1.6.1", default-features = false } which = "6.0" -regex-cursor = "0.1.3" +regex-cursor = "0.1.4" [dev-dependencies] tempfile = "3.10" |