cargo: bump to 0.7.0

This commit is contained in:
Andrew Gallant 2017-10-21 22:39:14 -04:00
parent ad5fa56490
commit efa4de8126
No known key found for this signature in database
GPG Key ID: B2E3A4923F8B0D44
5 changed files with 15 additions and 15 deletions

14
Cargo.lock generated
View File

@ -1,14 +1,14 @@
[root] [root]
name = "ripgrep" name = "ripgrep"
version = "0.6.0" version = "0.7.0"
dependencies = [ dependencies = [
"atty 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "atty 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
"bytecount 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", "bytecount 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)",
"clap 2.26.2 (registry+https://github.com/rust-lang/crates.io-index)", "clap 2.26.2 (registry+https://github.com/rust-lang/crates.io-index)",
"encoding_rs 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", "encoding_rs 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)",
"env_logger 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)", "env_logger 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)",
"grep 0.1.6", "grep 0.1.7",
"ignore 0.2.2", "ignore 0.3.0",
"lazy_static 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)",
"libc 0.2.32 (registry+https://github.com/rust-lang/crates.io-index)", "libc 0.2.32 (registry+https://github.com/rust-lang/crates.io-index)",
"log 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
@ -116,7 +116,7 @@ dependencies = [
[[package]] [[package]]
name = "globset" name = "globset"
version = "0.2.0" version = "0.2.1"
dependencies = [ dependencies = [
"aho-corasick 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)", "aho-corasick 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)",
"fnv 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", "fnv 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)",
@ -127,7 +127,7 @@ dependencies = [
[[package]] [[package]]
name = "grep" name = "grep"
version = "0.1.6" version = "0.1.7"
dependencies = [ dependencies = [
"log 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
"memchr 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "memchr 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
@ -137,10 +137,10 @@ dependencies = [
[[package]] [[package]]
name = "ignore" name = "ignore"
version = "0.2.2" version = "0.3.0"
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.2.0", "globset 0.2.1",
"lazy_static 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)",
"log 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
"memchr 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "memchr 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)",

View File

@ -1,6 +1,6 @@
[package] [package]
name = "ripgrep" name = "ripgrep"
version = "0.6.0" #:version version = "0.7.0" #: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
@ -35,8 +35,8 @@ bytecount = "0.1.4"
clap = "2.26" clap = "2.26"
encoding_rs = "0.7" encoding_rs = "0.7"
env_logger = { version = "0.4", default-features = false } env_logger = { version = "0.4", default-features = false }
grep = { version = "0.1.5", path = "grep" } grep = { version = "0.1.7", path = "grep" }
ignore = { version = "0.2.2", path = "ignore" } ignore = { version = "0.3.0", path = "ignore" }
lazy_static = "0.2" lazy_static = "0.2"
libc = "0.2" libc = "0.2"
log = "0.3" log = "0.3"
@ -45,7 +45,7 @@ memmap = "0.5"
num_cpus = "1" num_cpus = "1"
regex = "0.2.1" regex = "0.2.1"
same-file = "1" same-file = "1"
termcolor = { version = "0.3.0", path = "termcolor" } termcolor = { version = "0.3.3", path = "termcolor" }
[build-dependencies] [build-dependencies]
clap = "2.26" clap = "2.26"

View File

@ -1,6 +1,6 @@
[package] [package]
name = "globset" name = "globset"
version = "0.2.0" #:version version = "0.2.1" #:version
authors = ["Andrew Gallant <jamslam@gmail.com>"] authors = ["Andrew Gallant <jamslam@gmail.com>"]
description = """ description = """
Cross platform single glob and glob set matching. Glob set matching is the Cross platform single glob and glob set matching. Glob set matching is the

View File

@ -1,6 +1,6 @@
[package] [package]
name = "grep" name = "grep"
version = "0.1.6" #:version version = "0.1.7" #:version
authors = ["Andrew Gallant <jamslam@gmail.com>"] authors = ["Andrew Gallant <jamslam@gmail.com>"]
description = """ description = """
Fast line oriented regex searching as a library. Fast line oriented regex searching as a library.

View File

@ -1,6 +1,6 @@
[package] [package]
name = "ignore" name = "ignore"
version = "0.2.2" #:version version = "0.3.0" #:version
authors = ["Andrew Gallant <jamslam@gmail.com>"] authors = ["Andrew Gallant <jamslam@gmail.com>"]
description = """ description = """
A fast library for efficiently matching ignore files such as `.gitignore` A fast library for efficiently matching ignore files such as `.gitignore`
@ -19,7 +19,7 @@ bench = false
[dependencies] [dependencies]
crossbeam = "0.2" crossbeam = "0.2"
globset = { version = "0.2.0", path = "../globset" } globset = { version = "0.2.1", path = "../globset" }
lazy_static = "0.2" lazy_static = "0.2"
log = "0.3" log = "0.3"
memchr = "2" memchr = "2"