From 624d143c734ca7d39d7582c25c7baa60d100bb92 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 25 Dec 2024 18:16:21 +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 | 52 ++++++++++++++++++++++++++++++++-------- src/connector/Cargo.toml | 2 +- 2 files changed, 43 insertions(+), 11 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 31034235c93d..f967402a2c03 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -7762,7 +7762,7 @@ dependencies = [ "lazy_static", "lru 0.12.0", "mio 0.8.11", - "mysql_common", + "mysql_common 0.32.4", "native-tls", "once_cell", "pem", @@ -7782,9 +7782,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", @@ -7795,7 +7795,6 @@ dependencies = [ "byteorder", "bytes", "cc", - "chrono", "cmake", "crc32fast", "flate2", @@ -7820,6 +7819,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" @@ -9584,10 +9616,10 @@ name = "prost-build" version = "0.13.4" source = "git+https://github.com/xxchan/prost.git?rev=0eb1c7b09976cf6b5231e4b8d87bb5908ae6a163#0eb1c7b09976cf6b5231e4b8d87bb5908ae6a163" dependencies = [ - "heck 0.4.1", - "itertools 0.10.5", + "heck 0.5.0", + "itertools 0.13.0", "log", - "multimap 0.8.3", + "multimap 0.10.0", "once_cell", "petgraph", "prettyplease 0.2.15", @@ -9631,7 +9663,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "18bec9b0adc4eba778b33684b7ba3e7137789434769ee3ce3930463ef904cfca" dependencies = [ "anyhow", - "itertools 0.10.5", + "itertools 0.13.0", "proc-macro2", "quote", "syn 2.0.87", @@ -9643,7 +9675,7 @@ version = "0.13.4" source = "git+https://github.com/xxchan/prost.git?rev=0eb1c7b09976cf6b5231e4b8d87bb5908ae6a163#0eb1c7b09976cf6b5231e4b8d87bb5908ae6a163" dependencies = [ "anyhow", - "itertools 0.10.5", + "itertools 0.13.0", "proc-macro2", "quote", "syn 2.0.87", @@ -11065,7 +11097,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 b1ab8b9a8a72..37a6cf8b3802 100644 --- a/src/connector/Cargo.toml +++ b/src/connector/Cargo.toml @@ -67,7 +67,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"] }