From 61bc732f8d419726da692be3fcfee8e67788d350 Mon Sep 17 00:00:00 2001 From: Heiko Seeberger Date: Thu, 16 Nov 2023 20:15:34 +0100 Subject: [PATCH] fixxx --- justfile | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/justfile b/justfile index 157ff34..01f8ddd 100644 --- a/justfile +++ b/justfile @@ -2,8 +2,7 @@ set shell := ["bash", "-uc"] check: @echo "RUSTUP_TOOLCHAIN is ${RUSTUP_TOOLCHAIN:-not set}" - cargo check --features axum --tests - cargo check --features poem-openapi --tests + cargo check --tests fmt: @echo "RUSTUP_TOOLCHAIN is ${RUSTUP_TOOLCHAIN:-not set}" @@ -15,11 +14,11 @@ fmt-check: lint: @echo "RUSTUP_TOOLCHAIN is ${RUSTUP_TOOLCHAIN:-not set}" - cargo clippy --all-features --no-deps -- -D warnings + cargo clippy --no-deps -- -D warnings test: @echo "RUSTUP_TOOLCHAIN is ${RUSTUP_TOOLCHAIN:-not set}" - cargo test --all-features + cargo test fix: @echo "RUSTUP_TOOLCHAIN is ${RUSTUP_TOOLCHAIN:-not set}"