summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Gallant <jamslam@gmail.com>2017-01-13 23:46:21 -0500
committerAndrew Gallant <jamslam@gmail.com>2017-01-13 23:46:21 -0500
commit057ed6305ab536b619b92b07903aaa8b17ccadef (patch)
treeca2a11a641c250d6c2db3731ff46a11d4abe2ee2
parent730beb9cb5b7cfcb482cd497800e79d01549c65d (diff)
0.4.00.4.0
-rw-r--r--Cargo.lock22
-rw-r--r--Cargo.toml10
-rw-r--r--globset/Cargo.toml4
-rw-r--r--grep/Cargo.toml4
-rw-r--r--ignore/Cargo.toml6
-rw-r--r--termcolor/Cargo.toml4
-rw-r--r--wincolor/Cargo.toml2
7 files changed, 26 insertions, 26 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 3d93bbb8..703b8c88 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -1,12 +1,12 @@
[root]
name = "ripgrep"
-version = "0.3.2"
+version = "0.4.0"
dependencies = [
"bytecount 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
"clap 2.19.3 (registry+https://github.com/rust-lang/crates.io-index)",
"env_logger 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)",
- "grep 0.1.4",
- "ignore 0.1.6",
+ "grep 0.1.5",
+ "ignore 0.1.7",
"kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
"lazy_static 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
"libc 0.2.19 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -16,7 +16,7 @@ dependencies = [
"num_cpus 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
"regex 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
"same-file 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
- "termcolor 0.1.1",
+ "termcolor 0.2.0",
"winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)",
]
@@ -91,7 +91,7 @@ dependencies = [
[[package]]
name = "globset"
-version = "0.1.2"
+version = "0.1.3"
dependencies = [
"aho-corasick 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)",
"fnv 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -103,7 +103,7 @@ dependencies = [
[[package]]
name = "grep"
-version = "0.1.4"
+version = "0.1.5"
dependencies = [
"log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
"memchr 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -113,10 +113,10 @@ dependencies = [
[[package]]
name = "ignore"
-version = "0.1.6"
+version = "0.1.7"
dependencies = [
"crossbeam 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)",
- "globset 0.1.2",
+ "globset 0.1.3",
"lazy_static 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
"log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
"memchr 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -226,9 +226,9 @@ dependencies = [
[[package]]
name = "termcolor"
-version = "0.1.1"
+version = "0.2.0"
dependencies = [
- "wincolor 0.1.0",
+ "wincolor 0.1.1",
]
[[package]]
@@ -304,7 +304,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "wincolor"
-version = "0.1.0"
+version = "0.1.1"
dependencies = [
"kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
"winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)",
diff --git a/Cargo.toml b/Cargo.toml
index d671cbba..b65e1368 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "ripgrep"
-version = "0.3.2" #:version
+version = "0.4.0" #:version
authors = ["Andrew Gallant <jamslam@gmail.com>"]
description = """
Line oriented search tool using Rust's regex library. Combines the raw
@@ -28,17 +28,17 @@ path = "tests/tests.rs"
bytecount = "0.1.4"
clap = "2.19.0"
env_logger = { version = "0.3", default-features = false }
-grep = { version = "0.1.4", path = "grep" }
-ignore = { version = "0.1.5", path = "ignore" }
+grep = { version = "0.1.5", path = "grep" }
+ignore = { version = "0.1.7", path = "ignore" }
lazy_static = "0.2"
libc = "0.2"
log = "0.3"
memchr = "1"
memmap = "0.5"
num_cpus = "1"
-regex = "0.2.0"
+regex = "0.2.1"
same-file = "0.1.1"
-termcolor = { version = "0.1.0", path = "termcolor" }
+termcolor = { version = "0.2.0", path = "termcolor" }
[target.'cfg(windows)'.dependencies]
kernel32-sys = "0.2.2"
diff --git a/globset/Cargo.toml b/globset/Cargo.toml
index 00805fff..5f1fc95a 100644
--- a/globset/Cargo.toml
+++ b/globset/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "globset"
-version = "0.1.2" #:version
+version = "0.1.3" #:version
authors = ["Andrew Gallant <jamslam@gmail.com>"]
description = """
Cross platform single glob and glob set matching. Glob set matching is the
@@ -24,7 +24,7 @@ fnv = "1.0"
lazy_static = "0.2"
log = "0.3"
memchr = "1"
-regex = "0.2.0"
+regex = "0.2.1"
[dev-dependencies]
glob = "0.2"
diff --git a/grep/Cargo.toml b/grep/Cargo.toml
index 8ac92bf9..301fecc4 100644
--- a/grep/Cargo.toml
+++ b/grep/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "grep"
-version = "0.1.4" #:version
+version = "0.1.5" #:version
authors = ["Andrew Gallant <jamslam@gmail.com>"]
description = """
Fast line oriented regex searching as a library.
@@ -15,5 +15,5 @@ license = "Unlicense/MIT"
[dependencies]
log = "0.3"
memchr = "1"
-regex = "0.2.0"
+regex = "0.2.1"
regex-syntax = "0.4.0"
diff --git a/ignore/Cargo.toml b/ignore/Cargo.toml
index 238fe44e..83ba26a1 100644
--- a/ignore/Cargo.toml
+++ b/ignore/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "ignore"
-version = "0.1.6" #:version
+version = "0.1.7" #:version
authors = ["Andrew Gallant <jamslam@gmail.com>"]
description = """
A fast library for efficiently matching ignore files such as `.gitignore`
@@ -19,11 +19,11 @@ bench = false
[dependencies]
crossbeam = "0.2"
-globset = { version = "0.1.2", path = "../globset" }
+globset = { version = "0.1.3", path = "../globset" }
lazy_static = "0.2"
log = "0.3"
memchr = "1"
-regex = "0.2.0"
+regex = "0.2.1"
thread_local = "0.3.2"
walkdir = "1.0.7"
diff --git a/termcolor/Cargo.toml b/termcolor/Cargo.toml
index 0f92c7fa..0c236475 100644
--- a/termcolor/Cargo.toml
+++ b/termcolor/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "termcolor"
-version = "0.1.1" #:version
+version = "0.2.0" #:version
authors = ["Andrew Gallant <jamslam@gmail.com>"]
description = """
A simple cross platform library for writing colored text to a terminal.
@@ -17,4 +17,4 @@ name = "termcolor"
bench = false
[target.'cfg(windows)'.dependencies]
-wincolor = { version = "0.1.0", path = "../wincolor" }
+wincolor = { version = "0.1.1", path = "../wincolor" }
diff --git a/wincolor/Cargo.toml b/wincolor/Cargo.toml
index 226d85b0..7ad7b99f 100644
--- a/wincolor/Cargo.toml
+++ b/wincolor/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "wincolor"
-version = "0.1.0" #:version
+version = "0.1.1" #:version
authors = ["Andrew Gallant <jamslam@gmail.com>"]
description = """
A simple Windows specific API for controlling text color in a Windows console.