@@ -93,14 +93,6 @@ project.
93
93
94
94
Currently we accept the following options:
95
95
96
- * ` build_lib ` (` bool ` , defaults to ` false ` ) checks the project as if you passed
97
- the ` --lib ` argument to cargo. Mutually exclusive with, and preferred over,
98
- ` build_bin ` .
99
- * ` build_bin ` (` String ` , defaults to ` "" ` ) checks the project as if you passed
100
- ` -- bin <build_bin> ` argument to cargo. Mutually exclusive with ` build_lib ` .
101
- * ` cfg_test ` (` bool ` , defaults to ` false ` ) checks the project as if you were
102
- running ` cargo test ` rather than ` cargo build ` . I.e., compiles (but does not
103
- run) test code.
104
96
* ` unstable_features ` (` bool ` , defaults to ` false ` ) enables unstable features.
105
97
Currently no option requires this flag.
106
98
* ` sysroot ` (` String ` , defaults to ` "" ` ) if the given string is not empty, use
@@ -110,7 +102,7 @@ Currently we accept the following options:
110
102
the given target triple for all rustc invocations
111
103
* ` wait_to_build ` (` u64 ` , defaults to ` 1500 ` ) time in milliseconds between
112
104
receiving a change notification and starting build
113
- * ` all_targets ` (` bool ` , defaults to ` false ` ) checks the project as if you were
105
+ * ` all_targets ` (` bool ` , defaults to ` true ` ) checks the project as if you were
114
106
running ` cargo check --all-targets ` . I.e., check all targets and integration
115
107
tests too
116
108
* ` use_crate_blacklist ` (` bool ` , defaults to ` true ` ) if disabled, also indexes
@@ -129,6 +121,18 @@ Currently we accept the following options:
129
121
- ` "opt-in" ` Clippy lints are shown when crates specify ` #![warn(clippy)] ` .
130
122
- ` "on" ` Clippy lints enabled for all crates in workspace.
131
123
124
+ and the following unstable options:
125
+
126
+ * ` build_lib ` (` bool ` , defaults to ` false ` ) checks the project as if you passed
127
+ the ` --lib ` argument to cargo. Mutually exclusive with, and preferred over,
128
+ ` build_bin ` .
129
+ * ` build_bin ` (` String ` , defaults to ` "" ` ) checks the project as if you passed
130
+ ` -- bin <build_bin> ` argument to cargo. Mutually exclusive with ` build_lib ` .
131
+ * ` cfg_test ` (` bool ` , defaults to ` false ` ) checks the project as if you were
132
+ running ` cargo test ` rather than ` cargo build ` . I.e., compiles (but does not
133
+ run) test code.
134
+
135
+
132
136
## Troubleshooting
133
137
134
138
For tips on debugging and troubleshooting, see [ debugging.md] ( debugging.md ) .
0 commit comments