Skip to content

Commit c6ec681

Browse files
committed
Update mysql deps
This commit updates the mysql crates to their latest version
1 parent 780b348 commit c6ec681

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ futures-util = { version = "0.3.17", default-features = false, features = [
2424
] }
2525
tokio-postgres = { version = "0.7.10", optional = true }
2626
tokio = { version = "1.26", optional = true }
27-
mysql_async = { version = "0.34", optional = true, default-features = false, features = [
27+
mysql_async = { version = "0.35", optional = true, default-features = false, features = [
2828
"minimal-rust",
2929
] }
30-
mysql_common = { version = "0.32", optional = true, default-features = false }
30+
mysql_common = { version = "0.34", optional = true, default-features = false }
3131

3232
bb8 = { version = "0.9", optional = true }
3333
deadpool = { version = "0.12", optional = true, default-features = false, features = [

src/mysql/row.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -229,6 +229,7 @@ fn convert_type(column_type: ColumnType, column_flags: ColumnFlags) -> MysqlType
229229
| ColumnType::MYSQL_TYPE_UNKNOWN
230230
| ColumnType::MYSQL_TYPE_ENUM
231231
| ColumnType::MYSQL_TYPE_SET
232+
| ColumnType::MYSQL_TYPE_VECTOR
232233
| ColumnType::MYSQL_TYPE_GEOMETRY => {
233234
unimplemented!("Hit an unsupported type: {:?}", column_type)
234235
}

0 commit comments

Comments
 (0)