Skip to content

Commit 7692379

Browse files
committed
Bump minimal supported mysql_async version to 0.34
1 parent b85a943 commit 7692379

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ for Rust libraries in [RFC #1105](https://github.com/rust-lang/rfcs/blob/master/
1111
* The minimal supported rust version is now 1.78.0
1212
* Add a `SyncConnectionWrapper` type that turns a sync connection into an async one. This enables SQLite support for diesel-async
1313
* Add support for `diesel::connection::Instrumentation` to support logging and other instrumentation for any of the provided connection impls.
14+
* Bump minimal supported mysql_async version to 0.34
1415

1516
## [0.4.1] - 2023-09-01
1617

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@ futures-util = { version = "0.3.17", default-features = false, features = [
2727
] }
2828
tokio-postgres = { version = "0.7.10", optional = true }
2929
tokio = { version = "1.26", optional = true }
30-
mysql_async = { version = ">=0.30.0,<0.34", optional = true, default-features = false, features = [
30+
mysql_async = { version = "0.34", optional = true, default-features = false, features = [
3131
"minimal",
3232
"derive",
3333
] }
34-
mysql_common = { version = ">=0.29.0,<0.32.0", optional = true, default-features = false, features = [
34+
mysql_common = { version = "0.32", optional = true, default-features = false, features = [
3535
"frunk",
3636
"derive",
3737
] }
@@ -52,7 +52,7 @@ diesel_migrations = "2.2.0"
5252
assert_matches = "1.0.1"
5353

5454
[features]
55-
default = []
55+
default = ["sync-connection-wrapper"]
5656
mysql = [
5757
"diesel/mysql_backend",
5858
"mysql_async",

0 commit comments

Comments
 (0)