Skip to content

Commit

Permalink
Bump to rust v1.74 + stabilize uuid v7
Browse files Browse the repository at this point in the history
  • Loading branch information
jakewmeyer committed Nov 21, 2023
1 parent daa88d8 commit 5c775f3
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 10 deletions.
2 changes: 0 additions & 2 deletions .cargo/config.toml

This file was deleted.

14 changes: 7 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,19 +10,19 @@ axum = { version = "0.6.20", features = ["http2", "headers"] }
chrono = { version = "0.4.31", features = ["serde"] }
dashmap = "5.5.3"
dotenvy = "0.15.7"
figment = { version = "0.10.11", features = ["env"] }
figment = { version = "0.10.12", features = ["env"] }
jsonwebtoken = { version = "9.1.0", default-features = false }
owasp-headers = "0.1.2"
reqwest = { version = "0.11.22", default-features = false, features = ["rustls-tls", "trust-dns"] }
sea-orm = { version = "0.12.4", features = [ "sqlx-postgres", "runtime-tokio-rustls", "macros", "with-json", "with-chrono", "with-uuid" ] }
serde = { version = "1.0.189", features = ["derive"] }
serde_json = "1.0.107"
sea-orm = { version = "0.12.6", features = [ "sqlx-postgres", "runtime-tokio-rustls", "macros", "with-json", "with-chrono", "with-uuid" ] }
serde = { version = "1.0.193", features = ["derive"] }
serde_json = "1.0.108"
serde_with = "3.4.0"
thiserror = "1.0.50"
tokio = { version = "1.33.0", features = ["full"] }
tokio = { version = "1.34.0", features = ["full"] }
tower = "0.4.13"
tower-default-headers = "0.1.1"
tower-http = { version = "0.4.4", features = ["trace", "cors", "compression-full", "request-id", "timeout"] }
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
uuid = { version = "1.5.0", features = ["serde", "v7"] }
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
uuid = { version = "1.6.1", features = ["serde", "v7"] }
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM rust:1.73.0-alpine AS base
FROM rust:1.74.0-alpine AS base
RUN apk add musl-dev musl-utils
RUN cargo install cargo-chef

Expand Down

0 comments on commit 5c775f3

Please sign in to comment.