Files
komp_ac/web/Cargo.toml
2026-08-03 14:44:12 +02:00

23 lines
624 B
TOML

[package]
name = "web"
version = "0.1.0"
edition = "2024"
[dependencies]
askama = "0.15.1"
axum = "0.8"
# `axum::Form` (serde_urlencoded) cannot decode repeated keys into a `Vec`, and
# the table builder posts one set of fields per already-added column.
axum-extra = { version = "0.10", features = ["form"] }
rusty-money = "0.5.0"
prost = "0.14.4"
prost-types = "0.14.4"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tokio = { version = "1", features = ["macros", "rt-multi-thread", "net"] }
tonic = "0.14.6"
tonic-prost = "0.14.6"
[dev-dependencies]
tower = { version = "0.5.3", features = ["util"] }