# yaz-rs
A Rust interface for the YAZ C `ZOOM` API.
## Prerequisites
You need to have the yaz toolkit installed on your system.
### NixOS
The `shell.nix` file should provide all the necessary dependencies on NixOS.
### From Source
Visit the [YAZ website](https://www.indexdata.com/resources/software/yaz/) for source code and installation instructions.
## Building
```bash
cargo build
```
## Running Examples
Library-search style example (query builder + MARC parsing):
```bash
cargo run --example library_search
```
## License
Copyright (C) 2026 Joël Miramon
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.