jabcode

Crates.iojabcode
lib.rsjabcode
version1.1.0
sourcesrc
created_at2022-07-26 04:03:06.650503
updated_at2022-07-27 05:34:24.16547
descriptionBindings for the JAB code reference implementation
homepage
repositoryhttps://github.com/IGI-111/jabcode-rs
max_upload_size
id632975
size12,223,673
(IGI-111)

documentation

README

jabcode-rs

Crate status Crate docs

Idiomatic Rust bindings to the JAB Code standard implementation.

Usage

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);
Commit count: 6

cargo fmt