From 0bda92745354e3d2ae5a6c896d301f651d4752dd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Jun 2026 02:05:02 +0000 Subject: [PATCH] chore(deps): bump pg_interval from 0.5.0 to 0.6.0 Bumps [pg_interval](https://github.com/piperRyan/rust-postgres-interval) from 0.5.0 to 0.6.0. - [Release notes](https://github.com/piperRyan/rust-postgres-interval/releases) - [Commits](https://github.com/piperRyan/rust-postgres-interval/compare/v0.5.0...v0.6.0) --- updated-dependencies: - dependency-name: pg_interval dependency-version: 0.6.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 23 +++++++++++++++++------ arrow-pg/Cargo.toml | 2 +- 2 files changed, 18 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 0a9c627..23fbd4a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -392,7 +392,7 @@ dependencies = [ "geo-traits", "geoarrow", "geoarrow-schema", - "pg_interval", + "pg_interval 0.6.0", "pgwire", "postgis", "postgres-types", @@ -1908,7 +1908,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb" dependencies = [ "libc", - "windows-sys 0.59.0", + "windows-sys 0.61.2", ] [[package]] @@ -3132,6 +3132,17 @@ dependencies = [ "postgres-types", ] +[[package]] +name = "pg_interval" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8408fb1e08ebf2e7676d001caa6482d1b33e7e1f1dad9d3a758a05640eea2026" +dependencies = [ + "bytes", + "chrono", + "postgres-types", +] + [[package]] name = "pgwire" version = "0.40.1" @@ -3147,7 +3158,7 @@ dependencies = [ "hex", "lazy-regex", "md5", - "pg_interval", + "pg_interval 0.5.0", "postgis", "postgres-types", "rand 0.10.0", @@ -3699,7 +3710,7 @@ dependencies = [ "errno", "libc", "linux-raw-sys", - "windows-sys 0.59.0", + "windows-sys 0.61.2", ] [[package]] @@ -4113,7 +4124,7 @@ dependencies = [ "getrandom 0.3.4", "once_cell", "rustix", - "windows-sys 0.59.0", + "windows-sys 0.61.2", ] [[package]] @@ -4624,7 +4635,7 @@ version = "0.1.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22" dependencies = [ - "windows-sys 0.59.0", + "windows-sys 0.61.2", ] [[package]] diff --git a/arrow-pg/Cargo.toml b/arrow-pg/Cargo.toml index 289ca5e..51d5635 100644 --- a/arrow-pg/Cargo.toml +++ b/arrow-pg/Cargo.toml @@ -27,7 +27,7 @@ datafusion = { workspace = true, optional = true } futures.workspace = true geoarrow = { version = "0.8", optional = true } geoarrow-schema = { version = "0.8", optional = true } -pg_interval = { version = "0.5.0" } +pg_interval = { version = "0.6.0" } pgwire = { workspace = true, default-features = false, features = ["server-api", "pg-ext-types"] } postgres-types.workspace = true rust_decimal.workspace = true