exarch-rs 0.2.7 → 0.2.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Binary file
Binary file
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "exarch-rs",
3
- "version": "0.2.7",
3
+ "version": "0.2.8",
4
4
  "description": "Memory-safe archive extraction library with built-in security validation",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",
package/src/error.rs CHANGED
@@ -182,6 +182,7 @@ pub fn convert_error(err: CoreError) -> Error {
182
182
  msg.push_str(&reason);
183
183
  Error::new(Status::GenericFailure, msg)
184
184
  }
185
+ CoreError::PartialExtraction { source, .. } => convert_error(*source),
185
186
  }
186
187
  }
187
188