Files
containerarchive/rust/Cargo.toml
Juergen Kunz ca510f4578 feat: add multi-item ingest and Reed-Solomon parity
- Multi-item ingest: each item gets its own Unix socket, Rust processes
  them sequentially into a single snapshot with separate chunk lists
- Reed-Solomon parity: rs(20,1) erasure coding for pack file groups,
  enabling single-pack-loss recovery via parity reconstruction
- Repair now attempts parity-based recovery for missing pack files
- 16 integration tests + 12 Rust unit tests all pass
2026-03-21 23:46:29 +00:00

51 lines
840 B
TOML

[package]
name = "containerarchive"
version = "0.1.0"
edition = "2021"
[[bin]]
name = "containerarchive"
path = "src/main.rs"
[dependencies]
# Async runtime
tokio = { version = "1", features = ["full"] }
# Serialization
serde = { version = "1", features = ["derive"] }
serde_json = "1"
# CLI
clap = { version = "4", features = ["derive"] }
# Cryptography
sha2 = "0.10"
aes-gcm = "0.10"
argon2 = "0.5"
# Compression
flate2 = "1"
# Utilities
uuid = { version = "1", features = ["v4"] }
chrono = { version = "0.4", features = ["serde"] }
hex = "0.4"
rand = "0.8"
byteorder = "1"
# Reed-Solomon erasure coding
reed-solomon-erasure = "6"
# Error handling
thiserror = "2"
anyhow = "1"
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
[profile.release]
opt-level = 3
lto = true
strip = true