diff --git a/Cargo.lock b/Cargo.lock index d11b1608..e0b38992 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -142,18 +142,18 @@ name = "grep" version = "0.2.0" dependencies = [ "atty 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", - "grep-matcher 0.0.1", - "grep-pcre2 0.0.1", - "grep-printer 0.0.1", - "grep-regex 0.0.1", - "grep-searcher 0.0.1", + "grep-matcher 0.1.0", + "grep-pcre2 0.1.0", + "grep-printer 0.1.0", + "grep-regex 0.1.0", + "grep-searcher 0.1.0", "termcolor 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", "walkdir 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "grep-matcher" -version = "0.0.1" +version = "0.1.0" dependencies = [ "memchr 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", "regex 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -161,20 +161,20 @@ dependencies = [ [[package]] name = "grep-pcre2" -version = "0.0.1" +version = "0.1.0" dependencies = [ - "grep-matcher 0.0.1", + "grep-matcher 0.1.0", "pcre2 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "grep-printer" -version = "0.0.1" +version = "0.1.0" dependencies = [ "base64 0.9.2 (registry+https://github.com/rust-lang/crates.io-index)", - "grep-matcher 0.0.1", - "grep-regex 0.0.1", - "grep-searcher 0.0.1", + "grep-matcher 0.1.0", + "grep-regex 0.1.0", + "grep-searcher 0.1.0", "serde 1.0.70 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.70 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.24 (registry+https://github.com/rust-lang/crates.io-index)", @@ -183,9 +183,9 @@ dependencies = [ [[package]] name = "grep-regex" -version = "0.0.1" +version = "0.1.0" dependencies = [ - "grep-matcher 0.0.1", + "grep-matcher 0.1.0", "log 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)", "regex 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", "regex-syntax 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -195,13 +195,13 @@ dependencies = [ [[package]] name = "grep-searcher" -version = "0.0.1" +version = "0.1.0" dependencies = [ "bytecount 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "encoding_rs 0.8.4 (registry+https://github.com/rust-lang/crates.io-index)", "encoding_rs_io 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "grep-matcher 0.0.1", - "grep-regex 0.0.1", + "grep-matcher 0.1.0", + "grep-regex 0.1.0", "log 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)", "memchr 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", "memmap 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/grep-matcher/Cargo.toml b/grep-matcher/Cargo.toml index 8056dec1..4de336e1 100644 --- a/grep-matcher/Cargo.toml +++ b/grep-matcher/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "grep-matcher" -version = "0.0.1" #:version +version = "0.1.0" #:version authors = ["Andrew Gallant "] description = """ A trait for regular expressions, with a focus on line oriented search. diff --git a/grep-pcre2/Cargo.toml b/grep-pcre2/Cargo.toml index 28d1f167..93459190 100644 --- a/grep-pcre2/Cargo.toml +++ b/grep-pcre2/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "grep-pcre2" -version = "0.0.1" #:version +version = "0.1.0" #:version authors = ["Andrew Gallant "] description = """ Use PCRE2 with the 'grep' crate. @@ -13,5 +13,5 @@ keywords = ["regex", "grep", "pcre", "backreference", "look"] license = "Unlicense/MIT" [dependencies] -grep-matcher = { version = "0.0.1", path = "../grep-matcher" } +grep-matcher = { version = "0.1.0", path = "../grep-matcher" } pcre2 = "0.1" diff --git a/grep-printer/Cargo.toml b/grep-printer/Cargo.toml index ffc85bc8..fbdcd524 100644 --- a/grep-printer/Cargo.toml +++ b/grep-printer/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "grep-printer" -version = "0.0.1" #:version +version = "0.1.0" #:version authors = ["Andrew Gallant "] description = """ An implementation of the grep crate's Sink trait that provides standard @@ -19,12 +19,12 @@ serde1 = ["base64", "serde", "serde_derive", "serde_json"] [dependencies] base64 = { version = "0.9", optional = true } -grep-matcher = { version = "0.0.1", path = "../grep-matcher" } -grep-searcher = { version = "0.0.1", path = "../grep-searcher" } +grep-matcher = { version = "0.1.0", path = "../grep-matcher" } +grep-searcher = { version = "0.1.0", path = "../grep-searcher" } termcolor = "1" serde = { version = "1", optional = true } serde_derive = { version = "1", optional = true } serde_json = { version = "1", optional = true } [dev-dependencies] -grep-regex = { version = "0.0.1", path = "../grep-regex" } +grep-regex = { version = "0.1.0", path = "../grep-regex" } diff --git a/grep-regex/Cargo.toml b/grep-regex/Cargo.toml index e39c68dd..e37ba499 100644 --- a/grep-regex/Cargo.toml +++ b/grep-regex/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "grep-regex" -version = "0.0.1" #:version +version = "0.1.0" #:version authors = ["Andrew Gallant "] description = """ Use Rust's regex library with the 'grep' crate. @@ -14,8 +14,8 @@ license = "Unlicense/MIT" [dependencies] log = "0.4" -grep-matcher = { version = "0.0.1", path = "../grep-matcher" } +grep-matcher = { version = "0.1.0", path = "../grep-matcher" } regex = "1" regex-syntax = "0.6" -thread_local = "0.3.5" +thread_local = "0.3.6" utf8-ranges = "1" diff --git a/grep-searcher/Cargo.toml b/grep-searcher/Cargo.toml index 9fad2030..4218a598 100644 --- a/grep-searcher/Cargo.toml +++ b/grep-searcher/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "grep-searcher" -version = "0.0.1" #:version +version = "0.1.0" #:version authors = ["Andrew Gallant "] description = """ Fast line oriented regex searching as a library. @@ -16,13 +16,13 @@ license = "Unlicense/MIT" bytecount = "0.3.1" encoding_rs = "0.8" encoding_rs_io = "0.1.2" -grep-matcher = { version = "0.0.1", path = "../grep-matcher" } +grep-matcher = { version = "0.1.0", path = "../grep-matcher" } log = "0.4" memchr = "2" memmap = "0.6" [dev-dependencies] -grep-regex = { version = "0.0.1", path = "../grep-regex" } +grep-regex = { version = "0.1.0", path = "../grep-regex" } regex = "1" [features] diff --git a/grep/Cargo.toml b/grep/Cargo.toml index e6e2fc07..48a3aaab 100644 --- a/grep/Cargo.toml +++ b/grep/Cargo.toml @@ -13,11 +13,11 @@ keywords = ["regex", "grep", "egrep", "search", "pattern"] license = "Unlicense/MIT" [dependencies] -grep-matcher = { version = "0.0.1", path = "../grep-matcher" } -grep-pcre2 = { version = "0.0.1", path = "../grep-pcre2", optional = true } -grep-printer = { version = "0.0.1", path = "../grep-printer" } -grep-regex = { version = "0.0.1", path = "../grep-regex" } -grep-searcher = { version = "0.0.1", path = "../grep-searcher" } +grep-matcher = { version = "0.1.0", path = "../grep-matcher" } +grep-pcre2 = { version = "0.1.0", path = "../grep-pcre2", optional = true } +grep-printer = { version = "0.1.0", path = "../grep-printer" } +grep-regex = { version = "0.1.0", path = "../grep-regex" } +grep-searcher = { version = "0.1.0", path = "../grep-searcher" } [dev-dependencies] atty = "0.2.11"