summaryrefslogtreecommitdiff
path: root/sys-apps/ripgrep/files/ripgrep-0.8.1-bundled-deps.patch
blob: ed83151fd6b528f3e985d2df965c7310764f0ed8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
Use deps from crates instead of bundled in the repo.

--- ripgrep-0.8.1/Cargo.toml
+++ ripgrep-0.8.1/Cargo.toml
@@ -29,16 +29,13 @@
 name = "integration"
 path = "tests/tests.rs"
 
-[workspace]
-members = ["grep", "globset", "ignore", "termcolor", "wincolor"]
-
 [dependencies]
 atty = "0.2.2"
 bytecount = "0.3.1"
 encoding_rs = "0.7"
-globset = { version = "0.3.0", path = "globset" }
-grep = { version = "0.1.8", path = "grep" }
-ignore = { version = "0.4.0", path = "ignore" }
+globset = "0.3.0"
+grep = "0.1.8"
+ignore = "0.4.0"
 lazy_static = "1"
 libc = "0.2"
 log = "0.4"
@@ -47,7 +44,7 @@
 num_cpus = "1"
 regex = "0.2.4"
 same-file = "1"
-termcolor = { version = "0.3.4", path = "termcolor" }
+termcolor = "0.3.4"
 
 [dependencies.clap]
 version = "2.29.4"