From 1d56c4ca8947e1d9d2e45aa4d5f41205c88046d2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 24 Jul 2025 05:18:51 +0000 Subject: [PATCH] Bump odbc-api from 13.0.1 to 14.0.2 --- updated-dependencies: - dependency-name: odbc-api dependency-version: 14.0.2 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- Cargo.lock | 22 ++++++++++++++++++---- core/Cargo.toml | 2 +- 2 files changed, 19 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 08bdbb59..e116686c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -424,7 +424,7 @@ dependencies = [ "arrow", "chrono", "log", - "odbc-api", + "odbc-api 13.1.0", "thiserror 2.0.12", ] @@ -2049,7 +2049,7 @@ dependencies = [ "mysql_async", "native-tls", "num-bigint", - "odbc-api", + "odbc-api 14.2.0", "pem", "postgres-native-tls", "prost 0.14.1", @@ -3928,9 +3928,23 @@ dependencies = [ [[package]] name = "odbc-api" -version = "13.0.1" +version = "13.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "229e120c026132740a8bb9d35c336b4d4790c148f7dcbd9824b55ba4d8bf903f" +checksum = "44e14665455e2817ac5b0dd9f65a3dc97e76e8f85eeac6e4301b7cf9da451884" +dependencies = [ + "atoi", + "log", + "odbc-sys", + "thiserror 2.0.12", + "widestring", + "winit", +] + +[[package]] +name = "odbc-api" +version = "14.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "acbcfe6d276ae38805a0b41d348bef51906b4603671434a53d8498aa1359238b" dependencies = [ "atoi", "log", diff --git a/core/Cargo.toml b/core/Cargo.toml index babb0bca..0bc70fb5 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -60,7 +60,7 @@ mysql_async = { version = "0.36", features = [ ], optional = true } native-tls = { version = "0.2", optional = true } num-bigint = "0.4" -odbc-api = { version = "13.0", optional = true } +odbc-api = { version = "14.2", optional = true } pem = { version = "3.0.4", optional = true } postgres-native-tls = { version = "0.5.0", optional = true } prost = { version = "0.14", optional = true }