mirror of
https://github.com/BurntSushi/ripgrep.git
synced 2025-08-03 05:32:04 -07:00
Compare commits
3 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
18943b9317 | ||
|
68427b5b79 | ||
|
4ca15a8a51 |
@@ -1,3 +1,11 @@
|
|||||||
|
0.2.8
|
||||||
|
=====
|
||||||
|
Bug fixes:
|
||||||
|
|
||||||
|
* Fixed a bug with the SIMD/AVX features for using bytecount in commit
|
||||||
|
`4ca15a`.
|
||||||
|
|
||||||
|
|
||||||
0.2.7
|
0.2.7
|
||||||
=====
|
=====
|
||||||
Performance improvements:
|
Performance improvements:
|
||||||
|
2
Cargo.lock
generated
2
Cargo.lock
generated
@@ -1,6 +1,6 @@
|
|||||||
[root]
|
[root]
|
||||||
name = "ripgrep"
|
name = "ripgrep"
|
||||||
version = "0.2.7"
|
version = "0.2.8"
|
||||||
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)",
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "ripgrep"
|
name = "ripgrep"
|
||||||
version = "0.2.7" #:version
|
version = "0.2.8" #: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
|
||||||
@@ -46,7 +46,7 @@ winapi = "0.2"
|
|||||||
|
|
||||||
[features]
|
[features]
|
||||||
avx-accel = ["bytecount/avx-accel"]
|
avx-accel = ["bytecount/avx-accel"]
|
||||||
simd-accel = ["bytecount/avx-accel", "regex/simd-accel"]
|
simd-accel = ["bytecount/simd-accel", "regex/simd-accel"]
|
||||||
|
|
||||||
[profile.release]
|
[profile.release]
|
||||||
debug = true
|
debug = true
|
||||||
|
Reference in New Issue
Block a user