-
Notifications
You must be signed in to change notification settings - Fork 27
/
Justfile
53 lines (41 loc) · 1.23 KB
/
Justfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
set positional-arguments
alias t := tests
alias l := lint
alias f := fmtf
alias b := build
alias h := hack
alias c := check
# default recipe to display help information
default:
@just --list
# Run all tests
tests: test test-docs
# Test for the native target with all features. By default, excludes online tests.
test:
cargo nextest run --workspace --all --all-features
# Test the Rust documentation
test-docs:
cargo test --doc --all --locked
# Lint the workspace for all available targets
lint: lint-native lint-docs
# Lint the workspace
lint-native: fmt-check lint-docs
cargo +nightly clippy --workspace --all --all-features --all-targets -- -D warnings
# Check the formatting of the workspace
fmt-check:
cargo +nightly fmt --all -- --check
# Lint the Rust documentation
lint-docs:
RUSTDOCFLAGS="-D warnings" cargo doc --all --no-deps --document-private-items
# Fixes the formatting of the workspace
fmtf:
cargo +nightly fmt --all
# Build for the native target
build *args='':
cargo build --workspace $@
# Checks the workspace with a cfg-check
check:
cargo check -Zcheck-cfg --workspace
# Runs `cargo hack check` against the workspace
hack:
cargo hack check --feature-powerset --no-dev-deps --exclude op-alloy --workspace