From e73dceb50fef19019f97ea769d5cfff0d3f519bd Mon Sep 17 00:00:00 2001 From: DhananjayPurohit Date: Tue, 27 Aug 2024 22:24:35 +0530 Subject: [PATCH] fix: upgrade sqlx version --- token-server/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/token-server/Cargo.toml b/token-server/Cargo.toml index d43f7f28..829e905f 100644 --- a/token-server/Cargo.toml +++ b/token-server/Cargo.toml @@ -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"] }