summaryrefslogtreecommitdiffstats
path: root/ci
diff options
context:
space:
mode:
authorAndrew Gallant <jamslam@gmail.com>2018-07-17 20:24:36 -0400
committerAndrew Gallant <jamslam@gmail.com>2018-07-17 20:27:04 -0400
commit06b66efd59b83012d34a3c11e72b4c4901ae756a (patch)
tree9c1e75ed1257f22ea53ade9a89f230647112dd68 /ci
parent7e5a59027638952ae55a1cc3d9d3b2ce7d69be98 (diff)
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.
Diffstat (limited to 'ci')
-rwxr-xr-xci/before_deploy.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/before_deploy.sh b/ci/before_deploy.sh
index c1addbc1..7ee824ec 100755
--- a/ci/before_deploy.sh
+++ b/ci/before_deploy.sh
@@ -8,7 +8,7 @@ set -ex
# Generate artifacts for release
mk_artifacts() {
- cargo build --target "$TARGET" --release --features unstable
+ cargo build --target "$TARGET" --release
}
mk_tarball() {