Skip to content

Commit

Permalink
fix: vendor-filterer --all-features rather than --all-features=true (#87
Browse files Browse the repository at this point in the history
)

Fixes #86
  • Loading branch information
Pi-Cla authored May 28, 2024
1 parent b4e5a6d commit 89b17bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cargo/src/vendor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ pub fn vendor(
// We are conservative here and vendor all possible features, even
// if they are not used in the spec. But we can't know.
// Maybe make this configurable?
vendor_options.push("--all-features=true".into());
vendor_options.push("--all-features".into());
// vendor-filterer could theoretically also create the tarballs for us,
// with using `--format=tar.zstd` for example. But we need to include
// additional files and it also doesn't support all compression-schemes.
Expand Down

0 comments on commit 89b17bf

Please sign in to comment.