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

@@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@push.rocks/containerarchive',
version: '0.0.2',
version: '0.1.0',
description: 'content-addressed incremental backup engine with deduplication, encryption, and error correction'
}

View File

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