From 8ba4195ee0e499cff9f9c872c8ad582684cb2cf2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 18 Dec 2024 18:56:44 +0000 Subject: [PATCH] chore(deps): Bump mysql_common from 0.32.1 to 0.33.0 in the mysql group Bumps the mysql group with 1 update: [mysql_common](https://github.com/blackbeam/rust_mysql_common). Updates `mysql_common` from 0.32.1 to 0.33.0 - [Release notes](https://github.com/blackbeam/rust_mysql_common/releases) - [Commits](https://github.com/blackbeam/rust_mysql_common/compare/v0.32.1...v0.33.0) --- updated-dependencies: - dependency-name: mysql_common dependency-type: direct:production update-type: version-update:semver-minor dependency-group: mysql ... Signed-off-by: dependabot[bot] --- Cargo.lock | 42 +++++++++++++++++++++++++++++++++++----- src/connector/Cargo.toml | 2 +- 2 files changed, 38 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 33261a2eb7eff..f0eb6cc0903d8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -7808,7 +7808,7 @@ dependencies = [ "lazy_static", "lru 0.12.0", "mio 0.8.11", - "mysql_common", + "mysql_common 0.32.4", "native-tls", "once_cell", "pem", @@ -7828,9 +7828,9 @@ dependencies = [ [[package]] name = "mysql_common" -version = "0.32.1" +version = "0.32.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8a60cb978c0a1d654edcc1460f8d6092dacf21346ed6017d81fb76a23ef5a8de" +checksum = "478b0ff3f7d67b79da2b96f56f334431aef65e15ba4b29dd74a4236e29582bdc" dependencies = [ "base64 0.21.7", "bigdecimal 0.4.5", @@ -7841,7 +7841,6 @@ dependencies = [ "byteorder", "bytes", "cc", - "chrono", "cmake", "crc32fast", "flate2", @@ -7866,6 +7865,39 @@ dependencies = [ "zstd 0.13.0", ] +[[package]] +name = "mysql_common" +version = "0.33.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ccd1b5ad6509b04758ae5e339345baa6992c1fc11f45e4b9edae044417cac302" +dependencies = [ + "base64 0.22.0", + "bindgen", + "bitflags 2.6.0", + "btoi", + "byteorder", + "bytes", + "cc", + "chrono", + "cmake", + "crc32fast", + "flate2", + "lazy_static", + "num-bigint", + "num-traits", + "rand", + "regex", + "saturating", + "serde", + "serde_json", + "sha1", + "sha2", + "subprocess", + "thiserror 1.0.63", + "uuid", + "zstd 0.13.0", +] + [[package]] name = "naive-timer" version = "0.2.0" @@ -11095,7 +11127,7 @@ dependencies = [ "moka", "mongodb", "mysql_async", - "mysql_common", + "mysql_common 0.33.0", "nexmark", "num-bigint", "opendal 0.49.2", diff --git a/src/connector/Cargo.toml b/src/connector/Cargo.toml index 8e3c58bbc2d89..67380f3e95370 100644 --- a/src/connector/Cargo.toml +++ b/src/connector/Cargo.toml @@ -74,7 +74,7 @@ maplit = "1.0.2" moka = { version = "0.12.8", features = ["future"] } mongodb = { version = "2.8.2", features = ["tokio-runtime"] } mysql_async = { workspace = true } -mysql_common = { version = "0.32", default-features = false, features = [ +mysql_common = { version = "0.33", default-features = false, features = [ "chrono", ] } nexmark = { version = "0.2", features = ["serde"] }