Bump dependencies

This commit is contained in:
Earlopain 2024-01-23 15:58:30 +01:00
parent 8807bc8658
commit 659f607b45
No known key found for this signature in database
GPG Key ID: 48860312319ADF61
3 changed files with 337 additions and 243 deletions

572
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -9,7 +9,7 @@ edition = "2021"
actix-web = "4"
moka = { version = "0.12.1", features = ["future"] }
config = { version = "0.13.3", default_features = false }
deadpool-postgres = { version = "0.11.0", features = ["serde", "rt_tokio_1"] }
deadpool-postgres = { version = "0.12.0", features = ["serde", "rt_tokio_1"] }
derive_more = "0.99.2"
serde = { version = "1.0.104", features = ["derive"] }
serde_json = "1.0"
@ -18,4 +18,4 @@ tokio-pg-mapper-derive = "0.2"
tokio-postgres = "0.7.8"
unicode-normalization = "0.1.19"
log = "0.4"
env_logger = "0.10.0"
env_logger = "0.11.0"

View File

@ -1,4 +1,4 @@
FROM rust:1.73-alpine3.18 as builder
FROM rust:1.75-alpine3.19 as builder
WORKDIR /app
@ -8,6 +8,6 @@ COPY . .
RUN cargo build --release
FROM alpine:3.18
FROM alpine:3.19
COPY --from=builder /app/target/release/autocompleted /app/autocompleted