Skip to content

Commit 4bbe1c1

Browse files
committed
Allow newer versions of mysql-async and mobc
1 parent 8d08575 commit 4bbe1c1

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

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
@@ -18,13 +18,13 @@ async-trait = "0.1.51"
1818
futures-channel = { version = "0.3.17", default-features = false, features = ["std", "sink"], optional = true }
1919
futures-util = { version = "0.3.17", default-features = false, features = ["std", "sink"] }
2020
tokio-postgres = { version = "0.7.2", optional = true}
21-
tokio = { version = "1", optional = true}
22-
mysql_async = { version = "0.30.0", optional = true}
21+
tokio = { version = "1.26", optional = true}
22+
mysql_async = { version = ">=0.30.0,<0.32", optional = true}
2323
mysql_common = {version = "0.29.0", optional = true}
2424

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

3030
[dev-dependencies]

0 commit comments

Comments
 (0)