rs-bytes2qrcode 0.1.0

CLI to convert bytes(stdin) to a QR code(stdout).
[[bin]]
name = "rs-bytes2qrcode"
path = "src/main.rs"

[dependencies.anyhow]
version = "1.0"

[dependencies.qrcode]
default-features = false
version = "0.12"

[lints.clippy]
unwrap_used = "forbid"

[lints.rust]
unsafe_code = "forbid"

[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["command-line-utilities"]
description = "CLI to convert bytes(stdin) to a QR code(stdout)."
documentation = "https://docs.rs/crate/rs-bytes2qrcode/latest"
edition = "2024"
keywords = ["qrcode", "cli", "terminal"]
license = "Apache-2.0"
name = "rs-bytes2qrcode"
readme = "README.md"
repository = "https://github.com/takanoriyanagitani/rs-bytes2qrcode"
version = "0.1.0"

[profile.release-wasi]
codegen-units = 16
inherits = "release"
lto = true
opt-level = "s"
strip = true