mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
fix: add futures-core crate features
This commit is contained in:
parent
79d30eb84d
commit
561aa348e9
@ -11,7 +11,7 @@ log = "0.4.14"
|
||||
chrono = "0.4.19"
|
||||
bytes = { version = "1.0" }
|
||||
pin-project = "1.0"
|
||||
futures-core = { version = "0.3", default-features = false }
|
||||
futures-core = { version = "0.3" }
|
||||
tokio = { version = "1.0", features = ["time", "rt"] }
|
||||
rand = "0.8.3"
|
||||
|
||||
|
@ -1,4 +1,5 @@
|
||||
use futures_core::{future::BoxFuture, ready};
|
||||
use futures_core::future::BoxFuture;
|
||||
use futures_core::ready;
|
||||
use pin_project::pin_project;
|
||||
use std::{
|
||||
fmt::Debug,
|
||||
|
Loading…
Reference in New Issue
Block a user