summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Gallant <jamslam@gmail.com>2016-11-06 15:48:40 -0500
committerAndrew Gallant <jamslam@gmail.com>2016-11-06 15:48:40 -0500
commitdada75d2a715929c0fc5d8a320bac5c403d4449d (patch)
tree5c6bfae02b44782bbfc1b97b5e92deda8c74bf8b
parent76b9f01ad24bc98ba54bdabd36781cc3e08c4081 (diff)
Update sub-crate dependency versions.
-rw-r--r--Cargo.lock12
-rw-r--r--Cargo.toml4
-rw-r--r--ignore/Cargo.toml2
3 files changed, 9 insertions, 9 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 7b502738..2f75a36b 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -6,8 +6,8 @@ dependencies = [
"ctrlc 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"docopt 0.6.86 (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.3",
- "ignore 0.1.3",
+ "grep 0.1.4",
+ "ignore 0.1.4",
"kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
"lazy_static 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
"libc 0.2.17 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -89,7 +89,7 @@ dependencies = [
[[package]]
name = "globset"
-version = "0.1.1"
+version = "0.1.2"
dependencies = [
"aho-corasick 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)",
"fnv 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -101,7 +101,7 @@ dependencies = [
[[package]]
name = "grep"
-version = "0.1.3"
+version = "0.1.4"
dependencies = [
"log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
"memchr 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -112,10 +112,10 @@ dependencies = [
[[package]]
name = "ignore"
-version = "0.1.3"
+version = "0.1.4"
dependencies = [
"crossbeam 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)",
- "globset 0.1.1",
+ "globset 0.1.2",
"lazy_static 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
"log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
"memchr 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)",
diff --git a/Cargo.toml b/Cargo.toml
index b60f7f98..70091582 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -28,8 +28,8 @@ bytecount = "0.1.4"
ctrlc = "2.0"
docopt = "0.6"
env_logger = "0.3"
-grep = { version = "0.1.3", path = "grep" }
-ignore = { version = "0.1.3", path = "ignore" }
+grep = { version = "0.1.4", path = "grep" }
+ignore = { version = "0.1.4", path = "ignore" }
lazy_static = "0.2"
libc = "0.2"
log = "0.3"
diff --git a/ignore/Cargo.toml b/ignore/Cargo.toml
index 5d4db43a..dda954d1 100644
--- a/ignore/Cargo.toml
+++ b/ignore/Cargo.toml
@@ -19,7 +19,7 @@ bench = false
[dependencies]
crossbeam = "0.2"
-globset = { version = "0.1.1", path = "../globset" }
+globset = { version = "0.1.2", path = "../globset" }
lazy_static = "0.2"
log = "0.3"
memchr = "0.1"