1
0
mirror of https://github.com/BurntSushi/ripgrep.git synced 2025-01-03 05:10:12 +02:00

cargo: remove dependency patches

I'm too lazy to fixup old commits.
This commit is contained in:
Andrew Gallant 2023-10-09 20:14:34 -04:00
parent dd810779d4
commit 7099e174ac
2 changed files with 6 additions and 5 deletions

6
Cargo.lock generated
View File

@ -396,6 +396,8 @@ dependencies = [
[[package]]
name = "regex"
version = "1.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d119d7c7ca818f8a53c300863d4f87566aac09943aef5b355bb83969dae75d87"
dependencies = [
"aho-corasick",
"memchr",
@ -406,6 +408,8 @@ dependencies = [
[[package]]
name = "regex-automata"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "465c6fc0621e4abc4187a2bda0937bfd4f722c2730b29562e19689ea796c9a4b"
dependencies = [
"aho-corasick",
"memchr",
@ -415,6 +419,8 @@ dependencies = [
[[package]]
name = "regex-syntax"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c3cbb081b9784b07cceb8824c8583f86db4814d172ab043f3c23f7dc600bf83d"
[[package]]
name = "ripgrep"

View File

@ -48,11 +48,6 @@ members = [
"crates/ignore",
]
[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" }
[dependencies]
bstr = "1.6.0"
grep = { version = "0.2.12", path = "crates/grep" }