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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
# Makefile using cargo for managing builds and dependencies in a Rust project.
# Default target executed when no arguments are given to make.
: : ## Display this help.
# Build the project including all workspace members.
: : ## Build the project.# Lint the project with stringent rules using Clippy, install Clippy if not present.
: : ## Lint the project with Clippy.# Run all unit and integration tests in the project.
: : ## Run tests for the project.# Check the project for errors without producing outputs.
: : ## Check the project for errors without producing outputs.# Format all code in the project according to rustfmt's standards, install rustfmt if not present.
: : ## Format the code.# Check code formatting without making changes, with verbose output, install rustfmt if not present.
: : ## Check code formatting with verbose output.# Apply fixes to the project using cargo fix, install cargo-fix if necessary.
: : ## Automatically fix Rust lint warnings using cargo fix.# Use cargo-deny to check for security vulnerabilities, licensing issues, and more, install if not present.
: : ## Run cargo deny checks.# Check for outdated dependencies only for the root package, install cargo-outdated if necessary.
: : ## Check for outdated dependencies for the root package only.# Installation checks and setups
: :
:
:
:
:
# Help target to display callable targets and their descriptions.
: : ## Display this help.