-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjustfile
More file actions
64 lines (43 loc) · 995 Bytes
/
Copy pathjustfile
File metadata and controls
64 lines (43 loc) · 995 Bytes
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
54
55
56
57
58
59
60
61
62
63
64
set windows-shell := ["powershell.exe", "-NoLogo", "-NoProfile", "-ExecutionPolicy", "Bypass", "-Command"]
default:
@just --list
fmt:
cargo xtask fmt
clippy:
cargo xtask clippy
test:
cargo xtask test
doc:
cargo xtask doc
msrv:
cargo xtask msrv
cross-targets:
cargo xtask cross-targets
linux-empty:
cargo xtask linux-empty
public-api:
cargo xtask public-api
public-api-update:
cargo xtask public-api --update
supply-chain:
cargo xtask supply-chain
reuse:
cargo xtask reuse
typos:
cargo xtask typos
sbom:
cargo xtask sbom
coverage:
cargo xtask coverage
mutants:
cargo xtask mutants --
mutants-ci shard:
cargo xtask mutants --output . -- --in-place --shard {{ shard }}/4 --timeout 90 --build-timeout 180 --no-shuffle -vV
package-check:
cargo xtask package-check
release-candidate:
cargo xtask release-candidate
release-verify tag:
cargo xtask verify-release-tag "{{ tag }}"
ci:
cargo xtask ci