We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f535878 + f0a0def commit 07f2d00Copy full SHA for 07f2d00
Makefile
@@ -6,9 +6,6 @@ help:
6
clean: ## Clean the project using cargo
7
cargo clean
8
9
-build: ## Build the project using cargo
10
- cargo build
11
-
12
lint: ## Lint the project using cargo
13
cargo clippy
14
@@ -20,5 +17,17 @@ all: ## Use everything at once
20
17
cargo fmt
21
18
cargo build
22
19
+check: ## Check the project using cargo
+ cargo check
+
23
+build: ## Build the project using cargo
24
+ cargo build
25
26
+build-release: ## Build the release using cargo
27
+ cargo build --release
28
29
run: ## Run the project
- cargo run
30
+ cargo run
31
32
+run-release: ## Run the release project
33
+ cargo run --release
0 commit comments