28 lines
1008 B
TOML
28 lines
1008 B
TOML
|
[package]
|
||
|
name = "mensa-upb-api"
|
||
|
description = "A web api for a local database of the canteens of the University of Paderborn"
|
||
|
license.workspace = true
|
||
|
authors.workspace = true
|
||
|
repository.workspace = true
|
||
|
readme.workspace = true
|
||
|
version = "0.2.0"
|
||
|
edition = "2021"
|
||
|
publish = false
|
||
|
|
||
|
[dependencies]
|
||
|
actix-cors = "0.7.0"
|
||
|
actix-governor = { version = "0.7.0", features = ["log"] }
|
||
|
actix-web = "4.9.0"
|
||
|
anyhow = { workspace = true }
|
||
|
bigdecimal = { version = "0.4.6", features = ["serde"] }
|
||
|
chrono = { workspace = true, features = ["serde"] }
|
||
|
dotenvy = { workspace = true }
|
||
|
itertools = { workspace = true }
|
||
|
serde = { version = "1.0.215", features = ["derive"] }
|
||
|
serde_json = "1.0.133"
|
||
|
sqlx = { workspace = true, features = ["runtime-tokio-rustls", "postgres", "migrate", "chrono", "uuid", "bigdecimal"] }
|
||
|
strum = { workspace = true, features = ["derive"] }
|
||
|
tokio = { workspace = true, features = ["macros", "rt-multi-thread"] }
|
||
|
tracing = "0.1.40"
|
||
|
tracing-subscriber = { workspace = true, features = ["env-filter"] }
|