From e0ddad36b44049b9067a24d152c0a7182dcbcb66 Mon Sep 17 00:00:00 2001 From: Pi-Cla Date: Mon, 27 May 2024 19:53:52 -0600 Subject: [PATCH] fix: vendor-filterer --all-features rather than --all-features=true Fixes #86 --- cargo/src/vendor.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cargo/src/vendor.rs b/cargo/src/vendor.rs index fda2644..f5c93a1 100644 --- a/cargo/src/vendor.rs +++ b/cargo/src/vendor.rs @@ -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.