first commit

This commit is contained in:
O K
2026-05-18 11:45:56 +03:00
commit d0156ad51c
20 changed files with 4324 additions and 0 deletions

28
Cargo.toml Normal file
View File

@@ -0,0 +1,28 @@
[package]
name = "server18004"
version = "0.1.0"
edition = "2021"
[[bin]]
name = "server18004"
path = "src/main.rs"
[dependencies]
axum = "0.8.9"
base64 = "0.22.1"
clap = { version = "4.6.1", features = ["derive"] }
fast_qr = { version = "0.13.1", features = ["image"] }
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.149"
tokio = { version = "1.52.3", features = ["full"] }
toml = "1.1.2"
tracing = "0.1.44"
tracing-subscriber = { version = "0.3.23", features = ["env-filter"] }
png = "0.17.16"
ravif = "0.11.11"
flate2 = "1.0.35"
[dev-dependencies]
tower = { version = "0.5", features = ["util"] }
http-body-util = "0.1"
tempfile = "3"