From 747af96d2d1d176e61248155c7fccaeb730a968c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 19 Mar 2024 11:19:52 +0000 Subject: [PATCH] Bump mysql from 24.0.0 to 25.0.0 Bumps [mysql](https://github.com/blackbeam/rust-mysql-simple) from 24.0.0 to 25.0.0. - [Release notes](https://github.com/blackbeam/rust-mysql-simple/releases) - [Commits](https://github.com/blackbeam/rust-mysql-simple/compare/v24.0.0...v25.0.0) --- updated-dependencies: - dependency-name: mysql dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- Cargo.lock | 166 ++++++++++++++++++++++++++++++++++++++--------------- Cargo.toml | 2 +- 2 files changed, 122 insertions(+), 46 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 8ceed92..4e9e480 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -863,15 +863,6 @@ version = "0.12.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" -[[package]] -name = "hashbrown" -version = "0.13.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e" -dependencies = [ - "ahash", -] - [[package]] name = "hashbrown" version = "0.14.3" @@ -1173,15 +1164,6 @@ dependencies = [ "cfg-if 1.0.0", ] -[[package]] -name = "lru" -version = "0.10.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "03f1160296536f10c833a82dca22267d5486734230d47bf00bf435885814ba1e" -dependencies = [ - "hashbrown 0.13.2", -] - [[package]] name = "lru" version = "0.12.1" @@ -1210,9 +1192,9 @@ dependencies = [ [[package]] name = "memchr" -version = "2.4.0" +version = "2.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b16bd47d9e329435e309c58469fe0791c2d0d1ba96ec0954152a5ae2b04387dc" +checksum = "523dc4f511e55ab87b694dc30d0f820d60906ef06413f93d4d7a1385599cc149" [[package]] name = "memoffset" @@ -1285,9 +1267,9 @@ dependencies = [ [[package]] name = "mysql" -version = "24.0.0" +version = "25.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cfe2babc5f5b354eab9c0a0e40da3e69c4d77421c8b9b6ee03f97acc75bd7955" +checksum = "a4cc09a8118051e4617886c9c6e693c61444c2eeb5f9a792dc5d631501706565" dependencies = [ "bufstream", "bytes", @@ -1295,12 +1277,12 @@ dependencies = [ "flate2", "io-enum", "libc", - "lru 0.10.0", - "mysql_common 0.30.6", + "lru", + "mysql_common 0.32.1", "named_pipe", "native-tls", "once_cell", - "pem 2.0.1", + "pem 3.0.3", "percent-encoding", "serde", "serde_json", @@ -1318,7 +1300,25 @@ dependencies = [ "darling", "heck", "num-bigint", - "proc-macro-crate", + "proc-macro-crate 1.3.1", + "proc-macro-error", + "proc-macro2", + "quote", + "syn 2.0.41", + "termcolor", + "thiserror", +] + +[[package]] +name = "mysql-common-derive" +version = "0.31.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c60492b5eb751e55b42d716b6b26dceb66767996cd7a5560a842fbf613ca2e92" +dependencies = [ + "darling", + "heck", + "num-bigint", + "proc-macro-crate 3.1.0", "proc-macro-error", "proc-macro2", "quote", @@ -1341,7 +1341,7 @@ dependencies = [ "futures-util", "keyed_priority_queue", "lazy_static", - "lru 0.12.1", + "lru", "mio", "mysql_common 0.31.0", "native-tls", @@ -1381,7 +1381,7 @@ dependencies = [ "frunk", "lazy_static", "lexical", - "mysql-common-derive", + "mysql-common-derive 0.30.2", "num-bigint", "num-traits", "rand 0.8.5", @@ -1420,7 +1420,7 @@ dependencies = [ "flate2", "frunk", "lazy_static", - "mysql-common-derive", + "mysql-common-derive 0.30.2", "num-bigint", "num-traits", "rand 0.8.5", @@ -1436,7 +1436,46 @@ dependencies = [ "thiserror", "time 0.3.17", "uuid", - "zstd", + "zstd 0.12.4", +] + +[[package]] +name = "mysql_common" +version = "0.32.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8a60cb978c0a1d654edcc1460f8d6092dacf21346ed6017d81fb76a23ef5a8de" +dependencies = [ + "base64 0.21.0", + "bigdecimal 0.4.2", + "bindgen 0.59.2", + "bitflags 2.3.1", + "bitvec", + "btoi", + "byteorder", + "bytes", + "cc", + "cmake", + "crc32fast", + "flate2", + "frunk", + "lazy_static", + "mysql-common-derive 0.31.0", + "num-bigint", + "num-traits", + "rand 0.8.5", + "regex", + "rust_decimal", + "saturating", + "serde", + "serde_json", + "sha1", + "sha2 0.10.6", + "smallvec", + "subprocess", + "thiserror", + "time 0.3.17", + "uuid", + "zstd 0.13.0", ] [[package]] @@ -1645,16 +1684,6 @@ dependencies = [ "base64 0.13.0", ] -[[package]] -name = "pem" -version = "2.0.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6b13fe415cdf3c8e44518e18a7c95a13431d9bdf6d15367d82b23c377fdd441a" -dependencies = [ - "base64 0.21.0", - "serde", -] - [[package]] name = "pem" version = "3.0.3" @@ -1783,7 +1812,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919" dependencies = [ "once_cell", - "toml_edit", + "toml_edit 0.19.8", +] + +[[package]] +name = "proc-macro-crate" +version = "3.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6d37c51ca738a55da99dc0c4a34860fd675453b8b36209178c2249bb13651284" +dependencies = [ + "toml_edit 0.21.1", ] [[package]] @@ -2545,9 +2583,9 @@ dependencies = [ [[package]] name = "toml_datetime" -version = "0.6.1" +version = "0.6.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3ab8ed2edee10b50132aed5f331333428b011c99402b5a534154ed15746f9622" +checksum = "3550f4e9685620ac18a50ed434eb3aec30db8ba93b0287467bca5826ea25baf1" [[package]] name = "toml_edit" @@ -2557,7 +2595,18 @@ checksum = "239410c8609e8125456927e6707163a3b1fdb40561e4b803bc041f466ccfdc13" dependencies = [ "indexmap 1.9.2", "toml_datetime", - "winnow", + "winnow 0.4.6", +] + +[[package]] +name = "toml_edit" +version = "0.21.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6a8534fd7f78b5405e860340ad6575217ce99f38d4d5c8f2442cb5ecb50090e1" +dependencies = [ + "indexmap 2.1.0", + "toml_datetime", + "winnow 0.5.40", ] [[package]] @@ -2929,6 +2978,15 @@ dependencies = [ "memchr", ] +[[package]] +name = "winnow" +version = "0.5.40" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f593a95398737aeed53e489c785df13f3618e41dbcd6718c6addbf1395aa6876" +dependencies = [ + "memchr", +] + [[package]] name = "wyz" version = "0.5.1" @@ -2979,7 +3037,16 @@ version = "0.12.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1a27595e173641171fc74a1232b7b1c7a7cb6e18222c11e9dfb9888fa424c53c" dependencies = [ - "zstd-safe", + "zstd-safe 6.0.6", +] + +[[package]] +name = "zstd" +version = "0.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bffb3309596d527cfcba7dfc6ed6052f1d39dfbd7c867aa2e865e4a449c10110" +dependencies = [ + "zstd-safe 7.0.0", ] [[package]] @@ -2992,6 +3059,15 @@ dependencies = [ "zstd-sys", ] +[[package]] +name = "zstd-safe" +version = "7.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "43747c7422e2924c11144d5229878b98180ef8b06cca4ab5af37afc8a8d8ea3e" +dependencies = [ + "zstd-sys", +] + [[package]] name = "zstd-sys" version = "2.0.9+zstd.1.5.5" diff --git a/Cargo.toml b/Cargo.toml index 8de5f09..c1d4ec2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -31,7 +31,7 @@ rustls = { version = "0.22.1", optional = true } [dev-dependencies] postgres = "0.19.1" -mysql = "24" +mysql = "25" mysql_async = "0.33.0" slab = "0.4.2" tokio = { version = "1.15.0", features = ["full"] }