miniqr/Cargo.toml

21 lines
392 B
TOML
Raw Permalink Normal View History

2023-10-09 16:40:00 +02:00
[package]
name = "miniqr"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
ctrlc = "3.4.1"
femme = "2.2.1"
2023-10-09 17:02:45 +02:00
image = "0.23.0"
2023-10-09 17:21:52 +02:00
log = "0.4.20"
2023-10-09 17:02:45 +02:00
qrcode = "0.12.0"
2023-10-09 16:40:00 +02:00
tokio = { version = "1.33.0", features = ["full"] }
2023-10-09 17:12:11 +02:00
urlencoding = "2.1.3"
2023-10-09 16:40:00 +02:00
warp = "0.3.6"
[profile.release]
opt-level = 'z'
lto = true