rar-stream 5.5.0 → 5.7.0

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.
Files changed (3) hide show
  1. package/README.md +2 -0
  2. package/index.d.ts +4 -0
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -191,6 +191,8 @@ let content = files[0].read_to_end().await?;
191
191
  | Stored (no compression) | Yes | Yes |
192
192
  | LZSS (Huffman + LZ77) | Yes | Yes |
193
193
  | PPMd | Yes | -- |
194
+ | Solid archives | Yes | Yes |
195
+ | SFX (self-extracting) | Yes | Yes |
194
196
  | E8/E8E9 filters (x86) | Yes | Yes |
195
197
  | Delta filter | Yes | Yes |
196
198
  | ARM filter | -- | Yes |
package/index.d.ts CHANGED
@@ -11,6 +11,10 @@ export interface ReadIntervalJs {
11
11
  /** Parse options for filtering results. */
12
12
  export interface ParseOptionsJs {
13
13
  maxFiles?: number
14
+ /**
15
+ * Prefetch buffer size for header parsing in bytes (default: 32768).
16
+ * Increase for archives with many files over slow connections.
17
+ */
14
18
  headerPrefetchSize?: number
15
19
  }
16
20
  /** Parsed file info from RAR header. */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rar-stream",
3
- "version": "5.5.0",
3
+ "version": "5.7.0",
4
4
  "description": "RAR streaming library - Rust implementation with NAPI and WASM bindings",
5
5
  "main": "lib/index.mjs",
6
6
  "browser": "lib/browser.mjs",