diff options
Diffstat (limited to 'crates/project_model/src/workspace.rs')
-rw-r--r-- | crates/project_model/src/workspace.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/project_model/src/workspace.rs b/crates/project_model/src/workspace.rs index 8e0481ae9..073c48af7 100644 --- a/crates/project_model/src/workspace.rs +++ b/crates/project_model/src/workspace.rs | |||
@@ -481,7 +481,7 @@ fn add_target_crate_root( | |||
481 | let edition = pkg.edition; | 481 | let edition = pkg.edition; |
482 | let cfg_options = { | 482 | let cfg_options = { |
483 | let mut opts = cfg_options.clone(); | 483 | let mut opts = cfg_options.clone(); |
484 | for feature in pkg.features.iter() { | 484 | for feature in pkg.active_features.iter() { |
485 | opts.insert_key_value("feature".into(), feature.into()); | 485 | opts.insert_key_value("feature".into(), feature.into()); |
486 | } | 486 | } |
487 | opts.extend(pkg.cfgs.iter().cloned()); | 487 | opts.extend(pkg.cfgs.iter().cloned()); |