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.
1 parent 7b5111a commit da22db6Copy full SHA for da22db6
src/tools/unstable-book-gen/src/main.rs
@@ -124,11 +124,11 @@ fn main() {
124
let dest_path = Path::new(&dest_path_str);
125
126
let lang_features = collect_lang_features(compiler_path, &mut RunningCheck::new_noop());
127
- let lib_features = collect_lib_features(library_path)
+ let lib_features = collect_lib_features(library_path, None)
128
.into_iter()
129
.filter(|&(ref name, _)| !lang_features.contains_key(name))
130
.collect();
131
- let env_vars = collect_env_vars(compiler_path);
+ let env_vars = collect_env_vars(compiler_path, None);
132
133
let doc_src_path = src_path.join(PATH_STR);
134
0 commit comments