Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove cargo-limit usage from justfile #1199

Merged
merged 1 commit into from
May 28, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 5 additions & 6 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ log := "warn"
export JUST_LOG := log

test:
cargo ltest
cargo test

fuzz:
cargo +nightly fuzz run fuzz-compiler
Expand All @@ -25,10 +25,10 @@ run:

# only run tests matching PATTERN
filter PATTERN:
cargo ltest {{PATTERN}}
cargo test {{PATTERN}}

build:
cargo lbuild
cargo build

fmt:
cargo fmt --all
Expand Down Expand Up @@ -59,7 +59,7 @@ check: fmt clippy test forbid
VERSION=`sed -En 's/version[[:space:]]*=[[:space:]]*"([^"]+)"/\1/p' Cargo.toml | head -1`
grep "^\[$VERSION\]" CHANGELOG.md
cargo +nightly generate-lockfile -Z minimal-versions
cargo ltest
cargo test
git checkout Cargo.lock

# publish current GitHub master branch
Expand Down Expand Up @@ -101,7 +101,6 @@ install-dev-deps:
rustup update nightly
cargo +nightly install cargo-fuzz
cargo install cargo-check
cargo install cargo-limit
cargo install cargo-watch

# install system development dependencies with homebrew
Expand All @@ -110,7 +109,7 @@ install-dev-deps-homebrew:

# everyone's favorite animate paper clip
clippy:
cargo lclippy --all --all-targets --all-features
cargo clippy --all --all-targets --all-features

forbid:
./bin/forbid
Expand Down