Compare commits

...

3 Commits

Author SHA1 Message Date
Andrew Gallant
5462af4434 Pin rustc-serialize to 0.3.19.
See: https://github.com/rust-lang-nursery/rustc-serialize/pull/159
2016-11-09 20:28:58 -05:00
Andrew Gallant
d2e70da040 0.2.9 2016-11-09 19:07:25 -05:00
Andrew Gallant
64dc9b6709 update deps 2016-11-09 18:54:22 -05:00
2 changed files with 6 additions and 6 deletions

6
Cargo.lock generated
View File

@@ -1,13 +1,13 @@
[root] [root]
name = "ripgrep" name = "ripgrep"
version = "0.2.8" version = "0.2.9"
dependencies = [ dependencies = [
"bytecount 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "bytecount 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
"ctrlc 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", "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)", "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)", "env_logger 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)",
"grep 0.1.4", "grep 0.1.4",
"ignore 0.1.4", "ignore 0.1.5",
"kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", "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)", "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)", "libc 0.2.17 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -112,7 +112,7 @@ dependencies = [
[[package]] [[package]]
name = "ignore" name = "ignore"
version = "0.1.4" version = "0.1.5"
dependencies = [ dependencies = [
"crossbeam 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)", "crossbeam 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)",
"globset 0.1.2", "globset 0.1.2",

View File

@@ -1,6 +1,6 @@
[package] [package]
name = "ripgrep" name = "ripgrep"
version = "0.2.8" #:version version = "0.2.9" #:version
authors = ["Andrew Gallant <jamslam@gmail.com>"] authors = ["Andrew Gallant <jamslam@gmail.com>"]
description = """ description = """
Line oriented search tool using Rust's regex library. Combines the raw Line oriented search tool using Rust's regex library. Combines the raw
@@ -29,7 +29,7 @@ ctrlc = "2.0"
docopt = "0.6" docopt = "0.6"
env_logger = "0.3" env_logger = "0.3"
grep = { version = "0.1.4", path = "grep" } grep = { version = "0.1.4", path = "grep" }
ignore = { version = "0.1.4", path = "ignore" } ignore = { version = "0.1.5", path = "ignore" }
lazy_static = "0.2" lazy_static = "0.2"
libc = "0.2" libc = "0.2"
log = "0.3" log = "0.3"
@@ -37,7 +37,7 @@ memchr = "0.1"
memmap = "0.5" memmap = "0.5"
num_cpus = "1" num_cpus = "1"
regex = "0.1.77" regex = "0.1.77"
rustc-serialize = "0.3" rustc-serialize = "=0.3.19"
term = "0.4" term = "0.4"
[target.'cfg(windows)'.dependencies] [target.'cfg(windows)'.dependencies]