14 lines
352 B
TOML
14 lines
352 B
TOML
[package]
|
|
name = "qr-generator"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
|
|
[dependencies]
|
|
axum = { version = "0.7.5", features = ["macros"] }
|
|
tokio = { version = "1.33.0", features = ["macros", "rt-multi-thread"] }
|
|
qrcode = "0.12.0"
|
|
image = "0.23.14"
|
|
maud = { version = "0.26.0", features = ["axum"] }
|
|
tower-http = { version = "0.5.2", features = ["cors"] }
|