[package]
edition = "2024"
name = "stabiron"
version = "0.1.0"
authors = ["Sabir Khan <simplysabir@gmail.com>"]
build = false
exclude = [
"target/",
".git/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Beautiful terminal QR code generator — optimized for scanning crypto wallet addresses from iPhone"
homepage = "https://github.com/simplysabir/stabiron"
documentation = "https://docs.rs/stabiron"
readme = "README.md"
keywords = [
"qrcode",
"terminal",
"cli",
"crypto",
"wallet",
]
categories = [
"command-line-utilities",
"multimedia::images",
]
license = "MIT"
repository = "https://github.com/simplysabir/stabiron"
[[bin]]
name = "stabiron"
path = "src/main.rs"
[dependencies.arboard]
version = "3"
[dependencies.chrono]
version = "0.4"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.colored]
version = "2"
[dependencies.image]
version = "0.25"
[dependencies.qrcode]
version = "0.14"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
strip = true