update dependencies
This commit is contained in:
parent
94b1ffead7
commit
ad599597f9
|
@ -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
|
/target
|
||||||
|
LICENSE
|
||||||
|
README.md
|
||||||
|
target
|
||||||
/dev-compose.yml
|
/dev-compose.yml
|
||||||
.env
|
|
||||||
.gitignore
|
|
File diff suppressed because it is too large
Load Diff
|
@ -17,9 +17,9 @@ readme = "README.md"
|
||||||
anyhow = "1.0.93"
|
anyhow = "1.0.93"
|
||||||
chrono = "0.4.38"
|
chrono = "0.4.38"
|
||||||
dotenvy = "0.15.7"
|
dotenvy = "0.15.7"
|
||||||
itertools = "0.13.0"
|
itertools = "0.14.0"
|
||||||
sqlx = "0.8.2"
|
sqlx = "0.8.2"
|
||||||
strum = "0.26.3"
|
strum = "0.27.1"
|
||||||
tokio = "1.41.1"
|
tokio = "1.41.1"
|
||||||
tracing = "0.1.40"
|
tracing = "0.1.40"
|
||||||
tracing-subscriber = "0.3.18"
|
tracing-subscriber = "0.3.18"
|
|
@ -18,7 +18,7 @@ futures = "0.3.31"
|
||||||
itertools = { workspace = true }
|
itertools = { workspace = true }
|
||||||
num-bigint = "0.4.6"
|
num-bigint = "0.4.6"
|
||||||
reqwest = { version = "0.12.9", default-features = false, features = ["charset", "rustls-tls", "http2"] }
|
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"] }
|
sqlx = { workspace = true, features = ["runtime-tokio-rustls", "postgres", "migrate", "chrono", "uuid", "bigdecimal"] }
|
||||||
strum = { workspace = true, features = ["derive"] }
|
strum = { workspace = true, features = ["derive"] }
|
||||||
tokio = { workspace = true, features = ["macros", "rt-multi-thread"] }
|
tokio = { workspace = true, features = ["macros", "rt-multi-thread"] }
|
||||||
|
|
|
@ -34,7 +34,7 @@ impl Dish {
|
||||||
self.extras.contains(&"vegan".to_string())
|
self.extras.contains(&"vegan".to_string())
|
||||||
}
|
}
|
||||||
pub fn is_vegetarian(&self) -> bool {
|
pub fn is_vegetarian(&self) -> bool {
|
||||||
self.extras.contains(&"vegetarian".to_string())
|
self.extras.contains(&"vegetarisch".to_string())
|
||||||
}
|
}
|
||||||
pub fn get_extras(&self) -> &[String] {
|
pub fn get_extras(&self) -> &[String] {
|
||||||
&self.extras
|
&self.extras
|
||||||
|
|
|
@ -11,7 +11,7 @@ publish = false
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
actix-cors = "0.7.0"
|
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"
|
actix-web = "4.9.0"
|
||||||
anyhow = { workspace = true }
|
anyhow = { workspace = true }
|
||||||
bigdecimal = { version = "0.4.6", features = ["serde"] }
|
bigdecimal = { version = "0.4.6", features = ["serde"] }
|
||||||
|
|
Loading…
Reference in New Issue