From 3170483fc4442464045d9fa9838b5588eaaf5b95 Mon Sep 17 00:00:00 2001 From: eitsupi Date: Wed, 18 Mar 2026 16:52:36 +0000 Subject: [PATCH] fix: include cdylib/rlib/dylib/staticlib targets in build and fingerprint cleanup --- dist/restore/index.js | 2 +- dist/save/index.js | 2 +- src/workspace.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/dist/restore/index.js b/dist/restore/index.js index 765e0fc..c4c1d86 100644 --- a/dist/restore/index.js +++ b/dist/restore/index.js @@ -249702,7 +249702,7 @@ async function utils_exists(path) { -const SAVE_TARGETS = new Set(["lib", "proc-macro"]); +const SAVE_TARGETS = new Set(["lib", "cdylib", "dylib", "rlib", "staticlib", "proc-macro"]); class Workspace { constructor(root, target) { this.root = root; diff --git a/dist/save/index.js b/dist/save/index.js index 9213b5f..90bd1e7 100644 --- a/dist/save/index.js +++ b/dist/save/index.js @@ -249702,7 +249702,7 @@ async function utils_exists(path) { -const SAVE_TARGETS = new Set(["lib", "proc-macro"]); +const SAVE_TARGETS = new Set(["lib", "cdylib", "dylib", "rlib", "staticlib", "proc-macro"]); class Workspace { constructor(root, target) { this.root = root; diff --git a/src/workspace.ts b/src/workspace.ts index d7734f5..2d9eca8 100644 --- a/src/workspace.ts +++ b/src/workspace.ts @@ -3,7 +3,7 @@ import path from "path"; import { getCmdOutput } from "./utils"; -const SAVE_TARGETS = new Set(["lib", "proc-macro"]); +const SAVE_TARGETS = new Set(["lib", "cdylib", "dylib", "rlib", "staticlib", "proc-macro"]); export class Workspace { constructor(public root: string, public target: string) {}