@@ -132,7 +132,7 @@ cargo-build-docs: (_cargo-build-docs "" "nodeps")
132
132
# Format the application code
133
133
@ cargo-fmt : _check-cmd-cargo-fmt
134
134
printf ' ==> Running {{ color-cmd }} rustfmt{{ nocolor }} \n'
135
- cargo + nightly fmt
135
+ cargo fmt
136
136
137
137
# Build service for development
138
138
cargo-build : _check-cmd-cargo
@@ -164,7 +164,7 @@ cargo-test-default: _check-cmd-cargo
164
164
# Run project tests with all features activated
165
165
cargo-test-all : _check-cmd-cargo
166
166
@ printf ' ==> Testing project ({{ light-green }} all features{{ nocolor }} )\n'
167
- cargo + nightly test --all-features
167
+ cargo test --all-features
168
168
169
169
# Run tests from project documentation
170
170
cargo-test-doc : _check-cmd-cargo
@@ -184,7 +184,7 @@ cargo-check: _check-cmd-cargo
184
184
# Check rust project with clippy
185
185
cargo-clippy : _check-cmd-cargo-clippy
186
186
@ printf ' ==> Running {{ color-cmd }} clippy{{ nocolor }} \n'
187
- cargo + nightly clippy --all-features --tests -- -D clippy::all
187
+ cargo clippy --all-features --tests -- -D clippy::all
188
188
189
189
# Check unused dependencies
190
190
cargo-udeps : _check-cmd-cargo-udeps
@@ -194,7 +194,7 @@ cargo-udeps: _check-cmd-cargo-udeps
194
194
# Check the rust code formatting
195
195
cargo-checkfmt : _check-cmd-cargo-fmt
196
196
@ printf ' ==> Running {{ color-cmd }} rustfmt{{ nocolor }} --check\n'
197
- cargo + nightly fmt --check
197
+ cargo fmt --check
198
198
199
199
################################################################################
200
200
# Terraform recipes
0 commit comments