Sweep of the docs after the v2.0.0 rename and recent changes: - Per-crate READMEs (13 files): rename leftover rustyhdf5-*/edgehdf5-* package names and badges to clawhdf5-*, bump usage versions to 2.1.0. - README: update stale test badge (417 -> 1500+), workspace stats (15 crates/72K -> 17 crates/84K), agent crate stats (20.7K/32 modules), and add the missing clawhdf5-napi and clawhdf5-bench crates to the tree. - CLAUDE.md: correct the CLI subcommand list (inspect/dump/index/search -> the actual create/save/search/recall/stats/flush-wal/agents-md/export/snapshot). No code changes. Verified there are zero todo!()/unimplemented!() macros and no TODO/FIXME comments in the tree. Co-Authored-By: Claude Opus 4.8 (1M context) <[email protected]>
29 lines
764 B
Markdown
29 lines
764 B
Markdown
# clawhdf5-format
|
|
|
|
[](https://crates.io/crates/clawhdf5-format)
|
|
[](https://docs.rs/clawhdf5-format)
|
|
|
|
Pure-Rust HDF5 binary format parsing and writing — no C dependencies.
|
|
|
|
## Features
|
|
|
|
- Zero-copy superblock, object header, and B-tree parsing
|
|
- Chunked dataset read/write with filter pipelines
|
|
- `no_std` support (disable `std` feature)
|
|
- Optional parallel reads via Rayon
|
|
- SHA-256 provenance tracking
|
|
|
|
## Usage
|
|
|
|
```rust
|
|
use clawhdf5_format::Superblock;
|
|
|
|
let data = std::fs::read("data.h5").unwrap();
|
|
let sb = Superblock::from_bytes(&data).unwrap();
|
|
println!("HDF5 version {}.{}", sb.version_major(), sb.version_minor());
|
|
```
|
|
|
|
## License
|
|
|
|
MIT
|