Skip to content

Commit b5e9acd

Browse files
committed
Allow newer versions of mysql-async and mobc
1 parent de4dcd4 commit b5e9acd

File tree

2 files changed

+84
-19
lines changed

2 files changed

+84
-19
lines changed

Cargo.lock

Lines changed: 80 additions & 15 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "diesel-async"
3-
version = "0.2.0"
3+
version = "0.2.1"
44
authors = ["Georg Semmler <[email protected]>"]
55
edition = "2018"
66
autotests = false
@@ -17,13 +17,13 @@ diesel = { version = "2.0.0", default-features = false, features = ["i-implement
1717
async-trait = "0.1.51"
1818
futures = "0.3.17"
1919
tokio-postgres = { version = "0.7.2", optional = true}
20-
tokio = { version = "1", optional = true}
21-
mysql_async = { version = "0.30.0", optional = true}
20+
tokio = { version = "1.26", optional = true}
21+
mysql_async = { version = ">=0.30.0,<0.32", optional = true}
2222
mysql_common = {version = "0.29.0", optional = true}
2323

2424
bb8 = {version = "0.8", optional = true}
2525
deadpool = {version = "0.9", optional = true}
26-
mobc = {version = "0.7", optional = true}
26+
mobc = {version = ">=0.7,<0.9", optional = true}
2727
scoped-futures = {version = "0.1", features = ["std"]}
2828

2929
[dev-dependencies]

0 commit comments

Comments
 (0)