3
0
Fork 0
mirror of https://github.com/Swatinem/rust-cache synced 2026-03-20 15:15:51 +00:00

fix: include cdylib/rlib/dylib/staticlib targets in build and fingerprint cleanup

This commit is contained in:
eitsupi 2026-03-18 16:52:36 +00:00
parent 85fb4247b7
commit 3170483fc4
3 changed files with 3 additions and 3 deletions

View file

@ -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;

2
dist/save/index.js vendored
View file

@ -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;

View file

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