fix(12): revise plans based on checker feedback

This commit is contained in:
NikitolProject
2026-02-26 23:41:20 +03:00
parent 04081028ca
commit 2a049095d6
2 changed files with 41 additions and 22 deletions

View File

@@ -10,6 +10,7 @@ files_modified:
- src/key.rs
- src/format.rs
- src/archive.rs
- src/main.rs
- tests/round_trip.rs
autonomous: true
requirements:
@@ -89,7 +90,7 @@ From src/archive.rs (after Plan 01):
```rust
pub fn pack(files: &[PathBuf], output: &Path, no_compress: &[String], key: &[u8; 32]) -> anyhow::Result<()>
pub fn unpack(archive: &Path, output_dir: &Path, key: &[u8; 32]) -> anyhow::Result<()>
pub fn inspect(archive: &Path, key: &[u8; 32]) -> anyhow::Result<()>
pub fn inspect(archive: &Path, key: Option<&[u8; 32]>) -> anyhow::Result<()>
```
From src/format.rs (current):