diff --git a/Cargo.lock b/Cargo.lock index f54ef1b810..2366370079 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -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", diff --git a/Cargo.toml b/Cargo.toml index bd63f9d91f..5041f167c3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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 diff --git a/src/servers/Cargo.toml b/src/servers/Cargo.toml index e75192c9ba..8b64a256e7 100644 --- a/src/servers/Cargo.toml +++ b/src/servers/Cargo.toml @@ -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", ] }