From c6ec681651adf9f627a7f82b030bb4cbb5c31d57 Mon Sep 17 00:00:00 2001 From: Georg Semmler Date: Fri, 17 Jan 2025 10:46:54 +0100 Subject: [PATCH] Update mysql deps This commit updates the mysql crates to their latest version --- Cargo.toml | 4 ++-- src/mysql/row.rs | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 656fed9..11c00f4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -24,10 +24,10 @@ futures-util = { version = "0.3.17", default-features = false, features = [ ] } tokio-postgres = { version = "0.7.10", optional = true } tokio = { version = "1.26", optional = true } -mysql_async = { version = "0.34", optional = true, default-features = false, features = [ +mysql_async = { version = "0.35", optional = true, default-features = false, features = [ "minimal-rust", ] } -mysql_common = { version = "0.32", optional = true, default-features = false } +mysql_common = { version = "0.34", optional = true, default-features = false } bb8 = { version = "0.9", optional = true } deadpool = { version = "0.12", optional = true, default-features = false, features = [ diff --git a/src/mysql/row.rs b/src/mysql/row.rs index 255129a..20c218c 100644 --- a/src/mysql/row.rs +++ b/src/mysql/row.rs @@ -229,6 +229,7 @@ fn convert_type(column_type: ColumnType, column_flags: ColumnFlags) -> MysqlType | ColumnType::MYSQL_TYPE_UNKNOWN | ColumnType::MYSQL_TYPE_ENUM | ColumnType::MYSQL_TYPE_SET + | ColumnType::MYSQL_TYPE_VECTOR | ColumnType::MYSQL_TYPE_GEOMETRY => { unimplemented!("Hit an unsupported type: {:?}", column_type) }