Skip to content

Commit

Permalink
fix: upgrade sqlx version
Browse files Browse the repository at this point in the history
  • Loading branch information
DhananjayPurohit committed Aug 5, 2024
1 parent 91d5c86 commit 8c6d88b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion token-server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ edition = "2021"
config = "0.13.1"
reqwest = { version = "0.11.16", features = ["blocking", "json", "socks"] }
rocket = { version = "0.5.0-rc", features = ["json"] }
sqlx = { version = "0.7", features = [ "runtime-tokio", "postgres", "time", "uuid", "tls-rustls" ] }
sqlx = { version = "0.8.0", features = [ "runtime-tokio", "postgres", "time", "uuid", "tls-rustls" ] }
serde = { version = "1.0.163", features = ["derive"] }
serde_json = "1.0.96"
schemars = { version = "0.8.12", features = ["chrono", "uuid"] }
Expand Down
2 changes: 1 addition & 1 deletion token-server/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ WORKDIR /mercurylayer/token-server

# # Build your Rust project. Since the source files are now present,
# # the Rust compiler should be able to find and compile them.
RUN cargo build --release
RUN CARGO_TARGET_DIR=target cargo build --release

EXPOSE 8001
# # Command to run the token server by default when the container starts
Expand Down

0 comments on commit 8c6d88b

Please sign in to comment.