mirror of
https://github.com/BurntSushi/ripgrep.git
synced 2025-05-13 21:26:27 +02:00
deps: get rid of unstable feature
This was introduced as a temporary measure for dealing with the regex crate's unstable feature, but it was never included in a release of ripgrep. Thus, we remove it. The regex crate will now automatically enable SIMD optimizations when available.
This commit is contained in:
parent
7e5a590276
commit
06b66efd59
@ -69,13 +69,13 @@ default-features = false
|
|||||||
features = ["suggestions", "color"]
|
features = ["suggestions", "color"]
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
avx-accel = ["bytecount/avx-accel", "regex/unstable"]
|
avx-accel = [
|
||||||
|
"bytecount/avx-accel",
|
||||||
|
]
|
||||||
simd-accel = [
|
simd-accel = [
|
||||||
"bytecount/simd-accel",
|
"bytecount/simd-accel",
|
||||||
"encoding_rs/simd-accel",
|
"encoding_rs/simd-accel",
|
||||||
"regex/unstable",
|
|
||||||
]
|
]
|
||||||
unstable = ["regex/unstable"]
|
|
||||||
|
|
||||||
[profile.release]
|
[profile.release]
|
||||||
debug = true
|
debug = true
|
||||||
|
@ -50,7 +50,7 @@ test_script:
|
|||||||
|
|
||||||
before_deploy:
|
before_deploy:
|
||||||
# Generate artifacts for release
|
# Generate artifacts for release
|
||||||
- cargo build --release --features unstable
|
- cargo build --release
|
||||||
- mkdir staging
|
- mkdir staging
|
||||||
- copy target\release\rg.exe staging
|
- copy target\release\rg.exe staging
|
||||||
- ps: copy target\release\build\ripgrep-*\out\_rg.ps1 staging
|
- ps: copy target\release\build\ripgrep-*\out\_rg.ps1 staging
|
||||||
|
@ -8,7 +8,7 @@ set -ex
|
|||||||
|
|
||||||
# Generate artifacts for release
|
# Generate artifacts for release
|
||||||
mk_artifacts() {
|
mk_artifacts() {
|
||||||
cargo build --target "$TARGET" --release --features unstable
|
cargo build --target "$TARGET" --release
|
||||||
}
|
}
|
||||||
|
|
||||||
mk_tarball() {
|
mk_tarball() {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user