Skip to content

Commit

Permalink
Update mysql deps
Browse files Browse the repository at this point in the history
This commit updates the mysql crates to their latest version
  • Loading branch information
weiznich committed Jan 17, 2025
1 parent 780b348 commit c6ec681
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 = [
Expand Down
1 change: 1 addition & 0 deletions src/mysql/row.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
Expand Down

0 comments on commit c6ec681

Please sign in to comment.