From 91e239b3a27c35aa6616aa44253a72ecbeea01d5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 2 Jun 2025 06:14:04 +0000 Subject: [PATCH] build(rust): bump mysql_common from 0.32.4 to 0.35.4 Bumps [mysql_common](https://github.com/blackbeam/rust_mysql_common) from 0.32.4 to 0.35.4. - [Release notes](https://github.com/blackbeam/rust_mysql_common/releases) - [Commits](https://github.com/blackbeam/rust_mysql_common/compare/v0.32.4...v0.35.4) --- updated-dependencies: - dependency-name: mysql_common dependency-version: 0.35.4 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 53 +++++++++++++++++++++++++++++++++++++++---- connectorx/Cargo.toml | 2 +- 2 files changed, 50 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1e5beeebf..42620a489 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1044,7 +1044,7 @@ dependencies = [ "itertools 0.14.0", "j4rs", "log", - "mysql_common", + "mysql_common 0.35.4", "native-tls", "num-traits", "openssl", @@ -3582,7 +3582,7 @@ dependencies = [ "io-enum", "libc", "lru", - "mysql_common", + "mysql_common 0.32.4", "named_pipe", "native-tls", "pem", @@ -3612,6 +3612,24 @@ dependencies = [ "thiserror 1.0.69", ] +[[package]] +name = "mysql-common-derive" +version = "0.32.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "66f62cad7623a9cb6f8f64037f0c4f69c8db8e82914334a83c9788201c2c1bfa" +dependencies = [ + "darling 0.20.11", + "heck", + "num-bigint", + "proc-macro-crate", + "proc-macro-error2", + "proc-macro2", + "quote", + "syn 2.0.101", + "termcolor", + "thiserror 2.0.12", +] + [[package]] name = "mysql_common" version = "0.32.4" @@ -3627,13 +3645,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", @@ -3652,6 +3669,34 @@ dependencies = [ "zstd", ] +[[package]] +name = "mysql_common" +version = "0.35.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6e0ec195e788c95f36b7cf88127d538465fc2f7773e6e47af01834738eab0aee" +dependencies = [ + "base64 0.22.1", + "bitflags 2.9.0", + "btoi", + "byteorder", + "bytes", + "chrono", + "crc32fast", + "flate2", + "getrandom 0.3.2", + "mysql-common-derive 0.32.1", + "num-bigint", + "num-traits", + "regex", + "saturating", + "serde", + "serde_json", + "sha1", + "sha2", + "thiserror 2.0.12", + "uuid 1.16.0", +] + [[package]] name = "named_pipe" version = "0.4.1" diff --git a/connectorx/Cargo.toml b/connectorx/Cargo.toml index 5ab0f3587..e949351e0 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","with-cidr-0_2"], 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}