fix: update pgwire for potential issue with connection establish (#4783)

This commit is contained in:
Ning Sun
2024-09-29 03:27:31 +08:00
committed by GitHub
parent d6be44bc7f
commit cedbbcf2b8
2 changed files with 3 additions and 3 deletions

4
Cargo.lock generated
View File

@@ -7765,9 +7765,9 @@ dependencies = [
[[package]]
name = "pgwire"
version = "0.24.3"
version = "0.25.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4895c8e98cbe81496692ae3d2262a9fb0d26302af7c9ea483cf708000106aa0a"
checksum = "5e63bc3945a17010ff93677589c656c5e8fb4183b00bc86360de8e187d2a86cb"
dependencies = [
"async-trait",
"bytes",

View File

@@ -71,7 +71,7 @@ openmetrics-parser = "0.4"
opensrv-mysql = { git = "https://github.com/datafuselabs/opensrv", rev = "6bbc3b65e6b19212c4f7fc4f40c20daf6f452deb" }
opentelemetry-proto.workspace = true
parking_lot = "0.12"
pgwire = { version = "0.24.3", default-features = false, features = ["server-api-ring"] }
pgwire = { version = "0.25.0", default-features = false, features = ["server-api-ring"] }
pin-project = "1.0"
pipeline.workspace = true
postgres-types = { version = "0.2", features = ["with-chrono-0_4", "with-serde_json-1"] }