ars/Cargo.toml

27 lines
589 B
TOML
Raw Normal View History

2023-11-01 21:12:18 +01:00
[package]
name = "ars"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
dotenvy = "0.15"
log = "0.4"
env_logger = "0.10"
thiserror = "1.0.50"
tokio = { version = "1.33", features = ["full"] }
tokio-util = "0.7"
futures-util = "0.3"
axum = { version = "0.6", features = ["multipart"] }
2023-11-03 19:48:48 +01:00
axum-oidc = "0.1.0"
2023-11-01 21:12:18 +01:00
axum-htmx = "0.4"
tower-http = { version= "0.4", features = ["fs"] }
sailfish = "0.8"
serde = "1.0"
toml = "0.8"
rand = "0.8"
qrcode = "0.12"
2023-11-03 19:48:48 +01:00
tower = "0.4.13"
tower-sessions = "0.4.1"