update dependencies

This commit is contained in:
Moritz Hölting 2025-06-18 14:52:49 +02:00
parent 94b1ffead7
commit ad599597f9
6 changed files with 717 additions and 699 deletions

View File

@ -1,4 +1,34 @@
# Include any files or directories that you don't want to be copied to your
# container here (e.g., local build artifacts, temporary files, etc.).
#
# For more help, visit the .dockerignore file reference guide at
# https://docs.docker.com/engine/reference/builder/#dockerignore-file
**/.DS_Store
**/.classpath
**/.dockerignore
**/.env
**/.git
**/.gitignore
**/.project
**/.settings
**/.toolstarget
**/.vs
**/.vscode
**/*.*proj.user
**/*.dbmdl
**/*.jfm
**/charts
**/docker-compose*
**/compose*
**/Dockerfile*
**/node_modules
**/npm-debug.log
**/secrets.dev.yaml
**/values.dev.yaml
/bin
/target
/dev-compose.yml
.env
.gitignore
LICENSE
README.md
target
/dev-compose.yml

1370
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -17,9 +17,9 @@ readme = "README.md"
anyhow = "1.0.93"
chrono = "0.4.38"
dotenvy = "0.15.7"
itertools = "0.13.0"
itertools = "0.14.0"
sqlx = "0.8.2"
strum = "0.26.3"
strum = "0.27.1"
tokio = "1.41.1"
tracing = "0.1.40"
tracing-subscriber = "0.3.18"

View File

@ -18,7 +18,7 @@ futures = "0.3.31"
itertools = { workspace = true }
num-bigint = "0.4.6"
reqwest = { version = "0.12.9", default-features = false, features = ["charset", "rustls-tls", "http2"] }
scraper = "0.21.0"
scraper = "0.23.1"
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"] }

View File

@ -34,7 +34,7 @@ impl Dish {
self.extras.contains(&"vegan".to_string())
}
pub fn is_vegetarian(&self) -> bool {
self.extras.contains(&"vegetarian".to_string())
self.extras.contains(&"vegetarisch".to_string())
}
pub fn get_extras(&self) -> &[String] {
&self.extras

View File

@ -11,7 +11,7 @@ publish = false
[dependencies]
actix-cors = "0.7.0"
actix-governor = { version = "0.7.0", features = ["log"] }
actix-governor = { version = "0.8.0", features = ["log"] }
actix-web = "4.9.0"
anyhow = { workspace = true }
bigdecimal = { version = "0.4.6", features = ["serde"] }