[package]
edition = "2021"
name = "tuv"
version = "0.1.6"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Pure-Rust QR code encoder with SVG and PNG output"
homepage = "https://github.com/JThomasDevs/qrgen"
readme = "README.md"
keywords = [
"qrcode",
"qr",
"encoding",
"svg",
"png",
]
categories = [
"encoding",
"multimedia",
]
license = "MIT"
repository = "https://github.com/JThomasDevs/qrgen"
[lib]
name = "tuv"
path = "src/lib.rs"
[[example]]
name = "dump"
path = "examples/dump.rs"
[[example]]
name = "generate_readme_assets"
path = "examples/generate_readme_assets.rs"
[[test]]
name = "check_col6"
path = "tests/check_col6.rs"
[[test]]
name = "check_patterns"
path = "tests/check_patterns.rs"
[[test]]
name = "check_timing"
path = "tests/check_timing.rs"
[[test]]
name = "check_v1"
path = "tests/check_v1.rs"
[[test]]
name = "debug_a"
path = "tests/debug_a.rs"
[[test]]
name = "debug_full"
path = "tests/debug_full.rs"
[[test]]
name = "debug_function_patterns"
path = "tests/debug_function_patterns.rs"
[[test]]
name = "debug_matrix"
path = "tests/debug_matrix.rs"
[[test]]
name = "encoding_trace"
path = "tests/encoding_trace.rs"
[[test]]
name = "fnc1"
path = "tests/fnc1.rs"
[[test]]
name = "input_modes"
path = "tests/input_modes.rs"
[[test]]
name = "kanji_mode"
path = "tests/kanji_mode.rs"
[[test]]
name = "micro_scannable"
path = "tests/micro_scannable.rs"
[[test]]
name = "micro_versions"
path = "tests/micro_versions.rs"
[[test]]
name = "spec_verification"
path = "tests/spec_verification.rs"
[[test]]
name = "transparent_background"
path = "tests/transparent_background.rs"
[[test]]
name = "unicode_scale"
path = "tests/unicode_scale.rs"
[[test]]
name = "url_debug"
path = "tests/url_debug.rs"
[dependencies.bitvec]
version = "1"
[dependencies.image]
version = "0.25"
[dependencies.thiserror]
version = "1"
[dev-dependencies.pretty_assertions]
version = "1"