an efficient binary archive format
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

readme

zach 5d753186 46ef1000

+10 -4
+10 -4
README.md
··· 4 4 5 5 The format uses memory-mapped I/O for fast reads, optional zstd compression, and supports append-only writes with shadowing for updates. Files can be added incrementally without rewriting the entire archive. 6 6 7 - ## Usage 7 + ## Installation 8 + 9 + The CLI can be installed by running: 10 + 11 + ```sh 12 + cargo install bindle-file 13 + ``` 14 + 15 + ## Rust 8 16 9 17 ```rust 10 18 use bindle_file::{Bindle, Compress}; ··· 27 35 archive.vacuum()?; 28 36 ``` 29 37 30 - ## C API 31 - 32 - The library includes C bindings: 38 + ## C 33 39 34 40 ```c 35 41 #include "bindle.h"