mirror of
https://github.com/Swatinem/rust-cache.git
synced 2026-04-21 07:00:26 +00:00
fix: include cdylib/rlib/dylib/staticlib targets in build and fingerprint cleanup (#320)
This commit is contained in:
2
dist/restore/index.js
vendored
2
dist/restore/index.js
vendored
@@ -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 {
|
class Workspace {
|
||||||
constructor(root, target) {
|
constructor(root, target) {
|
||||||
this.root = root;
|
this.root = root;
|
||||||
|
|||||||
2
dist/save/index.js
vendored
2
dist/save/index.js
vendored
@@ -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 {
|
class Workspace {
|
||||||
constructor(root, target) {
|
constructor(root, target) {
|
||||||
this.root = root;
|
this.root = root;
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ import path from "path";
|
|||||||
|
|
||||||
import { getCmdOutput } from "./utils";
|
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 {
|
export class Workspace {
|
||||||
constructor(public root: string, public target: string) {}
|
constructor(public root: string, public target: string) {}
|
||||||
|
|||||||
Reference in New Issue
Block a user