mirror of
https://github.com/BurntSushi/ripgrep.git
synced 2025-08-06 15:12:02 -07:00
Compare commits
7 Commits
globset-0.
...
grep-match
Author | SHA1 | Date | |
---|---|---|---|
|
cd4386bd9b | ||
|
cdc20c5685 | ||
|
0cf2b98df2 | ||
|
9efdbf74a1 | ||
|
53cb9a779e | ||
|
14860b0f16 | ||
|
0eb1a1e7c9 |
6
Cargo.lock
generated
6
Cargo.lock
generated
@@ -172,7 +172,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "grep-cli"
|
name = "grep-cli"
|
||||||
version = "0.1.5"
|
version = "0.1.6"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"atty",
|
"atty",
|
||||||
"bstr",
|
"bstr",
|
||||||
@@ -187,7 +187,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "grep-matcher"
|
name = "grep-matcher"
|
||||||
version = "0.1.4"
|
version = "0.1.5"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"memchr",
|
"memchr",
|
||||||
"regex",
|
"regex",
|
||||||
@@ -254,7 +254,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "ignore"
|
name = "ignore"
|
||||||
version = "0.4.17"
|
version = "0.4.18"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"crossbeam-channel",
|
"crossbeam-channel",
|
||||||
"crossbeam-utils",
|
"crossbeam-utils",
|
||||||
|
@@ -43,7 +43,7 @@ members = [
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
bstr = "0.2.12"
|
bstr = "0.2.12"
|
||||||
grep = { version = "0.2.7", path = "crates/grep" }
|
grep = { version = "0.2.7", path = "crates/grep" }
|
||||||
ignore = { version = "0.4.16", path = "crates/ignore" }
|
ignore = { version = "0.4.18", path = "crates/ignore" }
|
||||||
lazy_static = "1.1.0"
|
lazy_static = "1.1.0"
|
||||||
log = "0.4.5"
|
log = "0.4.5"
|
||||||
num_cpus = "1.8.0"
|
num_cpus = "1.8.0"
|
||||||
|
@@ -1,5 +1,6 @@
|
|||||||
Release Checklist
|
Release Checklist
|
||||||
-----------------
|
-----------------
|
||||||
|
* Ensure local `master` is up to date with respect to `origin/master`.
|
||||||
* Run `cargo update` and review dependency updates. Commit updated
|
* Run `cargo update` and review dependency updates. Commit updated
|
||||||
`Cargo.lock`.
|
`Cargo.lock`.
|
||||||
* Run `cargo outdated` and review semver incompatible updates. Unless there is
|
* Run `cargo outdated` and review semver incompatible updates. Unless there is
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "grep-cli"
|
name = "grep-cli"
|
||||||
version = "0.1.5" #:version
|
version = "0.1.6" #:version
|
||||||
authors = ["Andrew Gallant <jamslam@gmail.com>"]
|
authors = ["Andrew Gallant <jamslam@gmail.com>"]
|
||||||
description = """
|
description = """
|
||||||
Utilities for search oriented command line applications.
|
Utilities for search oriented command line applications.
|
||||||
@@ -16,7 +16,7 @@ edition = "2018"
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
atty = "0.2.11"
|
atty = "0.2.11"
|
||||||
bstr = "0.2.0"
|
bstr = "0.2.0"
|
||||||
globset = { version = "0.4.5", path = "../globset" }
|
globset = { version = "0.4.7", path = "../globset" }
|
||||||
lazy_static = "1.1.0"
|
lazy_static = "1.1.0"
|
||||||
log = "0.4.5"
|
log = "0.4.5"
|
||||||
regex = "1.1"
|
regex = "1.1"
|
||||||
|
@@ -14,7 +14,7 @@ license = "Unlicense/MIT"
|
|||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
grep-cli = { version = "0.1.5", path = "../cli" }
|
grep-cli = { version = "0.1.6", path = "../cli" }
|
||||||
grep-matcher = { version = "0.1.4", path = "../matcher" }
|
grep-matcher = { version = "0.1.4", path = "../matcher" }
|
||||||
grep-pcre2 = { version = "0.1.4", path = "../pcre2", optional = true }
|
grep-pcre2 = { version = "0.1.4", path = "../pcre2", optional = true }
|
||||||
grep-printer = { version = "0.1.5", path = "../printer" }
|
grep-printer = { version = "0.1.5", path = "../printer" }
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "ignore"
|
name = "ignore"
|
||||||
version = "0.4.17" #:version
|
version = "0.4.18" #: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`
|
||||||
@@ -20,7 +20,7 @@ bench = false
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
crossbeam-utils = "0.8.0"
|
crossbeam-utils = "0.8.0"
|
||||||
globset = { version = "0.4.5", path = "../globset" }
|
globset = { version = "0.4.7", path = "../globset" }
|
||||||
lazy_static = "1.1"
|
lazy_static = "1.1"
|
||||||
log = "0.4.5"
|
log = "0.4.5"
|
||||||
memchr = "2.1"
|
memchr = "2.1"
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "grep-matcher"
|
name = "grep-matcher"
|
||||||
version = "0.1.4" #:version
|
version = "0.1.5" #:version
|
||||||
authors = ["Andrew Gallant <jamslam@gmail.com>"]
|
authors = ["Andrew Gallant <jamslam@gmail.com>"]
|
||||||
description = """
|
description = """
|
||||||
A trait for regular expressions, with a focus on line oriented search.
|
A trait for regular expressions, with a focus on line oriented search.
|
||||||
|
Reference in New Issue
Block a user