From 7f354e2c2142abdbb8d1baa7cde7ad15bf7d1250 Mon Sep 17 00:00:00 2001
From: Chris Wong <lambda.fairy@gmail.com>
Date: Mon, 28 Sep 2020 22:13:07 +1000
Subject: [PATCH] Travis: replace `--all` with `--workspace`

---
 .travis.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.travis.yml b/.travis.yml
index db09cfd..970b388 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -9,7 +9,7 @@ jobs:
         - |
           RUN_CLIPPY=true
           rustup component add clippy --toolchain=nightly || RUN_CLIPPY=false
-        - cargo test --all --all-features
+        - cargo test --workspace --all-features
         - |
           if $RUN_CLIPPY; then
             CLIPPY_STATUS=0
@@ -22,7 +22,7 @@ jobs:
       rust: stable
       script:
         # Skip `--all-features` because stable Rocket isn't released yet
-        - cargo test --all
+        - cargo test --workspace
     - name: "Benchmarks"
       script:
         - (cd benchmarks && cargo test --benches)