Skip to content

Commit d764f7d

Browse files
committed
fix missing import
1 parent 220c211 commit d764f7d

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

Cargo.lock

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ mysql_common = {version = "0.29.0", optional = true}
2424
bb8 = {version = "0.8", optional = true}
2525
deadpool = {version = "0.9", optional = true}
2626
mobc = {version = "0.7", optional = true}
27-
scoped-futures = { rev = "362cd58", git = "https://github.com/sidechainme/scoped-futures", features = [] }
27+
scoped-futures = { rev = "362cd58", git = "https://github.com/sidechainme/scoped-futures", features = ["std"] }
2828

2929
[dev-dependencies]
3030
tokio = {version = "1.12.0", features = ["rt", "macros", "rt-multi-thread"]}

src/transaction_manager.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
use diesel::result::Error;
22
use diesel::QueryResult;
3-
use scoped_futures::ScopedFuture;
3+
use scoped_futures::ScopedBoxFuture;
44
use std::borrow::Cow;
55
use std::num::NonZeroU32;
66

0 commit comments

Comments
 (0)