Skip to content

Commit

Permalink
Bump minimal supported mysql_async version to 0.34
Browse files Browse the repository at this point in the history
  • Loading branch information
weiznich committed Jul 12, 2024
1 parent b85a943 commit 7692379
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ for Rust libraries in [RFC #1105](https:/rust-lang/rfcs/blob/master/
* The minimal supported rust version is now 1.78.0
* Add a `SyncConnectionWrapper` type that turns a sync connection into an async one. This enables SQLite support for diesel-async
* Add support for `diesel::connection::Instrumentation` to support logging and other instrumentation for any of the provided connection impls.
* Bump minimal supported mysql_async version to 0.34

## [0.4.1] - 2023-09-01

Expand Down
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@ 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.30.0,<0.34", optional = true, default-features = false, features = [
mysql_async = { version = "0.34", optional = true, default-features = false, features = [
"minimal",
"derive",
] }
mysql_common = { version = ">=0.29.0,<0.32.0", optional = true, default-features = false, features = [
mysql_common = { version = "0.32", optional = true, default-features = false, features = [
"frunk",
"derive",
] }
Expand All @@ -52,7 +52,7 @@ diesel_migrations = "2.2.0"
assert_matches = "1.0.1"

[features]
default = []
default = ["sync-connection-wrapper"]
mysql = [
"diesel/mysql_backend",
"mysql_async",
Expand Down

0 comments on commit 7692379

Please sign in to comment.