rqrr 0.1.0

Detect and read QR codes from any image source
Documentation
[package]
name = "rqrr"
edition = "2018"
version = "0.1.0"
authors = ["WanzenBug <moritz@wanzenbug.xyz>"]
license = "MIT OR Apache-2.0"
documentation = "https://docs.rs/rqrr"
repository = "https://github.com/WanzenBug/rqrr"
readme = "./README.md"
keywords = ["qrcode", "detection"]
description = """
Detect and read QR codes from any image source
"""
categories = [
    "graphics",
    "encoding",
]


[features]
img = ["image"]
default = ["img"]

[[test]]
name = "test_load"
path = "tests/test_load.rs"
required-features = ["img"]

[[test]]
name = "test_cap_find"
path = "tests/test_cap_find.rs"
required-features = ["img"]

[[bench]]
name = "bench_cap_find"
path = "benches/bench_cap_find.rs"
required-features = ["img"]
harness = false

[dev-dependencies]
criterion = "0.2"

[dependencies]
g2p = "0.3.1"

image = { version = "0.21", optional = true }