From 5b4f3d946b0463e28634806cf9fe2ba0edfaae0e Mon Sep 17 00:00:00 2001 From: Arsenii Lyashenko Date: Fri, 27 Jun 2025 18:36:03 +0400 Subject: [PATCH] Update dist --- dist/restore/index.js | 1 + dist/save/index.js | 1 + 2 files changed, 2 insertions(+) diff --git a/dist/restore/index.js b/dist/restore/index.js index 12dff11..e78857c 100644 --- a/dist/restore/index.js +++ b/dist/restore/index.js @@ -144357,6 +144357,7 @@ class Workspace { lib_core.debug(`collecting metadata for "${this.root}"`); const meta = JSON.parse(await getCmdOutput("cargo", ["metadata", "--all-features", "--format-version", "1", ...extraArgs], { cwd: this.root, + env: { "CARGO_ENCODED_RUSTFLAGS": "" }, })); lib_core.debug(`workspace "${this.root}" has ${meta.packages.length} packages`); for (const pkg of meta.packages.filter(filter)) { diff --git a/dist/save/index.js b/dist/save/index.js index 42b46c7..74a1ac7 100644 --- a/dist/save/index.js +++ b/dist/save/index.js @@ -144357,6 +144357,7 @@ class Workspace { core.debug(`collecting metadata for "${this.root}"`); const meta = JSON.parse(await getCmdOutput("cargo", ["metadata", "--all-features", "--format-version", "1", ...extraArgs], { cwd: this.root, + env: { "CARGO_ENCODED_RUSTFLAGS": "" }, })); core.debug(`workspace "${this.root}" has ${meta.packages.length} packages`); for (const pkg of meta.packages.filter(filter)) {