mirror of
https://github.com/BurntSushi/ripgrep.git
synced 2025-07-25 09:11:57 -07:00
deps: initial migration steps to regex 1.9
This leaves the grep-regex crate in tatters. Pretty much the entire thing needs to be re-worked. The upshot is that it should result in some big simplifications. I hope. The idea here is to drop down and actually use regex-automata 0.3 instead of the regex crate itself.
This commit is contained in:
@@ -19,6 +19,11 @@ autotests = false
|
||||
edition = "2018"
|
||||
rust-version = "1.65"
|
||||
|
||||
[patch.crates-io]
|
||||
regex = { path = "/home/andrew/rust/regex" }
|
||||
regex-automata = { path = "/home/andrew/rust/regex/regex-automata" }
|
||||
regex-syntax = { path = "/home/andrew/rust/regex/regex-syntax" }
|
||||
|
||||
[[bin]]
|
||||
bench = false
|
||||
path = "crates/core/main.rs"
|
||||
@@ -47,7 +52,7 @@ grep = { version = "0.2.12", path = "crates/grep" }
|
||||
ignore = { version = "0.4.19", path = "crates/ignore" }
|
||||
lazy_static = "1.1.0"
|
||||
log = "0.4.5"
|
||||
regex = "1.3.5"
|
||||
regex = "1.8.3"
|
||||
serde_json = "1.0.23"
|
||||
termcolor = "1.1.0"
|
||||
|
||||
|
Reference in New Issue
Block a user