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) {}