25 lines
697 B
TOML
25 lines
697 B
TOML
[package]
|
|
name = "mensa-upb-api"
|
|
description = "A web scraper api for the canteens of the University of Paderborn"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
actix-cors = "0.7.0"
|
|
actix-governor = { version = "0.5.0", features = ["log"] }
|
|
actix-web = "4.8.0"
|
|
anyhow = "1.0.86"
|
|
chrono = "0.4.38"
|
|
const_format = "0.2.32"
|
|
dotenvy = "0.15.7"
|
|
futures = "0.3.30"
|
|
itertools = "0.13.0"
|
|
reqwest = "0.12.5"
|
|
scraper = "0.19.0"
|
|
serde = { version = "1.0.203", features = ["derive"] }
|
|
serde_json = "1.0.120"
|
|
strum = { version = "0.26.3", features = ["derive"] }
|
|
tokio = { version = "1.38.0", features = ["full"] }
|
|
tracing = "0.1.40"
|
|
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
|