summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Gallant <jamslam@gmail.com>2020-03-15 21:38:59 -0400
committerAndrew Gallant <jamslam@gmail.com>2020-03-15 21:42:54 -0400
commit92daa34eb3031ae2c61bb81da4d9245b1fa7fff9 (patch)
tree68bd4dfa314cd6266a45433af3615f6828912e02
parenta8c1fb7c883032aea6c7f84bd6cb42226253cbcc (diff)
-rw-r--r--Cargo.lock56
-rw-r--r--Cargo.toml16
-rw-r--r--crates/cli/Cargo.toml2
-rw-r--r--crates/globset/Cargo.toml2
-rw-r--r--crates/grep/Cargo.toml14
-rw-r--r--crates/ignore/Cargo.toml2
-rw-r--r--crates/matcher/Cargo.toml2
-rw-r--r--crates/pcre2/Cargo.toml2
-rw-r--r--crates/printer/Cargo.toml2
-rw-r--r--crates/regex/Cargo.toml2
-rw-r--r--crates/searcher/Cargo.toml2
11 files changed, 51 insertions, 51 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 1a436e7f..2e31620d 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -127,7 +127,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "globset"
-version = "0.4.4"
+version = "0.4.5"
dependencies = [
"aho-corasick 0.7.10 (registry+https://github.com/rust-lang/crates.io-index)",
"bstr 0.2.12 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -142,25 +142,25 @@ dependencies = [
[[package]]
name = "grep"
-version = "0.2.4"
-dependencies = [
- "grep-cli 0.1.3",
- "grep-matcher 0.1.3",
- "grep-pcre2 0.1.3",
- "grep-printer 0.1.3",
- "grep-regex 0.1.5",
- "grep-searcher 0.1.6",
+version = "0.2.5"
+dependencies = [
+ "grep-cli 0.1.4",
+ "grep-matcher 0.1.4",
+ "grep-pcre2 0.1.4",
+ "grep-printer 0.1.4",
+ "grep-regex 0.1.6",
+ "grep-searcher 0.1.7",
"termcolor 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
"walkdir 2.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "grep-cli"
-version = "0.1.3"
+version = "0.1.4"
dependencies = [
"atty 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)",
"bstr 0.2.12 (registry+https://github.com/rust-lang/crates.io-index)",
- "globset 0.4.4",
+ "globset 0.4.5",
"lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
"log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
"regex 1.3.5 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -171,7 +171,7 @@ dependencies = [
[[package]]
name = "grep-matcher"
-version = "0.1.3"
+version = "0.1.4"
dependencies = [
"memchr 2.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
"regex 1.3.5 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -179,21 +179,21 @@ dependencies = [
[[package]]
name = "grep-pcre2"
-version = "0.1.3"
+version = "0.1.4"
dependencies = [
- "grep-matcher 0.1.3",
+ "grep-matcher 0.1.4",
"pcre2 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "grep-printer"
-version = "0.1.3"
+version = "0.1.4"
dependencies = [
"base64 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)",
"bstr 0.2.12 (registry+https://github.com/rust-lang/crates.io-index)",
- "grep-matcher 0.1.3",
- "grep-regex 0.1.5",
- "grep-searcher 0.1.6",
+ "grep-matcher 0.1.4",
+ "grep-regex 0.1.6",
+ "grep-searcher 0.1.7",
"serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)",
"serde_derive 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)",
"serde_json 1.0.48 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -202,11 +202,11 @@ dependencies = [
[[package]]
name = "grep-regex"
-version = "0.1.5"
+version = "0.1.6"
dependencies = [
"aho-corasick 0.7.10 (registry+https://github.com/rust-lang/crates.io-index)",
"bstr 0.2.12 (registry+https://github.com/rust-lang/crates.io-index)",
- "grep-matcher 0.1.3",
+ "grep-matcher 0.1.4",
"log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
"regex 1.3.5 (registry+https://github.com/rust-lang/crates.io-index)",
"regex-syntax 0.6.17 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -215,14 +215,14 @@ dependencies = [
[[package]]
name = "grep-searcher"
-version = "0.1.6"
+version = "0.1.7"
dependencies = [
"bstr 0.2.12 (registry+https://github.com/rust-lang/crates.io-index)",
"bytecount 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)",
"encoding_rs 0.8.22 (registry+https://github.com/rust-lang/crates.io-index)",
"encoding_rs_io 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)",
- "grep-matcher 0.1.3",
- "grep-regex 0.1.5",
+ "grep-matcher 0.1.4",
+ "grep-regex 0.1.6",
"log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
"memmap 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
"regex 1.3.5 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -238,11 +238,11 @@ dependencies = [
[[package]]
name = "ignore"
-version = "0.4.11"
+version = "0.4.12"
dependencies = [
"crossbeam-channel 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)",
"crossbeam-utils 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)",
- "globset 0.4.4",
+ "globset 0.4.5",
"lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
"log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
"memchr 2.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -399,12 +399,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "ripgrep"
-version = "11.0.2"
+version = "12.0.0"
dependencies = [
"bstr 0.2.12 (registry+https://github.com/rust-lang/crates.io-index)",
"clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)",
- "grep 0.2.4",
- "ignore 0.4.11",
+ "grep 0.2.5",
+ "ignore 0.4.12",
"jemallocator 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
"lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
"log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
diff --git a/Cargo.toml b/Cargo.toml
index f356229f..66ce4841 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "ripgrep"
-version = "11.0.2" #:version
+version = "12.0.0" #:version
authors = ["Andrew Gallant <jamslam@gmail.com>"]
description = """
ripgrep is a line-oriented search tool that recursively searches your current
@@ -46,18 +46,18 @@ members = [
]
[dependencies]
-bstr = "0.2.0"
-grep = { version = "0.2.4", path = "crates/grep" }
-ignore = { version = "0.4.7", path = "crates/ignore" }
+bstr = "0.2.12"
+grep = { version = "0.2.5", path = "crates/grep" }
+ignore = { version = "0.4.12", path = "crates/ignore" }
lazy_static = "1.1.0"
log = "0.4.5"
num_cpus = "1.8.0"
-regex = "1.0.5"
+regex = "1.3.5"
serde_json = "1.0.23"
-termcolor = "1.0.3"
+termcolor = "1.1.0"
[dependencies.clap]
-version = "2.32.0"
+version = "2.33.0"
default-features = false
features = ["suggestions"]
@@ -68,7 +68,7 @@ version = "0.3.0"
lazy_static = "1.1.0"
[build-dependencies.clap]
-version = "2.32.0"
+version = "2.33.0"
default-features = false
features = ["suggestions"]
diff --git a/crates/cli/Cargo.toml b/crates/cli/Cargo.toml
index e20c1f76..b21ad0cf 100644
--- a/crates/cli/Cargo.toml
+++ b/crates/cli/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "grep-cli"
-version = "0.1.3" #:version
+version = "0.1.4" #:version
authors = ["Andrew Gallant <jamslam@gmail.com>"]
description = """
Utilities for search oriented command line applications.
diff --git a/crates/globset/Cargo.toml b/crates/globset/Cargo.toml
index 5eef20ae..7c993591 100644
--- a/crates/globset/Cargo.toml
+++ b/crates/globset/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "globset"
-version = "0.4.4" #:version
+version = "0.4.5" #:version
authors = ["Andrew Gallant <jamslam@gmail.com>"]
description = """
Cross platform single glob and glob set matching. Glob set matching is the
diff --git a/crates/grep/Cargo.toml b/crates/grep/Cargo.toml
index af39d196..1c8f5ab7 100644
--- a/crates/grep/Cargo.toml
+++ b/crates/grep/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "grep"
-version = "0.2.4" #:version
+version = "0.2.5" #:version
authors = ["Andrew Gallant <jamslam@gmail.com>"]
description = """
Fast line oriented regex searching as a library.
@@ -13,12 +13,12 @@ keywords = ["regex", "grep", "egrep", "search", "pattern"]
license = "Unlicense/MIT"
[dependencies]
-grep-cli = { version = "0.1.2", path = "../cli" }
-grep-matcher = { version = "0.1.2", path = "../matcher" }
-grep-pcre2 = { version = "0.1.3", path = "../pcre2", optional = true }
-grep-printer = { version = "0.1.2", path = "../printer" }
-grep-regex = { version = "0.1.3", path = "../regex" }
-grep-searcher = { version = "0.1.4", path = "../searcher" }
+grep-cli = { version = "0.1.4", path = "../cli" }
+grep-matcher = { version = "0.1.4", path = "../matcher" }
+grep-pcre2 = { version = "0.1.4", path = "../pcre2", optional = true }
+grep-printer = { version = "0.1.4", path = "../printer" }
+grep-regex = { version = "0.1.6", path = "../regex" }
+grep-searcher = { version = "0.1.7", path = "../searcher" }
[dev-dependencies]
termcolor = "1.0.4"
diff --git a/crates/ignore/Cargo.toml b/crates/ignore/Cargo.toml
index 4e79c7ba..e0c924e0 100644
--- a/crates/ignore/Cargo.toml
+++ b/crates/ignore/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "ignore"
-version = "0.4.11" #:version
+version = "0.4.12" #:version
authors = ["Andrew Gallant <jamslam@gmail.com>"]
description = """
A fast library for efficiently matching ignore files such as `.gitignore`
diff --git a/crates/matcher/Cargo.toml b/crates/matcher/Cargo.toml
index 99df4433..deda58d0 100644
--- a/crates/matcher/Cargo.toml
+++ b/crates/matcher/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "grep-matcher"
-version = "0.1.3" #:version
+version = "0.1.4" #:version
authors = ["Andrew Gallant <jamslam@gmail.com>"]
description = """
A trait for regular expressions, with a focus on line oriented search.
diff --git a/crates/pcre2/Cargo.toml b/crates/pcre2/Cargo.toml
index 6f9673d7..79fcf436 100644
--- a/crates/pcre2/Cargo.toml
+++ b/crates/pcre2/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "grep-pcre2"
-version = "0.1.3" #:version
+version = "0.1.4" #:version
authors = ["Andrew Gallant <jamslam@gmail.com>"]
description = """
Use PCRE2 with the 'grep' crate.
diff --git a/crates/printer/Cargo.toml b/crates/printer/Cargo.toml
index 8e1c21ba..d1a20fe8 100644
--- a/crates/printer/Cargo.toml
+++ b/crates/printer/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "grep-printer"
-version = "0.1.3" #:version
+version = "0.1.4" #:version
authors = ["Andrew Gallant <jamslam@gmail.com>"]
description = """
An implementation of the grep crate's Sink trait that provides standard
diff --git a/crates/regex/Cargo.toml b/crates/regex/Cargo.toml
index 17b03b88..c7323761 100644
--- a/crates/regex/Cargo.toml
+++ b/crates/regex/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "grep-regex"
-version = "0.1.5" #:version
+version = "0.1.6" #:version
authors = ["Andrew Gallant <jamslam@gmail.com>"]
description = """
Use Rust's regex library with the 'grep' crate.
diff --git a/crates/searcher/Cargo.toml b/crates/searcher/Cargo.toml
index 6488b70f..f4e3c73c 100644
--- a/crates/searcher/Cargo.toml
+++ b/crates/searcher/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "grep-searcher"
-version = "0.1.6" #:version
+version = "0.1.7" #:version
authors = ["Andrew Gallant <jamslam@gmail.com>"]
description = """
Fast line oriented regex searching as a library.