From bfb2c687974b067db65eccf51c9b07f27ee8bc5f Mon Sep 17 00:00:00 2001 From: Basti Ortiz <39114273+Some-Dood@users.noreply.github.com> Date: Sun, 14 Aug 2022 21:38:58 +0800 Subject: [PATCH] Fix: remove `--features std` invocation --- .circleci/config.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 715f57c..5012bda 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -34,7 +34,6 @@ jobs: - run: rustc --version > ~/rust-version - *RESTORE_DEPS - run: cargo test - - run: cargo test --features std - *SAVE_DEPS nightly: docker: @@ -49,7 +48,7 @@ jobs: - *SAVE_REGISTRY - run: rustc --version > ~/rust-version - *RESTORE_DEPS - - run: cargo test --features alloc + - run: cargo test - *SAVE_DEPS workflows: