From 3264d062e8a3e47a4ae5c692663c538e78195f76 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 18 Nov 2024 18:14:27 +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 d44d72e640bf1..8c91b83fd3444 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -7772,7 +7772,7 @@ dependencies = [ "lazy_static", "lru 0.12.0", "mio 0.8.11", - "mysql_common", + "mysql_common 0.32.4", "native-tls", "once_cell", "pem", @@ -7792,9 +7792,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", @@ -7805,7 +7805,6 @@ dependencies = [ "byteorder", "bytes", "cc", - "chrono", "cmake", "crc32fast", "flate2", @@ -7830,6 +7829,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" @@ -11020,7 +11052,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 4a7493dd3dd9c..1b03fe91b098c 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"] }