chore: switch to released pgwire

This commit is contained in:
Ning Sun
2026-03-18 10:14:25 +08:00
parent a6a54f5dda
commit f2d6896a0b
3 changed files with 5 additions and 5 deletions

7
Cargo.lock generated
View File

@@ -7300,7 +7300,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "07033963ba89ebaf1584d767badaa2e8fcec21aedea6b8c0346d487d49c28667"
dependencies = [
"cfg-if",
"windows-targets 0.48.5",
"windows-targets 0.52.6",
]
[[package]]
@@ -9618,8 +9618,9 @@ dependencies = [
[[package]]
name = "pgwire"
version = "0.38.0"
source = "git+https://github.com/sunng87/pgwire?rev=26ee9805c433bc56262c6075b8c12f9c9e132364#26ee9805c433bc56262c6075b8c12f9c9e132364"
version = "0.38.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f2a798d130b8975a566c2cf6d8955746e1f09a9ee2c3ff2e6020a2c6528c5bd1"
dependencies = [
"async-trait",
"base64 0.22.1",

View File

@@ -345,7 +345,6 @@ datafusion-datasource = { git = "https://github.com/GreptimeTeam/datafusion.git"
datafusion-sql = { git = "https://github.com/GreptimeTeam/datafusion.git", rev = "02b82535e0160c4545667f36a03e1ff9d1d2e51f" }
datafusion-substrait = { git = "https://github.com/GreptimeTeam/datafusion.git", rev = "02b82535e0160c4545667f36a03e1ff9d1d2e51f" }
sqlparser = { git = "https://github.com/GreptimeTeam/sqlparser-rs.git", rev = "2aefa08a8d69c96eec2d6d6703598a009bba6e4c" } # on branch v0.61.x
pgwire = { git = "https://github.com/sunng87/pgwire", rev = "26ee9805c433bc56262c6075b8c12f9c9e132364" }
[profile.release]
debug = 1

View File

@@ -89,7 +89,7 @@ operator.workspace = true
otel-arrow-rust.workspace = true
parking_lot.workspace = true
pg_interval = { version = "0.5.2", package = "pg_interval_2" }
pgwire = { version = "0.38", default-features = false, features = [
pgwire = { version = "0.38.1", default-features = false, features = [
"server-api-ring",
"pg-ext-types",
] }