Skip to content

Commit 073d548

Browse files
committed
Upgrade various async dependencies
This upgrades tokio, futures & mysql_async to recent versions. Doing so involved reworking the async code in the tests to use the modern rust async/await style, and updating code to work with the more recent method names in mysql_async.
1 parent 217813f commit 073d548

File tree

2 files changed

+181
-203
lines changed

2 files changed

+181
-203
lines changed

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ time = "0.2.25"
3232
[dev-dependencies]
3333
postgres = "0.19.1"
3434
mysql = "18"
35-
mysql_async = "0.20.0"
35+
mysql_async = "0.29.0"
3636
slab = "0.4.2"
37-
tokio = "0.1.19"
38-
futures = "0.1.26"
37+
tokio = { version = "1.15.0", features = ["full"] }
38+
futures = "0.3.0"

0 commit comments

Comments
 (0)