mensa-upb-api/Cargo.toml

30 lines
844 B
TOML
Raw Permalink Normal View History

2024-07-02 17:38:48 +02:00
[package]
name = "mensa-upb-api"
description = "A web scraper api for the canteens of the University of Paderborn"
2024-07-06 15:04:43 +02:00
license = "MIT"
authors = ["Moritz Hölting"]
repository = "https://github.com/moritz-hoelting/mensa-upb-api"
publish = false
readme = "README.md"
version = "0.1.1"
2024-07-02 17:38:48 +02:00
edition = "2021"
[dependencies]
2024-07-02 21:41:32 +02:00
actix-cors = "0.7.0"
2024-07-02 19:06:37 +02:00
actix-governor = { version = "0.5.0", features = ["log"] }
2024-07-02 17:38:48 +02:00
actix-web = "4.8.0"
2024-07-02 20:10:29 +02:00
anyhow = "1.0.86"
2024-07-02 17:38:48 +02:00
chrono = "0.4.38"
const_format = "0.2.32"
dotenvy = "0.15.7"
2024-07-02 20:10:29 +02:00
futures = "0.3.30"
2024-07-02 17:38:48 +02:00
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"] }
2024-07-02 22:54:11 +02:00
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }