diff --git a/src/render/run_exports.rs b/src/render/run_exports.rs index 3ad05d9e..5910dec3 100644 --- a/src/render/run_exports.rs +++ b/src/render/run_exports.rs @@ -45,7 +45,8 @@ impl IgnoreRunExports { let to_specs = |strings: &Vec| -> Result, ParseMatchSpecError> { strings .iter() - .map(|s| MatchSpec::from_str(s, ParseStrictness::Strict)) + // We have to parse these as lenient as they come from packages + .map(|s| MatchSpec::from_str(s, ParseStrictness::Lenient)) .filter_map(|result| match result { Ok(spec) => { if spec