# jabcode-rs
Idiomatic Rust bindings to the [JAB Code standard implementation](https://github.com/jabcode/jabcode).
## Usage
```rust
let image = jabcode::write_jabcode(
"Hello world".as_bytes(),
&jabcode::WriteOptions::default()).unwrap();
let buf = jabcode::read_jabcode(&image).unwrap();
let output = String::from_utf8(buf).unwrap();
assert_eq!("Hello world", output);
```