From 78842d5c2c616f6d1a0a967b99c9b64e042b927c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Damir=20Jeli=C4=87?= Date: Sun, 15 Mar 2020 12:43:11 +0100 Subject: [PATCH] travis: cargo fmt doesn't require the feature flags. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 3ba609cb..a7e7ac2b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,5 +13,5 @@ before_script: script: - cargo build --no-default-features --features 'encryption' - - cargo fmt --all --no-default-features --features 'encryption' -- --check + - cargo fmt --all -- --check - cargo test --no-default-features --features 'encryption'