26 lines
538 B
Markdown
26 lines
538 B
Markdown
# rustyhdf5-io
|
|
|
|
[](https://crates.io/crates/rustyhdf5-io)
|
|
[](https://docs.rs/rustyhdf5-io)
|
|
|
|
I/O abstraction layer for rustyhdf5.
|
|
|
|
## Features
|
|
|
|
- Memory-mapped file access (`mmap` feature)
|
|
- Async I/O via Tokio (`async` feature)
|
|
- HSDS remote access (`hsds` feature)
|
|
- Prefetching and sweep optimizations
|
|
|
|
## Usage
|
|
|
|
```rust
|
|
use rustyhdf5_io::MmapReader;
|
|
|
|
let reader = MmapReader::open("data.h5").unwrap();
|
|
```
|
|
|
|
## License
|
|
|
|
MIT
|