From 8802218b8911187a1d4de01dba8d854035094fe2 Mon Sep 17 00:00:00 2001 From: Andrew Gallant Date: Mon, 9 Oct 2023 20:14:34 -0400 Subject: [PATCH] cargo: remove dependency patches I'm too lazy to fixup old commits. --- Cargo.lock | 6 ++++++ Cargo.toml | 5 ----- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 772bec7f8..324bdaacf 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -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" diff --git a/Cargo.toml b/Cargo.toml index 1a3a70c99..3a9055698 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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" }