diff --git a/Cargo.lock b/Cargo.lock index 8376af491..d22b5dfc1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -975,7 +975,7 @@ dependencies = [ "itertools 0.14.0", "j4rs", "log", - "mysql_common", + "mysql_common 0.34.1", "native-tls", "num-traits", "openssl", @@ -3351,7 +3351,7 @@ dependencies = [ "io-enum", "libc", "lru", - "mysql_common", + "mysql_common 0.32.4", "named_pipe", "native-tls", "pem", @@ -3381,6 +3381,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.10", + "heck", + "num-bigint", + "proc-macro-crate", + "proc-macro-error2", + "proc-macro2", + "quote", + "syn 2.0.96", + "termcolor", + "thiserror 1.0.69", +] + [[package]] name = "mysql_common" version = "0.32.4" @@ -3396,13 +3414,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", @@ -3421,6 +3438,39 @@ dependencies = [ "zstd", ] +[[package]] +name = "mysql_common" +version = "0.34.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "34a9141e735d5bb02414a7ac03add09522466d4db65bdd827069f76ae0850e58" +dependencies = [ + "base64 0.22.1", + "bitflags 2.8.0", + "btoi", + "byteorder", + "bytes", + "cc", + "chrono", + "cmake", + "crc32fast", + "flate2", + "lazy_static", + "mysql-common-derive 0.32.0", + "num-bigint", + "num-traits", + "rand 0.8.5", + "regex", + "saturating", + "serde", + "serde_json", + "sha1", + "sha2", + "subprocess", + "thiserror 1.0.69", + "uuid", + "zstd", +] + [[package]] name = "named_pipe" version = "0.4.1" diff --git a/connectorx/Cargo.toml b/connectorx/Cargo.toml index 3f3c6b8db..79adb0ad2 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.34", 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}