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.
--no-default-features
1 parent d2210d4 commit 114c25fCopy full SHA for 114c25f
build_system/src/build.rs
@@ -195,6 +195,9 @@ fn build_codegen(args: &mut BuildArg) -> Result<(), String> {
195
} else {
196
env.insert("CHANNEL".to_string(), "debug".to_string());
197
}
198
+ if args.config_info.no_default_features {
199
+ command.push(&"--no-default-features");
200
+ }
201
let flags = args.flags.iter().map(|s| s.as_str()).collect::<Vec<_>>();
202
for flag in &flags {
203
command.push(flag);
0 commit comments