mirror of
https://github.com/Swatinem/rust-cache
synced 2026-06-09 18:20:59 +00:00
fix: include cdylib/rlib/dylib/staticlib targets in build and fingerprint cleanup (#320)
This commit is contained in:
parent
85fb4247b7
commit
f51f967e15
3 changed files with 3 additions and 3 deletions
|
|
@ -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) {}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue