@@ -46,7 +46,7 @@ cargo.doc:
4646ifeq ($(clean ) ,yes)
4747 @rm -rf target/doc/
4848endif
49- cargo +stable doc $(if $(call eq,$(crate),),--workspace,-p $(crate)) \
49+ cargo doc $(if $(call eq,$(crate),),--workspace,-p $(crate)) \
5050 --all-features \
5151 $(if $(call eq,$(private),no),,--document-private-items) \
5252 $(if $(call eq,$(open),no),,--open)
@@ -67,7 +67,7 @@ cargo.fmt:
6767# make cargo.lint
6868
6969cargo.lint :
70- cargo +stable clippy --workspace -- -D clippy::pedantic -D warnings
70+ cargo clippy --workspace -- -D clippy::pedantic -D warnings
7171
7272
7373
@@ -82,8 +82,7 @@ cargo.lint:
8282# make test.cargo [crate=<crate-name>]
8383
8484test.cargo :
85- cargo +stable test $(if $(call eq,$(crate ) ,) ,--workspace,-p $(crate ) ) \
86- --all-features
85+ cargo test $(if $(call eq,$(crate ) ,) ,--workspace,-p $(crate ) ) --all-features
8786
8887
8988# Run Rust tests of Book.
@@ -92,7 +91,7 @@ test.cargo:
9291# make test.book
9392
9493test.book :
95- cargo +stable test --manifest-path book/tests/Cargo.toml
94+ cargo test --manifest-path book/tests/Cargo.toml
9695
9796
9897
0 commit comments