Skip to content

Commit

Permalink
fix(deps): update all non-major dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Oct 12, 2023
1 parent a4b79ce commit 9f98dcf
Show file tree
Hide file tree
Showing 9 changed files with 259 additions and 243 deletions.
2 changes: 1 addition & 1 deletion data/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.11-bullseye as build-stage
FROM python:3.12-bullseye as build-stage
WORKDIR /app

ARG GIT_COMMIT_SHA
Expand Down
82 changes: 49 additions & 33 deletions server/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ structured-logger = "1.0.3"
actix-web-prom = { version = "0.7.0", default-features = false, features = [] }

# runtime + webserver
tokio = { version = "1.32", features = ["full"] }
tokio = { version = "1.33", features = ["full"] }
actix-web = "4.4.0"
actix-cors = "0.6.4"

Expand Down
2 changes: 1 addition & 1 deletion server/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM rust:1.72-alpine AS compiler
FROM rust:1.73-alpine AS compiler

# to ache the build this line inludes all the dependencys all servers need
# this is not an issue since we copy the generated binary to a more minimal envornment
Expand Down
6 changes: 3 additions & 3 deletions server/calendar/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ serde_json.workspace = true
chrono = { version = "0.4.31", default-features = false, features = ["serde"] }

# database
diesel = { version = "2.1.2", features = ["default", "chrono", "postgres"] }
diesel = { version = "2.1.3", features = ["default", "chrono", "postgres"] }
diesel_migrations = "2.1.0"

# metrics
Expand All @@ -42,9 +42,9 @@ prometheus = { version = "0.13.3", features = ["default", "push"] }
rand = "0.8.5"
futures = "0.3.28"
rustls = "0.21.7"
reqwest = { version = "0.11.20", default-features = false, features = ["rustls", "json"] }
reqwest = { version = "0.11.22", default-features = false, features = ["rustls", "json"] }
minidom = "0.15.2"
regex = "1.9.6"
regex = "1.10.0"

[dev-dependencies]
pretty_assertions.workspace = true
6 changes: 3 additions & 3 deletions server/feedback/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,13 @@ serde.workspace = true
serde_json.workspace = true

rand = "0.8.5"
regex = "1.9.6"
octocrab = "0.30.1"
regex = "1.10.0"
octocrab = "0.31.1"

# web
jsonwebtoken = "8.3.0"
chrono= { version = "0.4.31", default-features = false }
actix-governor = { version = "0.4.1", features = ["log"] }
actix-governor = { version = "0.5.0", features = ["log"] }

# proposing feedback
tempfile = "3.8.0"
Expand Down
6 changes: 3 additions & 3 deletions server/main-api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,18 +33,18 @@ unicode-truncate = "0.2.0"
serde_yaml = "0.9"

# database
diesel = { version = "2.1.2", features = ["default", "sqlite"] }
diesel = { version = "2.1.3", features = ["default", "sqlite"] }
libsqlite3-sys = { version = "*", features = ["bundled"] }
sqlx = { version = "0.7.2", features = ["sqlite", "runtime-tokio", "migrate", "macros"] }

# search
meilisearch-sdk = "0.24.2"
logos="0.13.0"
regex = "1.9.6"
regex = "1.10.0"

# maps
rustls = "0.21.7"
reqwest = { version= "0.11.20", default-features = false, features = ["rustls-tls", "json", "gzip"] }
reqwest = { version= "0.11.22", default-features = false, features = ["rustls-tls", "json", "gzip"] }
image = "0.24.7"
imageproc = "0.23.0"
rusttype = "0.9.3"
Expand Down
Loading

0 comments on commit 9f98dcf

Please sign in to comment.