feat(rust-core): add zstd chunk compression support and rewrite partially referenced packs during prune

This commit is contained in:
2026-03-22 08:47:16 +00:00
parent 0bbe462153
commit 5672ea29ff
14 changed files with 734 additions and 23 deletions

View File

@@ -126,6 +126,7 @@ export interface IRetentionPolicy {
export interface IPruneResult {
removedSnapshots: number;
removedPacks: number;
rewrittenPacks: number;
freedBytes: number;
dryRun: boolean;
}