Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update all non-major dependencies #222

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:

services:
postgres:
image: postgres:16.1-alpine
image: postgres:16.4-alpine
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: root
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ edition = "2021"

[dependencies]
server = { path = "crates/server" }
tokio = { version = "1.26.0", features = ["macros", "rt-multi-thread", "fs"] }
tokio = { version = "1.40.0", features = ["macros", "rt-multi-thread", "fs"] }

[target.'cfg(not(target_env = "msvc"))'.dependencies]
jemallocator = "0.5.0"
jemallocator = "0.5.4"
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ RUN cargo build --target x86_64-unknown-linux-musl --release
## Build CA Certificates
####################################################################################################

FROM alpine:3.17.2 as ca-certificates
FROM alpine:3.20.3 as ca-certificates
RUN apk add -U --no-cache ca-certificates

####################################################################################################
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.dev
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM rust:1.68 AS builder
FROM rust:1.81 AS builder

RUN apt update && apt install -y nodejs npm
RUN npm i -g npm bunyan
Expand Down
12 changes: 6 additions & 6 deletions crates/entity/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ name = "entity"
path = "src/lib.rs"

[dependencies]
serde = { version = "1.0.158", features = ["derive"] }
serde_json = "1.0.94"
chrono = { version = "0.4.24", features = ["serde"] }
sea-orm = { version = "0.11.1", features = ["postgres-array"] }
sea-query = { version = "0.28.3", features = ["postgres-array"] }
getset = "0.1.2"
serde = { version = "1.0.210", features = ["derive"] }
serde_json = "1.0.128"
chrono = { version = "0.4.38", features = ["serde"] }
sea-orm = { version = "0.12.15", features = ["postgres-array"] }
sea-query = { version = "0.31.0", features = ["postgres-array"] }
getset = "0.1.3"
2 changes: 1 addition & 1 deletion crates/health-check/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
minreq = { version = "2.7.0", default-features = false }
minreq = { version = "2.12.0", default-features = false }
12 changes: 6 additions & 6 deletions crates/migration/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ path = "src/lib.rs"

[dependencies]
entity = { path = "../entity" }
sea-orm-migration = { version = "0.11.1", features = ["sqlx-postgres", "runtime-tokio-native-tls"] }
chrono = "0.4.24"
tracing = "0.1.37"
tracing-subscriber = "0.3.16"
tokio = { version = "1.26.0", features = ["macros"] }
openssl = { version = "0.10.47", features = ["vendored"] }
sea-orm-migration = { version = "0.12.15", features = ["sqlx-postgres", "runtime-tokio-native-tls"] }
chrono = "0.4.38"
tracing = "0.1.40"
tracing-subscriber = "0.3.18"
tokio = { version = "1.40.0", features = ["macros"] }
openssl = { version = "0.10.66", features = ["vendored"] }
openssl-probe = "0.1.5"
80 changes: 40 additions & 40 deletions crates/server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,49 +8,49 @@ publish = false
[dependencies]
entity = { path = "../entity" }
migration = { path = "../migration" }
actix-web = "4.3.1"
actix-multipart = { version = "0.6.0" }
actix-cors = { version = "0.6.4" }
actix-web = "4.9.0"
actix-multipart = { version = "0.7.2" }
actix-cors = { version = "0.7.0" }
mime = { version = "0.3.17" }
tokio = { version = "1.26.0", features = ["macros", "rt-multi-thread", "fs"] }
tokio-util = { version = "0.7.7", features = ["codec"] }
serde = "1.0.158"
tracing = "0.1.37"
tracing-actix-web = { version = "0.7.3", features = ["default", "opentelemetry_0_17"] }
opentelemetry = { version = "0.18", features = ["rt-tokio-current-thread"] }
opentelemetry-jaeger = { version = "0.17", features = ["rt-tokio-current-thread"] }
tracing-opentelemetry = { version = "0.18.0" }
tracing-subscriber = { version = "0.3.16", features = ["registry", "env-filter"] }
tracing-bunyan-formatter = "0.3.6"
tracing-log = "0.1.3"
sea-orm = { version = "0.11.1", features = ["debug-print", "runtime-tokio-native-tls", "sqlx-postgres", "postgres-array"] }
config = { version = "0.13.3" }
serde_json = "1.0.94"
chrono = "0.4.24"
futures = "0.3.27"
getset = "0.1.2"
uuid = { version = "1.3.0", features = ["serde"] }
derive_more = "0.99.17"
url = "2.3.1"
async-trait = "0.1.67"
once_cell = "1.17.1"
aws-sdk-s3 = { version = "0.24.0", features = ["native-tls", "rt-tokio"], default-features = false }
aws-types = { version = "0.54.1" }
aws-config = { version = "0.54.1", features = ["native-tls", "rt-tokio"], default-features = false }
aws-smithy-http = { version = "0.54.4", features = ["rt-tokio"] }
aws-smithy-async = { version = "0.54.4", features = ["rt-tokio"] }
image = { version = "0.24.5" }
openssl = { version = "0.10.47", features = ["vendored"] }
tokio = { version = "1.40.0", features = ["macros", "rt-multi-thread", "fs"] }
tokio-util = { version = "0.7.12", features = ["codec"] }
serde = "1.0.210"
tracing = "0.1.40"
tracing-actix-web = { version = "0.7.12", features = ["default", "opentelemetry_0_17"] }
opentelemetry = { version = "0.25.0", features = ["rt-tokio-current-thread"] }
opentelemetry-jaeger = { version = "0.22.0", features = ["rt-tokio-current-thread"] }
tracing-opentelemetry = { version = "0.26.0" }
tracing-subscriber = { version = "0.3.18", features = ["registry", "env-filter"] }
tracing-bunyan-formatter = "0.3.9"
tracing-log = "0.2.0"
sea-orm = { version = "0.12.15", features = ["debug-print", "runtime-tokio-native-tls", "sqlx-postgres", "postgres-array"] }
config = { version = "0.14.0" }
serde_json = "1.0.128"
chrono = "0.4.38"
futures = "0.3.30"
getset = "0.1.3"
uuid = { version = "1.10.0", features = ["serde"] }
derive_more = "0.99.18"
url = "2.5.2"
async-trait = "0.1.82"
once_cell = "1.19.0"
aws-sdk-s3 = { version = "0.39.1", features = ["native-tls", "rt-tokio"], default-features = false }
aws-types = { version = "0.101.0" }
aws-config = { version = "0.101.0", features = ["native-tls", "rt-tokio"], default-features = false }
aws-smithy-http = { version = "0.60.11", features = ["rt-tokio"] }
aws-smithy-async = { version = "0.101.0", features = ["rt-tokio"] }
image = { version = "0.25.2" }
openssl = { version = "0.10.66", features = ["vendored"] }
openssl-probe = "0.1.5"
deunicode = { version = "1.3.3" }
lazy_static = { version = "1.4.0" }
base64 = "0.21.0"
reqwest = { version = "0.11.15", features = ["json", "cookies", "multipart", "stream"] }
typed-builder = "0.14.0"
deunicode = { version = "1.6.0" }
lazy_static = { version = "1.5.0" }
base64 = "0.22.1"
reqwest = { version = "0.12.7", features = ["json", "cookies", "multipart", "stream"] }
typed-builder = "0.20.0"
humansize = { version = "2.1.3", features = ["impl_style"] }
aws-credential-types = "0.54.1"
aws-credential-types = "0.101.0"

[dev-dependencies]
insta = { version = "1.28.0", features = ["json"] }
insta = { version = "1.40.0", features = ["json"] }
portpicker = "0.1.1"
test-context = "0.1.4"
test-context = "0.3.0"
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ services:


postgres:
image: postgres:16.1-alpine
image: postgres:16.4-alpine
restart: unless-stopped
ports:
- "5432:5432"
Expand Down
Loading