From 27d9ebe817f4e57e0b5e162798a18f114d7a1103 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 14 Apr 2025 14:37:01 +0000 Subject: [PATCH] build(rust): bump mysql_common from 0.32.4 to 0.35.1 Bumps [mysql_common](https://github.com/blackbeam/rust_mysql_common) from 0.32.4 to 0.35.1. - [Release notes](https://github.com/blackbeam/rust_mysql_common/releases) - [Commits](https://github.com/blackbeam/rust_mysql_common/compare/v0.32.4...v0.35.1) --- updated-dependencies: - dependency-name: mysql_common dependency-version: 0.35.1 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 57 ++++++++++++++++++++++++++++++++++++++++--- connectorx/Cargo.toml | 2 +- 2 files changed, 54 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index eb89afd55..a47f43930 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1043,7 +1043,7 @@ dependencies = [ "itertools 0.14.0", "j4rs", "log", - "mysql_common", + "mysql_common 0.35.1", "native-tls", "num-traits", "openssl", @@ -3533,7 +3533,7 @@ dependencies = [ "io-enum", "libc", "lru", - "mysql_common", + "mysql_common 0.32.4", "named_pipe", "native-tls", "pem", @@ -3563,6 +3563,24 @@ dependencies = [ "thiserror 1.0.69", ] +[[package]] +name = "mysql-common-derive" +version = "0.32.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "deb6d9ff4094f6d58d3f892fc558e60048476213dd17dcf904b62202e9029da6" +dependencies = [ + "darling 0.20.11", + "heck", + "num-bigint", + "proc-macro-crate", + "proc-macro-error2", + "proc-macro2", + "quote", + "syn 2.0.100", + "termcolor", + "thiserror 1.0.69", +] + [[package]] name = "mysql_common" version = "0.32.4" @@ -3578,13 +3596,12 @@ dependencies = [ "byteorder", "bytes", "cc", - "chrono", "cmake", "crc32fast", "flate2", "frunk", "lazy_static", - "mysql-common-derive", + "mysql-common-derive 0.31.2", "num-bigint", "num-traits", "rand 0.8.5", @@ -3603,6 +3620,38 @@ dependencies = [ "zstd", ] +[[package]] +name = "mysql_common" +version = "0.35.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "05cb54012445ed90405f9781f5cf730fa3651d00b5d9f3f740cf6dad517945e8" +dependencies = [ + "base64 0.22.1", + "bitflags 2.9.0", + "btoi", + "byteorder", + "bytes", + "cc", + "chrono", + "cmake", + "crc32fast", + "flate2", + "getrandom 0.3.2", + "mysql-common-derive 0.32.0", + "num-bigint", + "num-traits", + "regex", + "saturating", + "serde", + "serde_json", + "sha1", + "sha2", + "subprocess", + "thiserror 2.0.12", + "uuid 1.16.0", + "zstd", +] + [[package]] name = "named_pipe" version = "0.4.1" diff --git a/connectorx/Cargo.toml b/connectorx/Cargo.toml index 9c094744b..a35b44e63 100644 --- a/connectorx/Cargo.toml +++ b/connectorx/Cargo.toml @@ -39,7 +39,7 @@ oracle = {version = "0.6", optional = true} postgres = {version = "0.19", features = ["with-chrono-0_4", "with-uuid-1", "with-serde_json-1"], optional = true} postgres-native-tls = {version = "0.5", optional = true} postgres-openssl = {version = "0.5", optional = true} -mysql_common = {version = "0.32", features = ["chrono"], optional = true} +mysql_common = {version = "0.35", features = ["chrono"], optional = true} r2d2 = {version = "0.8", optional = true} r2d2-oracle = {version = "0.7", features = ["chrono"], optional = true} r2d2_mysql = {version = "25", optional = true}