feat: initial implementation of content-addressed incremental backup engine
Rust-centric architecture with TypeScript facade following smartproxy/smartstorage pattern.
Core engine in Rust (FastCDC chunking, SHA-256, gzip, AES-256-GCM + Argon2id, binary pack files,
global index, snapshots, locking, verification, pruning, repair). TypeScript provides npm interface
via @push.rocks/smartrust RustBridge IPC with Unix socket streaming for ingest/restore.
All 14 integration tests pass.
2026-03-21 23:30:17 +00:00
|
|
|
/**
|
|
|
|
|
* autocreated commitinfo by @push.rocks/commitinfo
|
|
|
|
|
*/
|
|
|
|
|
export const commitinfo = {
|
2026-03-23 09:22:26 +00:00
|
|
|
name: '@serve.zone/containerarchive',
|
2026-03-23 09:23:51 +00:00
|
|
|
version: '0.1.3',
|
2026-03-22 08:32:12 +00:00
|
|
|
description: 'content-addressed incremental backup engine with deduplication, encryption, and error correction'
|
|
|
|
|
}
|